home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / pref-validation.xul < prev    next >
Extensible Markup Language  |  2002-09-02  |  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.    -   David Drinan <ddrinan@netscape.com>
  22.   -->
  23.  
  24. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  25.  
  26. <!DOCTYPE page [
  27.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd">
  28.   <!ENTITY % prefValidationDTD SYSTEM "chrome://pippki/locale/pref-validation.dtd">
  29.   %brandDTD;
  30.   %prefValidationDTD;
  31. ]>
  32.  
  33. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.       onload="onLoad();"
  35.       headertitle="&validation.title;">
  36.  
  37.   <!-- List elements to manage for prefs -->
  38.   <script type="application/x-javascript">
  39.   <![CDATA[
  40.     var _elementIDs = ["securityOCSPEnabled", "serviceURL", "signingCA"];
  41.   ]]>
  42.   </script>
  43.             
  44.   <script type="application/x-javascript" src="chrome://pippki/content/pref-validation.js"/>
  45.  
  46.   <groupbox>
  47.     <caption label="&validation.crl.label;"/>
  48.     <description>&validation.crl.description;</description>
  49.     <hbox align="center">
  50.       <button label="&validation.managecrls.button;"
  51.               oncommand="openCrlManager();"
  52.               id="managecrlbutton"
  53.               prefstring="security.OCSP.disable_button.managecrl"/>
  54.     </hbox>
  55.   </groupbox>
  56.  
  57.   <groupbox align="start">
  58.     <caption label="&validation.ocsp.label;"/>
  59.     <description>&validation.ocsp.description;</description>
  60.     <!-- Prefs -->
  61.     <radiogroup id="securityOCSPEnabled"
  62.                 prefstring="security.OCSP.enabled">
  63.         <radio value="0" label="&disableOCSP.label;" oncommand="doEnabling();"/>
  64.         <radio value="1" label="&certOCSP.label;" oncommand="doEnabling();"/>
  65.         <radio value="2" label="&proxyOCSP.label;" oncommand="doEnabling();"/>
  66.  
  67.         <grid class="indent" flex="1">
  68.           <columns>
  69.           <column/>
  70.           <column flex="1"/>
  71.           </columns>
  72.           
  73.           <rows>
  74.             <row align="center">
  75.               <label value="&signingCA.label;" control="signingCA"/>
  76.               <menulist id="signingCA" preftype="string" prefstring="security.OCSP.signingCA"
  77.                         flex="1" oncommand="changeURL()">
  78.                 <menupopup/>
  79.               </menulist>
  80.             </row>
  81.             <row align="center">
  82.               <label value="&serviceURL.label;" control="serviceURL"/>
  83.               <textbox id="serviceURL" prefstring="security.OCSP.URL"/>
  84.             </row>
  85.          </rows>
  86.        </grid>
  87.     </radiogroup>
  88.   </groupbox>
  89. </page>
  90.