|
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 <dialog id="formsigning" title="&formSigning.title;" |
|
14 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
15 buttons="accept,cancel" |
|
16 ondialogaccept="return doOK();" |
|
17 ondialogcancel="return doCancel();" |
|
18 onload="onLoad();"> |
|
19 |
|
20 <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> |
|
21 |
|
22 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
|
23 <script type="application/javascript" src="chrome://pippki/content/formsigning.js"/> |
|
24 |
|
25 <description id="sign.intro" style="max-width: 50em;"/> |
|
26 <textbox readonly="true" id="sign.text" multiline="true" |
|
27 style="height: 10em;" wrap="off"/> |
|
28 <separator class="thin"/> |
|
29 <groupbox> |
|
30 <caption label="&formSigning.cert;"/> |
|
31 <broadcaster id="certSelected" oncommand="onCertSelected();"/> |
|
32 <menulist id="nicknames" observes="certSelected"> |
|
33 <!-- The items in this menulist must never be sorted, |
|
34 but remain in the order filled by the application |
|
35 --> |
|
36 <menupopup/> |
|
37 </menulist> |
|
38 <textbox readonly="true" id="certdetails" multiline="true" |
|
39 style="height: 10em;" wrap="off"/> |
|
40 <separator/> |
|
41 </groupbox> |
|
42 <separator class="thin"/> |
|
43 <description style="max-width: 30em;">&formSigning.confirmPassword;</description> |
|
44 <textbox id="pw" type="password"/> |
|
45 </dialog> |