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 / editcacert.xul < prev    next >
Extensible Markup Language  |  2002-02-27  |  3KB  |  71 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. <window id="editCaCert" 
  30.         title="&certmgr.editcacert.title;"
  31.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  32.         onload="setWindowName();"
  33. >
  34.  
  35.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  36.   <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  37.   <script type="application/x-javascript" src="chrome://pippki/content/editcerts.js"/>
  38.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  39.  
  40.  
  41.   <vbox flex="1">
  42.     <description id="certmsg"/>
  43.     <separator />
  44.     <description flex="100%">&certmgr.editcert.edittrust;</description>
  45.     <vbox flex="100%">
  46.       <checkbox label="&certmgr.editcert.trustssl;"
  47.                 id="trustSSL"/>
  48.       <checkbox label="&certmgr.editcert.trustemail;"
  49.                 id="trustEmail"/>
  50.       <checkbox label="&certmgr.editcert.trustobjsign;"
  51.                 id="trustObjSign"/>
  52.     </vbox>
  53.  
  54.     <keyset id="keys">
  55.       <key id="enter-key"  keycode="VK_ENTER"  oncommand="doSSLOK();"/>
  56.       <key id="return-key" keycode="VK_RETURN" oncommand="doSSLOK();"/>
  57.       <key id="esc-key"    keycode="VK_ESCAPE" oncommand="window.close();"/>
  58.     </keyset>
  59.  
  60.     <hbox>
  61.       <button id="ok-button" label="&certmgr.ok.label;"
  62.               oncommand="doOK();"/> 
  63.       <button id="cancel-button" label="&certmgr.cancel.label;"
  64.               oncommand="window.close();"/> 
  65.       <button id="help-button" label="&certmgr.help.label;"
  66.               oncommand="openHelp('edit_ca_certs');"/>
  67.     </hbox>
  68.   </vbox>
  69.  
  70. </window>
  71.