Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 7 | |
michael@0 | 8 | <!DOCTYPE dialog [ |
michael@0 | 9 | <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" > |
michael@0 | 10 | %pippkiDTD; |
michael@0 | 11 | ]> |
michael@0 | 12 | |
michael@0 | 13 | |
michael@0 | 14 | <dialog id="certAuthAsk" title="&clientAuthAsk.title;" |
michael@0 | 15 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 16 | buttons="accept,cancel" |
michael@0 | 17 | ondialogaccept="return doOK();" |
michael@0 | 18 | ondialogcancel="return doCancel();" |
michael@0 | 19 | onload="onLoad();"> |
michael@0 | 20 | |
michael@0 | 21 | <stringbundleset id="stringbundleset"> |
michael@0 | 22 | <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> |
michael@0 | 23 | <stringbundle id="caps_bundle" src="chrome://global/locale/security/caps.properties"/> |
michael@0 | 24 | </stringbundleset> |
michael@0 | 25 | |
michael@0 | 26 | <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
michael@0 | 27 | <script type="application/javascript" src="chrome://pippki/content/clientauthask.js"/> |
michael@0 | 28 | |
michael@0 | 29 | <groupbox> |
michael@0 | 30 | <description style="font-weight: bold;">&clientAuthAsk.message1;</description> |
michael@0 | 31 | <description id="hostname"/> |
michael@0 | 32 | <description id="organization"/> |
michael@0 | 33 | <description id="issuer"/> |
michael@0 | 34 | </groupbox> |
michael@0 | 35 | <groupbox> |
michael@0 | 36 | <description style="font-weight: bold;">&clientAuthAsk.message2;</description> |
michael@0 | 37 | <broadcaster id="certSelected" oncommand="onCertSelected();"/> |
michael@0 | 38 | <!-- The items in this menulist must never be sorted, |
michael@0 | 39 | but remain in the order filled by the application |
michael@0 | 40 | --> |
michael@0 | 41 | <menulist id="nicknames" observes="certSelected"> |
michael@0 | 42 | <menupopup/> |
michael@0 | 43 | </menulist> |
michael@0 | 44 | <description>&clientAuthAsk.message3;</description> |
michael@0 | 45 | <textbox readonly="true" id="details" multiline="true" |
michael@0 | 46 | style="height: 11em;"/> |
michael@0 | 47 | <checkbox id="rememberBox" checked="true"/> |
michael@0 | 48 | </groupbox> |
michael@0 | 49 | |
michael@0 | 50 | </dialog> |