home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / crlImportDialog.xul < prev    next >
Extensible Markup Language  |  2002-09-02  |  2KB  |  72 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="crlImportSuccess" 
  29.   title="&crl.import.status.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://global/content/strres.js" />
  39.   <script type="application/x-javascript" src="chrome://pippki/content/crlImportDialog.js" />
  40.   <script type="application/x-javascript" src="pippki.js" />
  41.  
  42.   <vbox style="margin: 5px;" flex="1">
  43.  
  44.     <text value="&crl.import.success.message;" />
  45.     <separator/>
  46.   
  47.     <text class="header" value="&crl.issuer.label;" />
  48.     <hbox>
  49.       <text value="&crl.issuer.org.label;" />
  50.       <text id="orgText" />
  51.     </hbox>
  52.     <hbox>
  53.       <text value="&crl.issuer.orgunit.label;" />
  54.       <text id="orgUnitText" />
  55.     </hbox>
  56.     <separator/>
  57.  
  58.     <hbox>
  59.       <text value="&crl.import.nextupdate.label;" />
  60.       <text id="nextUpdate" />
  61.     </hbox>
  62.     <separator/>
  63.  
  64.     <vbox>
  65.       <text id="status" />
  66.       <text id="question" />
  67.     </vbox>
  68.  
  69.   </vbox>
  70.  
  71. </dialog>
  72.