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-validation.xul < prev    next >
Extensible Markup Language  |  2003-02-24  |  3KB  |  91 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.               accesskey="&validation.managecrls.accesskey;"
  54.               prefstring="security.OCSP.disable_button.managecrl"/>
  55.     </hbox>
  56.   </groupbox>
  57.  
  58.   <groupbox align="start">
  59.     <caption label="&validation.ocsp.label;"/>
  60.     <description>&validation.ocsp.description;</description>
  61.     <!-- Prefs -->
  62.     <radiogroup id="securityOCSPEnabled"
  63.                 prefstring="security.OCSP.enabled">
  64.         <radio value="0" label="&disableOCSP.label;" oncommand="doEnabling();"/>
  65.         <radio value="1" label="&certOCSP.label;" oncommand="doEnabling();"/>
  66.         <radio value="2" label="&proxyOCSP.label;" oncommand="doEnabling();"/>
  67.  
  68.         <grid class="indent" flex="1">
  69.           <columns>
  70.           <column/>
  71.           <column flex="1"/>
  72.           </columns>
  73.           
  74.           <rows>
  75.             <row align="center">
  76.               <label value="&signingCA.label;" accesskey="&signingCA.accesskey;" control="signingCA"/>
  77.               <menulist id="signingCA" preftype="string" prefstring="security.OCSP.signingCA"
  78.                         flex="1" oncommand="changeURL()">
  79.                 <menupopup/>
  80.               </menulist>
  81.             </row>
  82.             <row align="center">
  83.               <label value="&serviceURL.label;" accesskey="&serviceURL.accesskey;" control="serviceURL"/>
  84.               <textbox id="serviceURL" prefstring="security.OCSP.URL"/>
  85.             </row>
  86.          </rows>
  87.        </grid>
  88.     </radiogroup>
  89.   </groupbox>
  90. </page>
  91.