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 / pref-certs.xul < prev    next >
Extensible Markup Language  |  2003-02-24  |  3KB  |  86 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.    -   Terry Hayes <thayes@netscape.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  26.  
  27. <!DOCTYPE page [
  28.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd">
  29.   <!ENTITY % prefSec SYSTEM "chrome://pippki/locale/pref-security.dtd">
  30.   <!ENTITY % prefSslDTD SYSTEM "chrome://pippki/locale/pref-ssl.dtd">
  31.   %brandDTD;
  32.   %prefSec;
  33.   %prefSslDTD;
  34. ]>
  35.  
  36. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  37.       onload="parent.initPanel('chrome://pippki/content/pref-certs.xul');"
  38.       headertitle="&certs.label;">
  39.  
  40.   <!-- List elements to manage for prefs -->
  41.   <script type="application/x-javascript" src="chrome://pippki/content/pref-security.js"/>
  42.   <script type="application/x-javascript">
  43.   <![CDATA[
  44.     var _elementIDs = [ "certSelection" ];
  45.   ]]>
  46.   </script>
  47.  
  48.   <groupbox align="start">
  49.     <caption label="&SSLClientAuthMethod;"/>
  50.     <description> &certselect.description; </description>
  51.     <!-- Prefs -->
  52.     <radiogroup id="certSelection" orient="horizontal" preftype="string" 
  53.             prefstring="security.default_personal_cert">
  54.     <radio label="&certselect.auto;" value="Select Automatically"/>
  55.     <radio label="&certselect.ask;" value="Ask Every Time"/>
  56.     </radiogroup>
  57.   </groupbox>
  58.  
  59.   <!-- Certificate manager -->
  60.   <groupbox>
  61.     <caption label="&managecerts.label;"/>
  62.     <description>&managecerts.text;</description>
  63.     <hbox align="center">
  64.       <button label="&managecerts.button;"
  65.               oncommand="openCertManager();" 
  66.               id="openCertManagerButton"
  67.               accesskey="&managecerts.accesskey;"
  68.               prefstring="security.disable_button.openCertManager"/>
  69.     </hbox>
  70.   </groupbox>
  71.  
  72.   <!-- Device manager -->
  73.   <groupbox>
  74.     <caption label="&managedevices.label;"/>
  75.     <description>&managedevices.text;</description>
  76.     <hbox align="center">
  77.       <button label="&managedevices.button;"
  78.               oncommand="openDeviceManager();"
  79.               id="openDeviceManagerButton"
  80.               accesskey="&managedevices.accesskey;"
  81.               prefstring="security.disable_button.openDeviceManager"/>
  82.     </hbox>
  83.   </groupbox>
  84.  
  85. </page>
  86.