home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / certViewer.xul < prev    next >
Extensible Markup Language  |  2002-02-27  |  3KB  |  81 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. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  29.  
  30. <?xul-overlay href="chrome://pippki/content/viewCertDetails.xul"?>
  31. <?xul-overlay href="chrome://pippki/content/certDump.xul"?>
  32.  
  33.  
  34. <window id="certDetails" 
  35.   title="&certmgr.certdetail.title;"
  36.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  37.   onload="setWindowName();">
  38.  
  39. <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  40. <script type="application/x-javascript" src="chrome://pippki/content/viewCertDetails.js"/>
  41. <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  42. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  43.  
  44. <keyset id="keys">
  45.   <key id="esc-key"    keycode="VK_ESCAPE" oncommand="window.close()"/>
  46. </keyset>
  47.  
  48.   <grid flex="1">
  49.     <column flex="1"/>
  50.     <rows>
  51.       <row flex="1">
  52.         <tabbox flex="1">
  53.           <tabs>
  54.             <tab id="general_tab" label="&certmgr.detail.general_tab.title;"/>
  55.             <tab id="prettyprint_tab" label="&certmgr.detail.prettyprint_tab.title;"/>
  56.           </tabs>
  57.           <tabpanels flex="1">
  58.             <vbox id="general_info" flex="1"/>
  59.             <vbox id="certPrettyPrint" flex="1"/>
  60.           </tabpanels>
  61.         </tabbox>
  62.       </row>
  63.       <row>
  64.         <separator class="thin"/>
  65.       </row>
  66.       <row>
  67.         <hbox align="right" flex="1">
  68.           <button id="HelpButton"
  69.                   label="&certmgr.help.label;" 
  70.                   accesskey="&certmgr.helpButtonAccessKey;"
  71.                   oncommand="openHelp('cert_details');"/>
  72.           <button id="closeButton"
  73.                   label="&certmgr.close.label;" 
  74.                   accesskey="&certmgr.closeWindowAccessKey;"
  75.                   oncommand="window.close();"/>
  76.         </hbox>
  77.       </row>
  78.     </rows>
  79.   </grid>
  80. </window>
  81.