home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-mac-0.9.sea.hqx / mozilla-mac-0.9 / Chrome / pippki.jar / content / pippki / serverCertExpired.xul < prev    next >
Extensible Markup Language  |  2001-05-05  |  2KB  |  59 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
  24.   id="serverCertExpired" title="&serverCertExpired.title;"
  25.   xmlns:html="http://www.w3.org/1999/xhtml"
  26.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  27.   debug="false"
  28.   height="250"
  29.   width="400"
  30.   onload="onLoad();"
  31. >
  32. <script src="chrome://global/content/strres.js" />
  33. <script src="pippki.js" />
  34. <script src="serverCertExpired.js" />
  35.  
  36. <box orient="vertical" style="margin: 5px;" flex="1">
  37.  
  38.   <html id="message1" />
  39.   <separator/>
  40.   <html id="message2" />
  41.   <separator/>
  42.   <text value="&serverCertExpired.continue;" />
  43.   <separator/>
  44.   <box>
  45.   <button id="examineCert-button" class="dialog" label="&examineCert.label;"
  46.      onclick="viewCert();"/> 
  47.   </box>
  48.   <separator/>
  49.   <box>
  50.   <button id="ok-button" class="dialog" label="&ok.label;"
  51.      style="width: 10ex" onclick="doOK();" disabled="false"/> 
  52.   <button id="cancel-button" class="dialog" label="&cancel.label;"
  53.      style="width: 10ex" onclick="doCancel();" /> 
  54.   <button id="help-button" class="dialog" label="&help.label;"
  55.     style="width: 10ex" onclick="alert('Will bring up help one day');" /> 
  56.   </box>
  57. </box>
  58. </window>
  59.