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 / WebSitesOverlay.xul < prev   
Extensible Markup Language  |  2001-05-05  |  3KB  |  64 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="WebSitesOverlay" 
  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.  
  35.   <box id="webCerts" orient="vertical">
  36.     <html>&certmgr.websites;</html>
  37.     <separator class="thin"/>
  38.     <outliner id="server-outliner" multiple="true"
  39.               onselect="websites_enableButtons()" flex="1">
  40.       <outlinercol id="certcol" label="&certmgr.certname;" flex="1"/>
  41.       <splitter/>
  42.       <outlinercol id="tokencol" label="&certmgr.tokenname;" flex="1"/>
  43.       <outlinercol id="certdbkeycol" collapsed="true" flex="1"/>
  44.       <outlinerbody flex="1"/>
  45.     </outliner>
  46.     <box>
  47.       <button id="websites_viewButton" class="normal" 
  48.               label="&certmgr.view.label;" orient="horizontal" 
  49.               disabled="true" onclick="viewCerts();"/>
  50.       <button id="websites_editButton" class="normal" 
  51.               label="&certmgr.edit.label;" orient="horizontal" 
  52.               disabled="true" onclick="editCerts();"/>
  53. <!-- future - import a DER cert?
  54.       <button id="websites_addButton" class="normal" 
  55.               label="&certmgr.add.label;" orient="horizontal" 
  56.               onclick="addCerts();"/>
  57. -->
  58.       <button id="websites_deleteButton" class="normal" 
  59.               label="&certmgr.delete.label;" orient="horizontal" 
  60.               disabled="true" onclick="deleteCerts();"/>
  61.     </box>
  62.   </box>
  63. </overlay>
  64.