home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / certDump.xul < prev    next >
Extensible Markup Language  |  2002-06-19  |  2KB  |  55 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.    -   Javier Delgadillo <javi@netscape.com>
  24.   -->
  25.  
  26. <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
  27.  
  28. <overlay id="certDumpOverlay" 
  29.          xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  30.          xmlns:cert="http://netscape.com/rdf-cert#" 
  31.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  32. <vbox class="box-padded" id="certPrettyPrint" flex="1">
  33.   <label class="header" value="&certmgr.hierarchy.label;"/>
  34.   <tree id="treesetDump" onselect="updateCertDump();"
  35.         hidecolumnpicker="true" style="height: 8em;">
  36.     <treecols>
  37.       <treecol id="dumpCol" flex="1" primary="true" hideheader="true"/>
  38.     </treecols>
  39.   </tree>
  40.   
  41.   <label class="header" value="&certmgr.details.label;"/>
  42.   <tree id="prettyDumpTree" style="height: 15em"
  43.             onselect="displaySelected();" hidecolumnpicker="true">
  44.     <treecols>
  45.       <treecol flex="1" id="certDataCol" primary="true" hideheader="true"/>
  46.     </treecols>
  47.     <treechildren/>
  48.   </tree>
  49.   
  50.   <label class="header" value="&certmgr.fields.label;"/>
  51.   <textbox id="certDumpVal"  multiline="true" rows="8"
  52.            readonly="true" style="font-family: -moz-fixed;"/>
  53. </vbox>
  54. </overlay>
  55.