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.
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 | <dialog id="certPicker" title="&certPicker.title;" |
michael@0 | 14 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 15 | style="width: 50em;" |
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 | <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
michael@0 | 22 | <script type="application/javascript" src="chrome://pippki/content/certpicker.js"/> |
michael@0 | 23 | |
michael@0 | 24 | <hbox align="center"> |
michael@0 | 25 | <broadcaster id="certSelected" oncommand="onCertSelected();"/> |
michael@0 | 26 | <label id="pickerInfo" value="&certPicker.info;"/> |
michael@0 | 27 | <!-- The items in this menulist must never be sorted, |
michael@0 | 28 | but remain in the order filled by the application |
michael@0 | 29 | --> |
michael@0 | 30 | <menulist id="nicknames" observes="certSelected"> |
michael@0 | 31 | <menupopup/> |
michael@0 | 32 | </menulist> |
michael@0 | 33 | </hbox> |
michael@0 | 34 | <separator class="thin"/> |
michael@0 | 35 | <label value="&certPicker.detailsLabel;"/> |
michael@0 | 36 | <textbox readonly="true" id="details" multiline="true" |
michael@0 | 37 | style="height: 12em;" flex="1"/> |
michael@0 | 38 | </dialog> |