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-ssl.xul < prev    next >
Extensible Markup Language  |  2003-10-16  |  3KB  |  90 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 % prefSslDTD SYSTEM "chrome://pippki/locale/pref-ssl.dtd">
  30.   %brandDTD;
  31.   %prefSslDTD;
  32. ]>
  33.  
  34. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  35.       onload="parent.initPanel('chrome://pippki/content/pref-ssl.xul');"
  36.       headertitle="&prefheader.title;">
  37.  
  38.   <!-- List elements to manage for prefs -->
  39.   <script type="application/x-javascript">
  40.   <![CDATA[
  41.     var _elementIDs = ["enableSSL2", "enableSSL3", "enableTLS", 
  42.         "warnEnteringSecure", "warnEnteringWeak", 
  43.         "warnLeavingSecure", "warnInsecurePost",
  44.         "warnViewMixed" ];
  45.   ]]>
  46.   </script>
  47.             
  48.   <groupbox orient="horizontal">
  49.     <caption label="&SSLProtocolVersions;"/>
  50.  
  51.     <!-- Prefs -->
  52.     <vbox flex="1" align="start">
  53.       <checkbox id="enableSSL2" label="&enable.ssl2;"
  54.                 prefstring="security.enable_ssl2"/>
  55.       <checkbox id="enableSSL3" label="&enable.ssl3;"
  56.                 prefstring="security.enable_ssl3"/>
  57.       <checkbox id="enableTLS" label="&enable.tls;"
  58.                 prefstring="security.enable_tls"/>
  59.     </vbox>
  60.  
  61.     <vbox halign="right">
  62.       <button label="&edit.sslciphers;"
  63.               accesskey="&edit.sslciphers.accesskey;"
  64.               oncommand="window.openDialog('chrome://pippki/content/pref-ciphers.xul', '',
  65.                                            'chrome,centerscreen,modal');"
  66.               id="editSSLCiphersButton"
  67.               prefstring="security.disable_button.editSSLCiphers"/>
  68.     </vbox>
  69.  
  70.   </groupbox>
  71.  
  72.   <groupbox align="start">
  73.     <caption label="&SSLWarnings;"/>
  74.     <description>&warn.description;</description>
  75.     <!-- Prefs -->
  76.     <checkbox id="warnEnteringSecure" label="&warn.enteringsecure;"
  77.               prefstring="security.warn_entering_secure"/>
  78.     <checkbox id="warnEnteringWeak" label="&warn.enteringweak;"
  79.               prefstring="security.warn_entering_weak"/>
  80.     <checkbox id="warnLeavingSecure" label="&warn.leavingsecure;"
  81.               prefstring="security.warn_leaving_secure"/>
  82.     <checkbox id="warnInsecurePost" label="&warn.insecurepost;"
  83.               prefstring="security.warn_submit_insecure"/>
  84.     <checkbox id="warnViewMixed" label="&warn.viewmixed;"
  85.               prefstring="security.warn_viewing_mixed"
  86.               checked="true"/>
  87.   </groupbox>
  88.  
  89. </page>
  90.