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 / pref-security.js < prev    next >
Text File  |  2003-10-16  |  3KB  |  65 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.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  */
  35.  
  36. function openCertManager()
  37. {
  38.     //check for an existing certManager window and focus it; it's not application modal
  39.     const kWindowMediatorContractID = "@mozilla.org/appshell/window-mediator;1";
  40.     const kWindowMediatorIID = Components.interfaces.nsIWindowMediator;
  41.     const kWindowMediator = Components.classes[kWindowMediatorContractID].getService(kWindowMediatorIID);
  42.     var lastCertManager = kWindowMediator.getMostRecentWindow("mozilla:certmanager");
  43.     if (lastCertManager)
  44.       lastCertManager.focus();
  45.     else {
  46.       window.open('chrome://pippki/content/certManager.xul',  "",
  47.                   'chrome,centerscreen,resizable,dialog');
  48.     }
  49. }
  50.  
  51. function openDeviceManager()
  52. {
  53.     //check for an existing deviceManger window and focus it; it's not application modal
  54.     const kWindowMediatorContractID = "@mozilla.org/appshell/window-mediator;1";
  55.     const kWindowMediatorIID = Components.interfaces.nsIWindowMediator;
  56.     const kWindowMediator = Components.classes[kWindowMediatorContractID].getService(kWindowMediatorIID);
  57.     var lastCertManager = kWindowMediator.getMostRecentWindow("mozilla:devicemanager");
  58.     if (lastCertManager)
  59.       lastCertManager.focus();
  60.     else {
  61.       window.open('chrome://pippki/content/device_manager.xul',  "devmgr",
  62.                   'chrome,centerscreen,resizable,dialog');
  63.     }
  64. }
  65.