home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / komunikace / nvu / nvu-1.0-cs-CZ.win32.installer.exe / chrome / pippki.jar / content / pippki / WebSitesOverlay.xul < prev   
Extensible Markup Language  |  2003-07-11  |  3KB  |  68 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 overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
  28.  
  29. <overlay id="WebSitesOverlay" 
  30.          xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  31.          xmlns:cert="http://netscape.com/rdf-cert#" 
  32.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  33.  
  34.   <vbox id="webCerts">
  35.     <description>&certmgr.websites;</description>
  36.     <separator class="thin"/>
  37.     <tree id="server-tree" flex="1" enableColumnDrag="true"
  38.               onselect="websites_enableButtons()">
  39.       <treecols>
  40.         <treecol id="certcol" label="&certmgr.certname;" primary="true" 
  41.                      persist="hidden width ordinal" flex="1"/>
  42.         <splitter class="tree-splitter"/>
  43.         <treecol id="purposecol" label="&certmgr.purpose;"
  44.                      persist="hidden width ordinal" flex="1"/>
  45. <!--        <treecol id="certdbkeycol" collapsed="true" flex="1"/> -->
  46.       </treecols>
  47.       <treechildren ondblclick="viewCerts();"/>
  48.     </tree>
  49.  
  50.     <separator class="thin"/>
  51.  
  52.     <hbox>
  53.       <button id="websites_viewButton"
  54.               label="&certmgr.view.label;"
  55.               disabled="true" oncommand="viewCerts();"/>
  56.       <button id="websites_editButton"
  57.               label="&certmgr.edit.label;"
  58.               disabled="true" oncommand="editCerts();"/>
  59.       <button id="websites_addButton"
  60.               label="&certmgr.restore.label;"
  61.               oncommand="addWebSiteCert();"/>
  62.       <button id="websites_deleteButton"
  63.               label="&certmgr.delete.label;"
  64.               disabled="true" oncommand="deleteCerts();"/>
  65.     </hbox>
  66.   </vbox>
  67. </overlay>
  68.