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 / domainMismatch.js < prev    next >
Text File  |  2002-09-17  |  2KB  |  72 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 nsIPKIParamBlock    = Components.interfaces.nsIPKIParamBlock;
  26. const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
  27. const nsIX509Cert         = Components.interfaces.nsIX509Cert;
  28.  
  29. var pkiParams;
  30. var dialogParams;
  31. var cert;
  32.  
  33. function onLoad()
  34. {
  35.   pkiParams = window.arguments[0].QueryInterface(nsIPKIParamBlock);  
  36.   var isupport = pkiParams.getISupportAtIndex(1);
  37.   cert     = isupport.QueryInterface(nsIX509Cert);
  38.   dialogParams = pkiParams.QueryInterface(nsIDialogParamBlock);
  39.   var connectURL = dialogParams.GetString(1); 
  40.  
  41.   var bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
  42.  
  43.   var message1 = bundle.formatStringFromName("mismatchDomainMsg1", 
  44.                                              [ connectURL, cert.commonName ],
  45.                                              2);
  46.   var message2 = bundle.formatStringFromName("mismatchDomainMsg2", 
  47.                                              [ connectURL ],
  48.                                               1);
  49.   setText("message1", message1);
  50.   setText("message2", message2);
  51.   //Set the focus so key press events work
  52.   document.getElementById('ok-button').focus();
  53.   window.sizeToContent();
  54. }
  55.  
  56. function viewCert()
  57. {
  58.   viewCertHelper(window, cert);
  59. }
  60.  
  61. function doOK()
  62. {
  63.   dialogParams.SetInt(1,1);
  64.   window.close();
  65. }
  66.  
  67. function doCancel()
  68. {
  69.   dialogParams.SetInt(1,0);
  70.   window.close();
  71. }
  72.