home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / deletecert.xul < prev    next >
Extensible Markup Language  |  2002-05-16  |  2KB  |  63 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.    -   Ian McGreer <mcgreer@netscape.com>
  22.   -->
  23.  
  24. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  25.  
  26. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  27.  
  28. <window id="deleteCertificate" 
  29.   title="&certmgr.deletecert.title;"
  30.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  31.   onload="setWindowName();"
  32.   style="width:8ex">
  33.  
  34.   <script type="application/x-javascript" src="chrome://pippki/content/deletecert.js"/>
  35.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  36.   <script type="application/x-javascript" src="chrome://global/content/strres.js" />
  37.   <script type="application/x-javascript" src="pippki.js" />
  38.  
  39.   <keyset id="keys">
  40.     <key id="enter-key"  keycode="VK_ENTER"  oncommand="doOK();"/>
  41.     <key id="return-key" keycode="VK_RETURN" oncommand="doOK();"/>
  42.     <key id="esc-key"    keycode="VK_ESCAPE" oncommand="window.close();"/>
  43.   </keyset>
  44.  
  45.   <vbox flex="1">
  46.      <description id="confirm"/>
  47.      <separator />
  48.      <vbox id="certlist" flex="100%"/>
  49.      <description id="impact"/>
  50.      <separator />
  51.  
  52.     <hbox align="center">
  53.       <button id="ok-button" label="&certmgr.ok.label;"
  54.               oncommand="doOK();"/> 
  55.       <button id="cancel-button" label="&certmgr.cancel.label;"
  56.               oncommand="doCancel();"/> 
  57.       <button id="help-button" label="&certmgr.help.label;"
  58.               oncommand="doHelp();"/> 
  59.     </hbox>
  60.   </vbox>
  61.  
  62. </window>
  63.