home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / pref-ssl.xul < prev    next >
Extensible Markup Language  |  2002-09-02  |  3KB  |  89 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.               oncommand="window.openDialog('chrome://pippki/content/pref-ciphers.xul', '',
  64.                              'modal=yes,resizable,chrome');"
  65.               id="editSSLCiphersButton"
  66.               prefstring="security.disable_button.editSSLCiphers"/>
  67.     </vbox>
  68.  
  69.   </groupbox>
  70.  
  71.   <groupbox align="start">
  72.     <caption label="&SSLWarnings;"/>
  73.     <description>&warn.description;</description>
  74.     <!-- Prefs -->
  75.     <checkbox id="warnEnteringSecure" label="&warn.enteringsecure;"
  76.               prefstring="security.warn_entering_secure"/>
  77.     <checkbox id="warnEnteringWeak" label="&warn.enteringweak;"
  78.               prefstring="security.warn_entering_weak"/>
  79.     <checkbox id="warnLeavingSecure" label="&warn.leavingsecure;"
  80.               prefstring="security.warn_leaving_secure"/>
  81.     <checkbox id="warnInsecurePost" label="&warn.insecurepost;"
  82.               prefstring="security.warn_submit_insecure"/>
  83.     <checkbox id="warnViewMixed" label="&warn.viewmixed;"
  84.               prefstring="security.warn_viewing_mixed"
  85.               checked="true"/>
  86.   </groupbox>
  87.  
  88. </page>
  89.