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 / certManager.xul < prev    next >
Extensible Markup Language  |  2001-05-05  |  3KB  |  85 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. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  27.  
  28. <?xul-overlay href="MineOverlay.xul"?>
  29. <!-- XXX
  30. <?xul-overlay href="othercertsOverlay.xul"?>
  31. -->
  32. <?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?>
  33. <?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?>
  34.  
  35. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  36.  
  37. <window id="certmanager" 
  38.     xmlns:html="http://www.w3.org/1999/xhtml"     
  39.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  40.     style="width: 30em;"
  41.         title="&certmgr.title;"
  42.     debug="0"
  43.         onload="LoadCertNames()">
  44.  
  45.   <script src="chrome://global/content/strres.js" />
  46.   <script src="certManager.js"/>
  47.  
  48. <box orient="horizontal">
  49.   <grid flex="1">
  50.     <column flex="1"/>
  51.     <rows>
  52.       <row flex="1">
  53.         <tabbox flex="0" orient="vertical">
  54.           <tabs orient="horizontal">
  55.             <tab id="mine_tab" label="&certmgr.tab.mine;" />
  56.             <tab id="others_tab" label="&certmgr.tab.others;" />
  57.             <tab id="websites_tab" label="&certmgr.tab.websites;" />
  58.             <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
  59.           </tabs>
  60.           <tabpanels flex="1">
  61.             <box id="myCerts" flex="1"/>
  62.             <box id="othersCerts" flex="1"/>
  63.             <box id="webCerts" flex="1"/>
  64.             <box id="CACerts" flex="1"/>
  65.           </tabpanels>
  66.         </tabbox>
  67.       </row>
  68.       <row>
  69.         <box orient="horizontal" flex="1">
  70.           <button id="HelpButton" class="normal" 
  71.                   label="&certmgr.help.label;" 
  72.                   orient="horizontal" accesskey="h" />
  73.           <button id="closeButton" class="normal" 
  74.                   label="&certmgr.close.label;" 
  75.                   orient="horizontal" accesskey="c"
  76.                   onclick="window.close();"
  77.                   onkeypress="window.close();"/>
  78.         </box>
  79.       </row>
  80.     </rows>
  81.   </grid>
  82. </box>
  83.  
  84. </window>
  85.