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 / MineOverlay.xul < prev    next >
Extensible Markup Language  |  2003-07-11  |  3KB  |  83 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="MineOverlay" 
  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="myCerts">
  35.     <description>&certmgr.mine;</description>
  36.     <separator class="thin"/>
  37.     <tree id="user-tree" flex="1" enableColumnDrag="true"
  38.               onselect="mine_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="tokencol" label="&certmgr.tokenname;"
  44.                      persist="hidden width ordinal" flex="1"/>
  45.         <splitter class="tree-splitter"/>
  46.         <treecol id="purposecol" label="&certmgr.purpose;"
  47.                      persist="hidden width ordinal" flex="1"/>
  48.         <splitter class="tree-splitter"/>
  49.         <treecol id="serialnumcol" label="&certmgr.serial;"
  50.                      persist="hidden width ordinal" flex="1"/>
  51.         <splitter class="tree-splitter"/>
  52.         <treecol id="issuedcol" label="&certmgr.issued;"
  53.                      hidden="true" persist="hidden width ordinal" flex="1"/>
  54.         <splitter class="tree-splitter"/>
  55.         <treecol id="expiredcol" label="&certmgr.expires;"
  56.                      persist="hidden width ordinal" flex="1"/>
  57. <!--        <treecol id="certdbkeycol" collapsed="true" flex="1"/> -->
  58.       </treecols>
  59.       <treechildren ondblclick="viewCerts();"/>
  60.     </tree>
  61.     
  62.     <separator class="thin"/>
  63.  
  64.     <hbox>
  65.        <button id="mine_viewButton" class="normal" 
  66.                label="&certmgr.view.label;"
  67.                disabled="true" oncommand="viewCerts();"/>
  68.        <button id="mine_backupButton" class="normal" 
  69.                label="&certmgr.backup.label;"
  70.                disabled="true" oncommand="backupCerts();"/>
  71.        <button id="mine_backupAllButton" class="normal" 
  72.                label="&certmgr.backupall.label;"
  73.                oncommand="backupAllCerts();"/>
  74.        <button id="mine_restoreButton" class="normal" 
  75.                label="&certmgr.restore.label;"
  76.                oncommand="restoreCerts();"/>
  77.        <button id="mine_deleteButton" class="normal" 
  78.                label="&certmgr.delete.label;"
  79.                disabled="true" oncommand="deleteCerts();"/>
  80.     </hbox>
  81.   </vbox>
  82. </overlay>
  83.