home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / komunikace / netscape / nsb-install-8-0.exe / components / inspector-cmdline.js < prev    next >
Text File  |  2005-09-26  |  5KB  |  130 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is DOM Inspector.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Christopher A. Aillon <christopher@aillon.com>.
  18.  * Portions created by the Initial Developer are Copyright (C) 2003
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Christopher A. Aillon <christopher@aillon.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38.  
  39. const INSPECTOR_CMDLINE_CONTRACTID = "@mozilla.org/commandlinehandler/general-startup;1?type=inspector";
  40. const INSPECTOR_CMDLINE_CLSID      = Components.ID('{38293526-6b13-4d4f-a075-71939435b408}');
  41. const CATMAN_CONTRACTID            = "@mozilla.org/categorymanager;1";
  42. const nsISupports                  = Components.interfaces.nsISupports;
  43. const nsICategoryManager           = Components.interfaces.nsICategoryManager;
  44. const nsICmdLineHandler            = Components.interfaces.nsICmdLineHandler;
  45. const nsIComponentRegistrar        = Components.interfaces.nsIComponentRegistrar;
  46.  
  47.  
  48. function InspectorCmdLineHandler() {}
  49. InspectorCmdLineHandler.prototype =
  50. {
  51.   commandLineArgument : "-inspector",
  52.   prefNameForStartup : "general.startup.inspector",
  53.   chromeUrlForTask : "chrome://inspector/content/inspector.xul",
  54.   helpText : "Start with the DOM Inspector.",
  55.   handlesArgs : true,
  56.   defaultArgs : "",
  57.   openWindowWithArgs : true
  58. };
  59.  
  60.  
  61. var InspectorCmdLineFactory =
  62. {
  63.   createInstance : function(outer, iid)
  64.   {
  65.     if (outer != null) {
  66.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  67.     }
  68.  
  69.     if (!iid.equals(nsICmdLineHandler) && !iid.equals(nsISupports)) {
  70.       throw Components.results.NS_ERROR_INVALID_ARG;
  71.     }
  72.  
  73.     return new InspectorCmdLineHandler();
  74.   }
  75. };
  76.  
  77.  
  78. var InspectorCmdLineModule =
  79. {
  80.   registerSelf : function(compMgr, fileSpec, location, type)
  81.   {
  82.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  83.  
  84.     compMgr.registerFactoryLocation(INSPECTOR_CMDLINE_CLSID,
  85.                                     "DOM Inspector CommandLine Service",
  86.                                     INSPECTOR_CMDLINE_CONTRACTID,
  87.                                     fileSpec,
  88.                                     location,
  89.                                     type);
  90.  
  91.     var catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  92.     catman.addCategoryEntry("command-line-argument-handlers",
  93.                             "inspector command line handler",
  94.                             INSPECTOR_CMDLINE_CONTRACTID, true, true);
  95.   },
  96.  
  97.   unregisterSelf : function(compMgr, fileSpec, location)
  98.   {
  99.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  100.  
  101.     compMgr.unregisterFactoryLocation(INSPECTOR_CMDLINE_CLSID, fileSpec);
  102.     catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  103.     catman.deleteCategoryEntry("command-line-argument-handlers",
  104.                                INSPECTOR_CMDLINE_CONTRACTID, true);
  105.   },
  106.  
  107.   getClassObject : function(compMgr, cid, iid)
  108.   {
  109.     if (cid.equals(INSPECTOR_CMDLINE_CLSID)) {
  110.       return InspectorCmdLineFactory;
  111.     }
  112.  
  113.     if (!iid.equals(Components.interfaces.nsIFactory)) {
  114.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  115.     }
  116.  
  117.     throw Components.results.NS_ERROR_NO_INTERFACE;
  118.   },
  119.  
  120.   canUnload : function(compMgr)
  121.   {
  122.     return true;
  123.   }
  124. };
  125.  
  126.  
  127. function NSGetModule(compMgr, fileSpec) {
  128.   return InspectorCmdLineModule;
  129. }
  130.