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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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>

mercurial