home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / serverCertExpired.js < prev    next >
Text File  |  2002-09-17  |  2KB  |  74 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  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 Corporation.  Portions created by Netscape are
  17.  * Copyright (C) 1998 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *  Javier Delgadillo <javi@netscape.com>
  22.  */
  23.  
  24.  
  25. const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
  26. const nsIPKIParamBlock    = Components.interfaces.nsIPKIParamBlock;
  27. const nsIX509Cert         = Components.interfaces.nsIX509Cert;
  28.  
  29. var dialogParams;
  30. var pkiParams;
  31. var cert=null;
  32.  
  33. function onLoad()
  34. {
  35.   pkiParams    = window.arguments[0].QueryInterface(nsIPKIParamBlock);
  36.   dialogParams = pkiParams.QueryInterface(nsIDialogParamBlock);
  37.  
  38.   var title = dialogParams.GetString(2);
  39.   window.title = title;
  40.   var bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
  41.   var message1 = dialogParams.GetString(1);
  42.   
  43.   var currDate = new Date(); 
  44.   var message2 = bundle.formatStringFromName("serverCertExpiredMsg2", 
  45.                                              [ currDate.toLocaleString() ],
  46.                                               1);
  47.   setText("message1", message1);
  48.   setText("message2", message2);
  49.   //Set the focus so key press events work.
  50.   document.getElementById('ok-button').focus();
  51.   window.sizeToContent();
  52. }
  53.  
  54. function doOK()
  55. {
  56.   dialogParams.SetInt(1,1);
  57.   window.close();
  58. }
  59.  
  60. function doCancel()
  61. {
  62.   dialogParams.SetInt(1,0);
  63.   window.close();
  64. }
  65.  
  66. function viewCert()
  67. {
  68.   if (cert == null) {
  69.     var isupport = pkiParams.getISupportAtIndex(1);
  70.     cert = isupport.QueryInterface(nsIX509Cert);
  71.   }
  72.   viewCertHelper(window, cert);
  73. }
  74.