security/manager/pki/resources/content/viewCertDetails.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/. -->
     5 <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
     7 <overlay id="certViewerOverlay" 
     8          xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
     9          xmlns:cert="http://netscape.com/rdf-cert#" 
    10          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    11 <vbox class="box-padded" id="general_info">
    12   <vbox id="verify_info_box">
    13     <label id="verify_pending" value="&certmgr.pending.label;"/>
    14     <label class="header" id="verified"/>
    15   </vbox>
    16   <separator class="groove"/>
    17   <vbox flex="1">
    18     <grid> 
    19       <columns>
    20         <column/>
    21         <column flex="1"/>
    22       </columns>
    23       <rows>
    24         <row>
    25           <label class="header" value="&certmgr.subjectinfo.label;"/>
    26           <spacer/>
    27           <spacer/>
    28         </row>
    29         <row>
    30           <label value="&certmgr.certdetail.cn;"/>
    31           <textbox id="commonname" class="plain" readonly="true"/>
    32         </row>
    33         <row>
    34           <label value="&certmgr.certdetail.o;"/>
    35           <textbox id="organization" class="plain" readonly="true"/>
    36         </row>
    37         <row>
    38           <label value="&certmgr.certdetail.ou;"/>
    39           <textbox id="orgunit" class="plain" readonly="true"/>
    40         </row>
    41         <row>
    42           <label value="&certmgr.certdetail.serialnumber;"/>
    43           <textbox id="serialnumber" class="plain" readonly="true"/>
    44         </row>
    45         <row>
    46           <separator class="thin"/>
    47           <spacer/>
    48         </row>
    49         <row>
    50           <label class="header" value="&certmgr.issuerinfo.label;"/>
    51           <spacer/>
    52         </row>
    53         <row>
    54           <label value="&certmgr.certdetail.cn;"/>
    55           <textbox id="issuercommonname" class="plain" readonly="true"/>
    56         </row>
    57         <row>
    58           <label value="&certmgr.certdetail.o;"/>
    59           <textbox id="issuerorganization" class="plain" readonly="true"/>
    60         </row>
    61         <row>
    62           <label value="&certmgr.certdetail.ou;"/>
    63           <textbox id="issuerorgunit" class="plain" readonly="true"/>
    64         </row>
    65         <row>
    66           <separator class="thin"/>
    67           <spacer/>
    68         </row>
    69         <row>
    70           <label class ="header" value="&certmgr.periodofvalidity.label;"/>
    71           <spacer/>
    72         </row>
    73         <row>
    74           <label value="&certmgr.begins;"/>
    75           <textbox id="validitystart" class="plain" readonly="true"/>
    76         </row>
    77         <row>
    78           <label value="&certmgr.expires;"/>
    79           <textbox id="validityend" class="plain" readonly="true"/>
    80         </row>
    81         <row>
    82           <separator class="thin"/>
    83           <spacer/>
    84         </row>
    85         <row>
    86           <label class="header" value="&certmgr.fingerprints.label;"/>
    87           <spacer/>
    88         </row>
    89         <row>
    90           <label value="&certmgr.certdetail.sha1fingerprint;"/>
    91           <textbox id="sha1fingerprint" class="plain" readonly="true" style="min-width:34em;"/>
    92         </row>
    93         <row>
    94           <label value="&certmgr.certdetail.md5fingerprint;"/>
    95           <textbox id="md5fingerprint" class="plain" readonly="true"/>
    96         </row>
    97       </rows>
    98     </grid>
    99   </vbox>
   100 </vbox>
   101 </overlay>

mercurial