security/manager/pki/resources/content/clientauthask.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

     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 ]>
    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();">
    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>
    26 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/>
    27 <script type="application/javascript" src="chrome://pippki/content/clientauthask.js"/>
    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>
    50 </dialog>

mercurial