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-crlupdate.xul < prev    next >
Extensible Markup Language  |  2002-09-02  |  3KB  |  84 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.    -   Rangan Sen <rangansen@netscape.com>
  22.   -->
  23.  
  24. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  25.  
  26. <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/pref-validation.dtd">
  27.  
  28. <dialog id="crlUpdatePref" 
  29.   title="&validation.crl.autoupdate.title;"
  30.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  31.   onload="onLoad();"
  32.   buttons="accept,cancel,help"
  33.   ondialogaccept="return onAccept();"
  34.   ondialogcancel="return onCancel();"
  35.   ondialoghelp="return doHelpButton();">
  36.  
  37.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js" />
  38.   <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  39.   <script type="application/x-javascript" src="chrome://global/content/strres.js" />
  40.   <script type="application/x-javascript" src="chrome://pippki/content/pref-crlupdate.js" />
  41.  
  42.   <vbox style="margin: 5px;" flex="1">
  43.     <checkbox label="&validation.crl.autoupdate.enable.label;" 
  44.             checked="false" id="enableCheckBox"/>
  45.     <separator/>
  46.  
  47.     <vbox>
  48.       <radiogroup id="autoUpdateType" flex="1" oncommand="updateSelectedTimingControls();" >
  49.         <hbox align="center" id="timeBasedBox">
  50.           <radio label="&validation.crl.autoupdate.time.label1;"
  51.                  id="timeBasedRadio" value="1" group="autoUpdateType"/>
  52.           <textbox width="20" value="1" id="nextUpdateDay" />
  53.           <text value="&validation.crl.autoupdate.time.label2;" />
  54.         </hbox>
  55.         
  56.         <hbox align="center" id="freqBasedBox">
  57.           <radio label="&validation.crl.autoupdate.freq.label1;"
  58.                  id="freqBasedRadio" value="2" group="autoUpdateType"/>
  59.           <textbox width="20" value="1" id="nextUpdateFreq" />
  60.           <text value="&validation.crl.autoupdate.freq.label2;" />
  61.         </hbox>
  62.       </radiogroup>
  63.     </vbox>
  64.     <separator/>
  65.  
  66.     <vbox>
  67.       <text value="&validation.crl.autoupdate.url.label;" />
  68.       <textbox readonly="true" id="urlName" />
  69.     </vbox>
  70.     <separator/>
  71.  
  72.     <hbox>  
  73.       <text value="&crl.autoupdate.fail.cnt.label;" />
  74.       <text id="FailureCnt" />
  75.     </hbox>
  76.     <hbox id="reasonbox">  
  77.       <text value="&crl.autoupdate.fail.reason.label;" />
  78.       <text id="FailureDetails" />
  79.     </hbox>
  80.     
  81.   </vbox>
  82.  
  83. </dialog>
  84.