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 / certViewer.xul < prev    next >
Extensible Markup Language  |  2001-05-05  |  3KB  |  75 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. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  27.  
  28. <?xul-overlay href="viewCertDetails.xul"?>
  29. <?xul-overlay href="certDump.xul"?>
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  32.  
  33. <window
  34.   id="certDetails" 
  35.   title="&certmgr.certdetail.title;"
  36.   xmlns:html="http://www.w3.org/1999/xhtml"
  37.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  38.   onload="setWindowName();"
  39.   debug="tru1"
  40. >
  41.  
  42. <script src="chrome://global/content/strres.js" />
  43. <script src="viewCertDetails.js" />
  44. <script src="pippki.js" />
  45.   <grid flex="1">
  46.     <column flex="1"/>
  47.     <rows autostretch="always" >
  48.       <row flex="1">
  49.         <tabbox flex="1" orient="vertical">
  50.           <tabs orient="horizontal">
  51.             <tab id="general_tab" label="&certmgr.detail.general_tab.title;" />
  52.             <tab id="prettyprint_tab" label="&certmgr.detail.prettyprint_tab.title;" />
  53.           </tabs>
  54.           <tabpanels flex="1">
  55.             <box id="general_info" flex="1"/>
  56.             <box id="certPrettyPrint" flex ="1" />
  57.           </tabpanels>
  58.         </tabbox>
  59.       </row>
  60.       <row>
  61.         <box orient="horizontal" flex="1">
  62.           <button id="HelpButton" class="normal" 
  63.                   label="&certmgr.help.label;" 
  64.                   orient="horizontal" accesskey="h" />
  65.           <button id="closeButton" class="normal" 
  66.                   label="&certmgr.close.label;" 
  67.                   orient="horizontal" accesskey="c"
  68.                   onclick="window.close();"
  69.                   onkeypress="window.close();"/>
  70.         </box>
  71.       </row>
  72.     </rows>
  73.   </grid>
  74. </window>
  75.