home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-mac-0.9.sea.hqx / mozilla-mac-0.9 / Chrome / pippki.jar / content / pippki / viewCertDetails.xul < prev    next >
Extensible Markup Language  |  2001-05-05  |  3KB  |  106 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.    - The contents of this file are subject to the Mozilla Public
  4.    - License Version 1.1 (the "License"); you may not use this file
  5.    - except in compliance with the License. You may obtain a copy of
  6.    - the License at http://www.mozilla.org/MPL/
  7.    - 
  8.    - Software distributed under the License is distributed on an "AS
  9.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    - implied. See the License for the specific language governing
  11.    - rights and limitations under the License.
  12.    - 
  13.    - The Original Code is mozilla.org code.
  14.    - 
  15.    - The Initial Developer of the Original Code is Netscape
  16.    - Communications Corp.  Portions created by Netscape are
  17.    - Copyright (C) 2001 Netscape Communications Corp.  All
  18.    - Rights Reserved.
  19.    - 
  20.    - Contributor(s):
  21.    -   Bob Lord <lord@netscape.com>
  22.    -   Ian McGreer <mcgreer@netscape.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  26.  
  27. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  28.  
  29. <overlay id="certViewerOverlay" 
  30.          xmlns:html="http://www.w3.org/1999/xhtml" 
  31.          xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  32.          xmlns:cert="http://netscape.com/rdf-cert#" 
  33.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  34. <box id="chain_box" orient="vertical">
  35.  <box orient="vertical" flex="1">
  36.   <box flex="0" height="100">
  37.     <tree id="treeset" debug="false" width="500" flex="1">
  38.       <treecolgroup flex="1">
  39.         <treecol flex="1"/>
  40.       </treecolgroup>
  41.       <treechildren id="chain" flex="1" />
  42.     </tree>
  43.   </box>
  44.  </box>
  45. </box>
  46. <box id="general_info" orient="vertical">
  47.   <box id="chain_box" flex="1" />
  48.   <separator />
  49.   <box orient="vertical">
  50.     <text id="verified"/>
  51.     <tree id="usagetree" flex="1">
  52.       <treecolgroup flex="1">
  53.         <treecol flex="1"/>
  54.       </treecolgroup>
  55.       <treechildren id="usage" flex="1" />
  56.     </tree>
  57.   </box>
  58.   <box orient="vertical" flex="1">
  59.     <grid style="margin: 5px;border: 1px solid black;"> 
  60.       <columns>
  61.         <column width="200"/>
  62.         <column width="200"/>
  63.       </columns>
  64.       <rows>
  65.         <row>
  66.           <text value="&certmgr.certdetail.cn;" /> 
  67.           <text id="commonname"/>
  68.         </row>
  69.         <row>
  70.           <text value="&certmgr.certdetail.o;"  /> 
  71.           <text id="organization"/>
  72.         </row>
  73.         <row>
  74.           <text value="&certmgr.certdetail.ou;" /> 
  75.           <text id="orgunit" />
  76.         </row>
  77.         <row>
  78.           <text value="&certmgr.certdetail.subjectname;" /> 
  79.           <text id="subjectname" />
  80.         </row>
  81.         <row>
  82.           <text value="&certmgr.certdetail.issuername;" /> 
  83.           <text id="issuername" />
  84.         </row>
  85.         <row>
  86.           <text value="&certmgr.certdetail.serialnumber;" /> 
  87.           <text id="serialnumber" />
  88.         </row>
  89.         <row>
  90.           <text value="&certmgr.certdetail.rsapubmodulus;" /> 
  91.           <text id="rsapubmodulus" />
  92.         </row>
  93.         <row>
  94.           <text value="&certmgr.certdetail.sha1fingerprint;" /> 
  95.           <text id="sha1fingerprint" />
  96.         </row>
  97.         <row>
  98.           <text value="&certmgr.certdetail.md5fingerprint;" /> 
  99.           <text id="md5fingerprint" />
  100.         </row>
  101.       </rows>
  102.     </grid>
  103.   </box>
  104. </box>
  105. </overlay>
  106.