Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. -->
6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <!DOCTYPE dialog [
9 <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" >
10 %pippkiDTD;
11 ]>
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();">
20 <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
22 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/>
23 <script type="application/javascript" src="chrome://pippki/content/formsigning.js"/>
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>