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 / serverCrlNextupdate.js < prev    next >
Text File  |  2001-08-28  |  2KB  |  62 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.  *  David Drinan <ddrinan@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 bundle;
  32.  
  33. function onLoad()
  34. {
  35.   pkiParams    = window.arguments[0].QueryInterface(nsIPKIParamBlock);
  36.   dialogParams = pkiParams.QueryInterface(nsIDialogParamBlock);
  37.   var isupport = pkiParams.getISupportAtIndex(1);
  38.   var cert = isupport.QueryInterface(nsIX509Cert);
  39.   var connectURL = dialogParams.GetString(1); 
  40.   var gBundleBrand = srGetStrBundle("chrome://global/locale/brand.properties");
  41.   var brandName = gBundleBrand.GetStringFromName("brandShortName");
  42.  
  43.   bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
  44.  
  45.   var message1 = bundle.formatStringFromName("crlNextUpdateMsg1", 
  46.                                              [ brandName, connectURL ],
  47.                                              2);
  48.   var message2 = bundle.formatStringFromName("crlNextUpdateMsg2", 
  49.                                              [ cert.issuerOrganization ],
  50.                                               1);
  51.   setText("message1", message1);
  52.   setText("message2", message2);
  53.  
  54.   // Set the focus
  55.   document.getElementById('ok-button').focus();
  56. }
  57.  
  58. function doOK()
  59. {
  60.   window.close();
  61. }
  62.