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 / clientauthask.js < prev    next >
Text File  |  2002-08-07  |  3KB  |  93 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.  
  27. var dialogParams;
  28. var itemCount = 0;
  29.  
  30. function onLoad()
  31. {
  32.     var cn;
  33.     var org;
  34.     var issuer;
  35.  
  36.     dialogParams = window.arguments[0].QueryInterface(nsIDialogParamBlock);
  37.     cn = dialogParams.GetString(0);
  38.     org = dialogParams.GetString(1);
  39.     issuer = dialogParams.GetString(2);
  40.  
  41.     var bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
  42.     var message1 = bundle.formatStringFromName("clientAuthMessage1", 
  43.                                              [org],
  44.                                              1);
  45.     var message2 = bundle.formatStringFromName("clientAuthMessage2",
  46.                                              [issuer],
  47.                                              1);
  48.     setText("hostname", cn);
  49.     setText("organization", message1);
  50.     setText("issuer", message2);
  51.  
  52.     var selectElement = document.getElementById("nicknames");
  53.     itemCount = dialogParams.GetInt(0);
  54.     for (var i=0; i < itemCount; i++) {
  55.         var menuItemNode = document.createElement("menuitem");
  56.         var nick = dialogParams.GetString(i+3);
  57.         menuItemNode.setAttribute("value", i);
  58.         menuItemNode.setAttribute("label", nick); // this is displayed
  59.         selectElement.firstChild.appendChild(menuItemNode);
  60.         if (i == 0) {
  61.             selectElement.selectedItem = menuItemNode;
  62.         }
  63.     }
  64.  
  65.     setDetails();
  66. }
  67.  
  68. function setDetails()
  69. {
  70.   var index = parseInt(document.getElementById("nicknames").value);
  71.   var details = dialogParams.GetString(index+itemCount+3);
  72.   document.getElementById("details").value = details;
  73. }
  74.  
  75. function onCertSelected()
  76. {
  77.   setDetails();
  78. }
  79.  
  80. function doOK()
  81. {
  82.   dialogParams.SetInt(0,1);
  83.   var index = parseInt(document.getElementById("nicknames").value);
  84.   dialogParams.SetInt(1, index);
  85.   window.close();
  86. }
  87.  
  88. function doCancel()
  89. {
  90.   dialogParams.SetInt(0,0);
  91.   window.close();
  92. }
  93.