security/manager/pki/resources/content/clientauthask.xul

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

mercurial