home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / serverCertExpired.xul < prev    next >
Extensible Markup Language  |  2002-03-13  |  2KB  |  62 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.    -
  14.    - Contributor(s):
  15.    -  Javier Delgadillo <javi@netscape.com>
  16.    -  Bob Lord <lord@netscape.com>
  17.   -->
  18.  
  19. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  20.  
  21. <!DOCTYPE window SYSTEM "chrome://pippki/locale/pippki.dtd">
  22.  
  23. <window id="serverCertExpired"
  24.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  25.   style="width: 30em;"
  26.   onload="onLoad();">
  27.  
  28. <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  29. <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  30. <script type="application/x-javascript" src="chrome://pippki/content/serverCertExpired.js"/>
  31. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  32.  
  33. <keyset id="keys">
  34.   <key id="enter-key"  keycode="VK_ENTER"  oncommand="doOK()"    />
  35.   <key id="return-key" keycode="VK_RETURN" oncommand="doOK()"    />
  36.   <key id="esc-key"    keycode="VK_ESCAPE" oncommand="doCancel()"/>
  37. </keyset>
  38.  
  39. <vbox style="margin: 5px;" flex="100%">
  40.  
  41.   <description id="message1" flex="100%"/>
  42.   <separator/>
  43.   <description id="message2" flex="100%"/>
  44.   <separator/>
  45.   <label value="&serverCertExpired.continue;" flex="100%"/>
  46.   <separator/>
  47.   <hbox>
  48.   <button id="examineCert-button" label="&examineCert.label;"
  49.           oncommand="viewCert();"/> 
  50.   </hbox>
  51.   <separator/>
  52.   <hbox>
  53.   <button id="ok-button" label="&ok.label;"
  54.           oncommand="doOK();"/> 
  55.   <button id="cancel-button" label="&cancel.label;"
  56.           oncommand="doCancel();"/> 
  57.   <button id="help-button" label="&help.label;"
  58.           oncommand="openHelp('exp_web_cert');"/> 
  59.   </hbox>
  60. </vbox>
  61. </window>
  62.