home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / escrowWarn.js < prev    next >
Text File  |  2002-09-17  |  2KB  |  67 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) 2001 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 isupports = pkiParams.getISupportAtIndex(1);
  39.   cert = isupports.QueryInterface(nsIX509Cert); 
  40.   var bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
  41.   var dispName = cert.commonName;
  42.   if (dispName == null)
  43.     dispName = cert.windowTitle;
  44.  
  45.   var msg = bundle.formatStringFromName("escrowFinalMessage",
  46.                                         [dispName], 1);
  47.   setText("message1",msg);
  48.   window.sizeToContent();
  49. }
  50.  
  51. function doOK()
  52. {
  53.   dialogParams.SetInt(1,1);
  54.   window.close();
  55. }
  56.  
  57. function doCancel()
  58. {
  59.   dialogParams.SetInt(1,0);
  60.   window.close();
  61. }
  62.  
  63. function viewCert()
  64. {
  65.   viewCertHelper(window, cert);
  66. }
  67.