2007-03-11 02:21:48 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Mozilla Firefox browser.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
|
|
|
#
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2004
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
const nsISupports = Components.interfaces.nsISupports;
|
|
|
|
|
|
|
|
const nsIBrowserDOMWindow = Components.interfaces.nsIBrowserDOMWindow;
|
|
|
|
const nsIBrowserHandler = Components.interfaces.nsIBrowserHandler;
|
|
|
|
const nsIBrowserHistory = Components.interfaces.nsIBrowserHistory;
|
|
|
|
const nsIChannel = Components.interfaces.nsIChannel;
|
|
|
|
const nsICommandLine = Components.interfaces.nsICommandLine;
|
|
|
|
const nsICommandLineHandler = Components.interfaces.nsICommandLineHandler;
|
|
|
|
const nsIContentHandler = Components.interfaces.nsIContentHandler;
|
|
|
|
const nsIDocShellTreeItem = Components.interfaces.nsIDocShellTreeItem;
|
|
|
|
const nsIDOMChromeWindow = Components.interfaces.nsIDOMChromeWindow;
|
|
|
|
const nsIDOMWindow = Components.interfaces.nsIDOMWindow;
|
|
|
|
const nsIFactory = Components.interfaces.nsIFactory;
|
2005-08-08 13:03:17 +00:00
|
|
|
const nsIFileURL = Components.interfaces.nsIFileURL;
|
2005-01-17 18:50:18 +00:00
|
|
|
const nsIHttpProtocolHandler = Components.interfaces.nsIHttpProtocolHandler;
|
|
|
|
const nsIInterfaceRequestor = Components.interfaces.nsIInterfaceRequestor;
|
|
|
|
const nsIPrefBranch = Components.interfaces.nsIPrefBranch;
|
|
|
|
const nsIPrefLocalizedString = Components.interfaces.nsIPrefLocalizedString;
|
|
|
|
const nsISupportsString = Components.interfaces.nsISupportsString;
|
2005-08-08 13:03:17 +00:00
|
|
|
const nsIURIFixup = Components.interfaces.nsIURIFixup;
|
2005-01-17 18:50:18 +00:00
|
|
|
const nsIWebNavigation = Components.interfaces.nsIWebNavigation;
|
|
|
|
const nsIWindowMediator = Components.interfaces.nsIWindowMediator;
|
|
|
|
const nsIWindowWatcher = Components.interfaces.nsIWindowWatcher;
|
2005-02-19 01:36:59 +00:00
|
|
|
const nsICategoryManager = Components.interfaces.nsICategoryManager;
|
2005-02-27 18:33:27 +00:00
|
|
|
const nsIWebNavigationInfo = Components.interfaces.nsIWebNavigationInfo;
|
2006-06-28 04:06:10 +00:00
|
|
|
const nsIBrowserSearchService = Components.interfaces.nsIBrowserSearchService;
|
2007-07-11 05:59:56 +00:00
|
|
|
const nsICommandLineValidator = Components.interfaces.nsICommandLineValidator;
|
2005-01-17 18:50:18 +00:00
|
|
|
|
2005-11-01 03:17:03 +00:00
|
|
|
const NS_BINDING_ABORTED = 0x804b0002;
|
2005-02-19 01:36:59 +00:00
|
|
|
const NS_ERROR_WONT_HANDLE_CONTENT = 0x805d0001;
|
2005-04-04 19:08:55 +00:00
|
|
|
const NS_ERROR_ABORT = Components.results.NS_ERROR_ABORT;
|
2005-01-17 18:50:18 +00:00
|
|
|
|
2005-08-26 19:56:55 +00:00
|
|
|
function shouldLoadURI(aURI) {
|
|
|
|
if (aURI && !aURI.schemeIs("chrome"))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
dump("*** Preventing external load of chrome: URI into browser window\n");
|
|
|
|
dump(" Use -chrome <uri> instead\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function resolveURIInternal(aCmdLine, aArgument) {
|
2005-08-08 13:03:17 +00:00
|
|
|
var uri = aCmdLine.resolveURI(aArgument);
|
|
|
|
|
|
|
|
if (!(uri instanceof nsIFileURL)) {
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (uri.file.exists())
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Components.utils.reportError(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have interpreted the argument as a relative file URI, but the file
|
|
|
|
// doesn't exist. Try URI fixup heuristics: see bug 290782.
|
|
|
|
|
|
|
|
try {
|
|
|
|
var urifixup = Components.classes["@mozilla.org/docshell/urifixup;1"]
|
|
|
|
.getService(nsIURIFixup);
|
|
|
|
|
|
|
|
uri = urifixup.createFixupURI(aArgument, 0);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Components.utils.reportError(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
const OVERRIDE_NONE = 0;
|
|
|
|
const OVERRIDE_NEW_PROFILE = 1;
|
|
|
|
const OVERRIDE_NEW_MSTONE = 2;
|
|
|
|
/**
|
|
|
|
* Determines whether a home page override is needed.
|
|
|
|
* Returns:
|
|
|
|
* OVERRIDE_NEW_PROFILE if this is the first run with a new profile.
|
|
|
|
* OVERRIDE_NEW_MSTONE if this is the first run with a build with a different
|
|
|
|
* Gecko milestone (i.e. right after an upgrade).
|
|
|
|
* OVERRIDE_NONE otherwise.
|
|
|
|
*/
|
2005-01-17 18:50:18 +00:00
|
|
|
function needHomepageOverride(prefb) {
|
2006-01-21 20:12:47 +00:00
|
|
|
var savedmstone = null;
|
2005-01-17 18:50:18 +00:00
|
|
|
try {
|
|
|
|
savedmstone = prefb.getCharPref("browser.startup.homepage_override.mstone");
|
2006-01-21 20:12:47 +00:00
|
|
|
} catch (e) {}
|
2005-01-17 18:50:18 +00:00
|
|
|
|
2006-09-20 23:10:07 +00:00
|
|
|
if (savedmstone == "ignore")
|
2007-03-26 14:22:14 +00:00
|
|
|
return OVERRIDE_NONE;
|
2006-09-20 23:10:07 +00:00
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
var mstone = Components.classes["@mozilla.org/network/protocol;1?name=http"]
|
|
|
|
.getService(nsIHttpProtocolHandler).misc;
|
|
|
|
|
2006-07-05 14:04:36 +00:00
|
|
|
if (mstone != savedmstone) {
|
2006-01-21 20:12:47 +00:00
|
|
|
prefb.setCharPref("browser.startup.homepage_override.mstone", mstone);
|
2007-03-26 14:22:14 +00:00
|
|
|
return (savedmstone ? OVERRIDE_NEW_MSTONE : OVERRIDE_NEW_PROFILE);
|
2006-07-05 14:04:36 +00:00
|
|
|
}
|
2005-01-17 18:50:18 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
return OVERRIDE_NONE;
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
2007-05-02 20:13:33 +00:00
|
|
|
// Copies a pref override file into the user's profile pref-override folder,
|
|
|
|
// and then tells the pref service to reload it's default prefs.
|
|
|
|
function copyPrefOverride() {
|
|
|
|
try {
|
|
|
|
var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
|
|
|
|
.getService(Components.interfaces.nsIProperties);
|
|
|
|
const NS_APP_EXISTING_PREF_OVERRIDE = "ExistingPrefOverride";
|
|
|
|
var prefOverride = fileLocator.get(NS_APP_EXISTING_PREF_OVERRIDE,
|
|
|
|
Components.interfaces.nsIFile);
|
|
|
|
if (!prefOverride.exists())
|
|
|
|
return; // nothing to do
|
|
|
|
|
|
|
|
const NS_APP_PREFS_OVERRIDE_DIR = "PrefDOverride";
|
|
|
|
var prefOverridesDir = fileLocator.get(NS_APP_PREFS_OVERRIDE_DIR,
|
|
|
|
Components.interfaces.nsIFile);
|
|
|
|
|
|
|
|
// Check for any existing pref overrides, and remove them if present
|
|
|
|
var existingPrefOverridesFile = prefOverridesDir.clone();
|
|
|
|
existingPrefOverridesFile.append(prefOverride.leafName);
|
|
|
|
if (existingPrefOverridesFile.exists())
|
|
|
|
existingPrefOverridesFile.remove(false);
|
|
|
|
|
|
|
|
prefOverride.copyTo(prefOverridesDir, null);
|
|
|
|
|
|
|
|
// Now that we've installed the new-profile pref override file,
|
|
|
|
// re-read the default prefs.
|
|
|
|
var prefSvcObs = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIObserver);
|
|
|
|
prefSvcObs.observe(null, "reload-default-prefs", null);
|
|
|
|
} catch (ex) {
|
|
|
|
Components.utils.reportError(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-05 02:17:23 +00:00
|
|
|
function openWindow(parent, url, target, features, args) {
|
2005-01-17 18:50:18 +00:00
|
|
|
var wwatch = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
|
|
|
.getService(nsIWindowWatcher);
|
|
|
|
|
|
|
|
var argstring;
|
|
|
|
if (args) {
|
|
|
|
argstring = Components.classes["@mozilla.org/supports-string;1"]
|
|
|
|
.createInstance(nsISupportsString);
|
|
|
|
argstring.data = args;
|
|
|
|
}
|
2005-04-04 19:08:55 +00:00
|
|
|
return wwatch.openWindow(parent, url, target, features, argstring);
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
2005-05-05 02:17:23 +00:00
|
|
|
function openPreferences() {
|
|
|
|
var features = "chrome,titlebar,toolbar,centerscreen,dialog=no";
|
|
|
|
var url = "chrome://browser/content/preferences/preferences.xul";
|
|
|
|
|
|
|
|
var win = getMostRecentWindow("Browser:Preferences");
|
|
|
|
if (win) {
|
|
|
|
win.focus();
|
|
|
|
} else {
|
|
|
|
openWindow(null, url, "_blank", features);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
function getMostRecentWindow(aType) {
|
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(nsIWindowMediator);
|
|
|
|
return wm.getMostRecentWindow(aType);
|
|
|
|
}
|
|
|
|
|
2005-08-12 02:43:36 +00:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
#ifndef XP_MACOSX
|
|
|
|
#define BROKEN_WM_Z_ORDER
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-02-12 10:09:05 +00:00
|
|
|
#ifdef XP_OS2
|
|
|
|
#define BROKEN_WM_Z_ORDER
|
|
|
|
#endif
|
2005-08-12 02:43:36 +00:00
|
|
|
|
2005-07-25 21:43:22 +00:00
|
|
|
// this returns the most recent non-popup browser window
|
|
|
|
function getMostRecentBrowserWindow() {
|
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
2005-08-12 02:43:36 +00:00
|
|
|
|
|
|
|
#ifdef BROKEN_WM_Z_ORDER
|
|
|
|
var win = wm.getMostRecentWindow("navigator:browser", true);
|
|
|
|
|
|
|
|
// if we're lucky, this isn't a popup, and we can just return this
|
2007-08-23 18:49:02 +00:00
|
|
|
if (win && win.document.documentElement.getAttribute("chromehidden")) {
|
2005-08-12 02:43:36 +00:00
|
|
|
var windowList = wm.getEnumerator("navigator:browser", true);
|
|
|
|
// this is oldest to newest, so this gets a bit ugly
|
|
|
|
while (windowList.hasMoreElements()) {
|
|
|
|
var nextWin = windowList.getNext();
|
2007-08-23 18:49:02 +00:00
|
|
|
if (!nextWin.document.documentElement.getAttribute("chromehidden"))
|
2005-08-12 02:43:36 +00:00
|
|
|
win = nextWin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2005-07-25 21:43:22 +00:00
|
|
|
var windowList = wm.getZOrderDOMWindowEnumerator("navigator:browser", true);
|
|
|
|
if (!windowList.hasMoreElements())
|
|
|
|
return null;
|
|
|
|
|
|
|
|
var win = windowList.getNext();
|
2007-08-23 18:49:02 +00:00
|
|
|
while (win.document.documentElement.getAttribute("chromehidden")) {
|
2005-07-25 21:43:22 +00:00
|
|
|
if (!windowList.hasMoreElements())
|
|
|
|
return null;
|
|
|
|
|
|
|
|
win = windowList.getNext();
|
|
|
|
}
|
2005-08-12 02:43:36 +00:00
|
|
|
#endif
|
2005-07-25 21:43:22 +00:00
|
|
|
|
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
2006-06-28 04:06:10 +00:00
|
|
|
function doSearch(searchTerm, cmdLine) {
|
|
|
|
var ss = Components.classes["@mozilla.org/browser/search-service;1"]
|
|
|
|
.getService(nsIBrowserSearchService);
|
|
|
|
|
2006-09-25 06:23:53 +00:00
|
|
|
var submission = ss.defaultEngine.getSubmission(searchTerm, null);
|
2006-06-28 04:06:10 +00:00
|
|
|
|
|
|
|
// fill our nsISupportsArray with uri-as-wstring, null, null, postData
|
|
|
|
var sa = Components.classes["@mozilla.org/supports-array;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISupportsArray);
|
|
|
|
|
|
|
|
var wuri = Components.classes["@mozilla.org/supports-string;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISupportsString);
|
|
|
|
wuri.data = submission.uri.spec;
|
|
|
|
|
|
|
|
sa.AppendElement(wuri);
|
|
|
|
sa.AppendElement(null);
|
|
|
|
sa.AppendElement(null);
|
|
|
|
sa.AppendElement(submission.postData);
|
|
|
|
|
|
|
|
// XXXbsmedberg: use handURIToExistingBrowser to obey tabbed-browsing
|
|
|
|
// preferences, but need nsIBrowserDOMWindow extensions
|
|
|
|
|
|
|
|
var wwatch = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
|
|
|
.getService(nsIWindowWatcher);
|
|
|
|
|
|
|
|
return wwatch.openWindow(null, nsBrowserContentHandler.chromeURL,
|
|
|
|
"_blank",
|
|
|
|
"chrome,dialog=no,all" +
|
|
|
|
nsBrowserContentHandler.getFeatures(cmdLine),
|
|
|
|
sa);
|
|
|
|
}
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
var nsBrowserContentHandler = {
|
|
|
|
/* helper functions */
|
|
|
|
|
|
|
|
mChromeURL : null,
|
|
|
|
|
|
|
|
get chromeURL() {
|
|
|
|
if (this.mChromeURL) {
|
|
|
|
return this.mChromeURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
var prefb = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(nsIPrefBranch);
|
|
|
|
this.mChromeURL = prefb.getCharPref("browser.chromeURL");
|
2005-05-05 02:17:23 +00:00
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
return this.mChromeURL;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* nsISupports */
|
|
|
|
QueryInterface : function bch_QI(iid) {
|
|
|
|
if (!iid.equals(nsISupports) &&
|
|
|
|
!iid.equals(nsICommandLineHandler) &&
|
|
|
|
!iid.equals(nsIBrowserHandler) &&
|
|
|
|
!iid.equals(nsIContentHandler) &&
|
2007-07-11 05:59:56 +00:00
|
|
|
!iid.equals(nsICommandLineValidator) &&
|
2005-01-17 18:50:18 +00:00
|
|
|
!iid.equals(nsIFactory))
|
2006-12-06 01:12:06 +00:00
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* nsICommandLineHandler */
|
|
|
|
handle : function bch_handle(cmdLine) {
|
|
|
|
if (cmdLine.handleFlag("browser", false)) {
|
|
|
|
openWindow(null, this.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + this.getFeatures(cmdLine),
|
|
|
|
this.defaultArgs);
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
|
2005-04-04 19:08:55 +00:00
|
|
|
try {
|
|
|
|
var remoteCommand = cmdLine.handleFlagWithParam("remote", true);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
throw NS_ERROR_ABORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remoteCommand != null) {
|
|
|
|
try {
|
|
|
|
var a = /^\s*(\w+)\(([^\)]*)\)\s*$/.exec(remoteCommand);
|
2007-01-09 19:41:10 +00:00
|
|
|
var remoteVerb;
|
|
|
|
if (a) {
|
|
|
|
remoteVerb = a[1].toLowerCase();
|
|
|
|
var remoteParams = [];
|
|
|
|
var sepIndex = a[2].lastIndexOf(",");
|
|
|
|
if (sepIndex == -1)
|
|
|
|
remoteParams[0] = a[2];
|
|
|
|
else {
|
|
|
|
remoteParams[0] = a[2].substring(0, sepIndex);
|
|
|
|
remoteParams[1] = a[2].substring(sepIndex + 1);
|
|
|
|
}
|
2005-12-12 01:39:32 +00:00
|
|
|
}
|
2005-04-04 19:08:55 +00:00
|
|
|
|
|
|
|
switch (remoteVerb) {
|
|
|
|
case "openurl":
|
|
|
|
case "openfile":
|
|
|
|
// openURL(<url>)
|
|
|
|
// openURL(<url>,new-window)
|
|
|
|
// openURL(<url>,new-tab)
|
|
|
|
|
2007-01-09 19:41:10 +00:00
|
|
|
// First param is the URL, second param (if present) is the "target"
|
|
|
|
// (tab, window)
|
|
|
|
var url = remoteParams[0];
|
|
|
|
var target = nsIBrowserDOMWindow.OPEN_DEFAULTWINDOW;
|
|
|
|
if (remoteParams[1]) {
|
|
|
|
var targetParam = remoteParams[1].toLowerCase()
|
|
|
|
.replace(/^\s*|\s*$/g, "");
|
|
|
|
if (targetParam == "new-tab")
|
|
|
|
target = nsIBrowserDOMWindow.OPEN_NEWTAB;
|
|
|
|
else if (targetParam == "new-window")
|
|
|
|
target = nsIBrowserDOMWindow.OPEN_NEWWINDOW;
|
|
|
|
else {
|
|
|
|
// The "target" param isn't one of our supported values, so
|
|
|
|
// assume it's part of a URL that contains commas.
|
|
|
|
url += "," + remoteParams[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var uri = resolveURIInternal(cmdLine, url);
|
|
|
|
handURIToExistingBrowser(uri, target, cmdLine);
|
2005-04-04 19:08:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "xfedocommand":
|
|
|
|
// xfeDoCommand(openBrowser)
|
|
|
|
if (remoteParams[0].toLowerCase() != "openbrowser")
|
|
|
|
throw NS_ERROR_ABORT;
|
|
|
|
|
|
|
|
openWindow(null, this.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + this.getFeatures(cmdLine),
|
|
|
|
this.defaultArgs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Somebody sent us a remote command we don't know how to process:
|
|
|
|
// just abort.
|
2007-01-09 19:41:10 +00:00
|
|
|
throw "Unknown remote command.";
|
2005-04-04 19:08:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
catch (e) {
|
2007-01-09 19:41:10 +00:00
|
|
|
Components.utils.reportError(e);
|
2005-04-04 19:08:55 +00:00
|
|
|
// If we had a -remote flag but failed to process it, throw
|
|
|
|
// NS_ERROR_ABORT so that the xremote code knows to return a failure
|
|
|
|
// back to the handling code.
|
|
|
|
throw NS_ERROR_ABORT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-15 14:01:10 +00:00
|
|
|
var uriparam;
|
2005-01-17 18:50:18 +00:00
|
|
|
try {
|
2005-03-27 21:28:34 +00:00
|
|
|
while ((uriparam = cmdLine.handleFlagWithParam("new-window", false))) {
|
2005-08-08 13:03:17 +00:00
|
|
|
var uri = resolveURIInternal(cmdLine, uriparam);
|
2005-08-26 19:56:55 +00:00
|
|
|
if (!shouldLoadURI(uri))
|
|
|
|
continue;
|
2005-01-17 18:50:18 +00:00
|
|
|
openWindow(null, this.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + this.getFeatures(cmdLine),
|
|
|
|
uri.spec);
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
2005-08-08 13:03:17 +00:00
|
|
|
Components.utils.reportError(e);
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
2005-08-15 14:01:10 +00:00
|
|
|
try {
|
|
|
|
while ((uriparam = cmdLine.handleFlagWithParam("new-tab", false))) {
|
|
|
|
var uri = resolveURIInternal(cmdLine, uriparam);
|
2006-11-07 03:10:18 +00:00
|
|
|
handURIToExistingBrowser(uri, nsIBrowserDOMWindow.OPEN_NEWTAB, cmdLine);
|
2005-08-15 14:01:10 +00:00
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Components.utils.reportError(e);
|
|
|
|
}
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
var chromeParam = cmdLine.handleFlagWithParam("chrome", false);
|
|
|
|
if (chromeParam) {
|
2005-05-05 02:17:23 +00:00
|
|
|
|
|
|
|
// Handle the old preference dialog URL separately (bug 285416)
|
|
|
|
if (chromeParam == "chrome://browser/content/pref/pref.xul") {
|
|
|
|
openPreferences();
|
|
|
|
} else {
|
|
|
|
var features = "chrome,dialog=no,all" + this.getFeatures(cmdLine);
|
2005-10-12 20:03:17 +00:00
|
|
|
openWindow(null, chromeParam, "_blank", features, "");
|
2005-05-05 02:17:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
if (cmdLine.handleFlag("preferences", false)) {
|
|
|
|
openPreferences();
|
2005-01-17 18:50:18 +00:00
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
2006-02-02 17:26:57 +00:00
|
|
|
if (cmdLine.handleFlag("silent", false))
|
|
|
|
cmdLine.preventDefault = true;
|
2006-06-28 04:06:10 +00:00
|
|
|
|
|
|
|
var searchParam = cmdLine.handleFlagWithParam("search", false);
|
|
|
|
if (searchParam) {
|
|
|
|
doSearch(searchParam, cmdLine);
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
// Handle "? searchterm" for Windows Vista start menu integration
|
|
|
|
for (var i = cmdLine.length - 1; i >= 0; --i) {
|
|
|
|
var param = cmdLine.getArgument(i);
|
|
|
|
if (param.match(/^\? /)) {
|
|
|
|
cmdLine.removeArguments(i, i);
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
|
|
|
|
searchParam = param.substr(2);
|
|
|
|
doSearch(searchParam, cmdLine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2005-01-17 18:50:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
helpInfo : " -browser Open a browser window.\n",
|
|
|
|
|
|
|
|
/* nsIBrowserHandler */
|
|
|
|
|
2005-04-10 23:32:51 +00:00
|
|
|
get defaultArgs() {
|
|
|
|
var prefb = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(nsIPrefBranch);
|
2006-09-08 06:56:14 +00:00
|
|
|
var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
|
2006-08-19 02:00:52 +00:00
|
|
|
.getService(Components.interfaces.nsIURLFormatter);
|
2005-04-10 23:32:51 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
var overridePage = "";
|
|
|
|
var haveUpdateSession = false;
|
2006-07-05 14:04:36 +00:00
|
|
|
try {
|
2007-03-26 14:22:14 +00:00
|
|
|
switch (needHomepageOverride(prefb)) {
|
|
|
|
case OVERRIDE_NEW_PROFILE:
|
2007-05-02 20:13:33 +00:00
|
|
|
// New profile
|
2007-03-26 14:22:14 +00:00
|
|
|
overridePage = formatter.formatURLPref("startup.homepage_welcome_url");
|
|
|
|
break;
|
|
|
|
case OVERRIDE_NEW_MSTONE:
|
2007-05-02 20:13:33 +00:00
|
|
|
// Existing profile, new build
|
|
|
|
copyPrefOverride();
|
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
// Check whether we have a session to restore. If we do, we assume
|
|
|
|
// that this is an "update" session.
|
|
|
|
var ss = Components.classes["@mozilla.org/browser/sessionstartup;1"]
|
|
|
|
.getService(Components.interfaces.nsISessionStartup);
|
|
|
|
haveUpdateSession = ss.doRestore();
|
|
|
|
overridePage = formatter.formatURLPref("startup.homepage_override_url");
|
|
|
|
break;
|
2006-07-05 14:04:36 +00:00
|
|
|
}
|
2007-03-26 14:22:14 +00:00
|
|
|
} catch (ex) {}
|
2005-04-10 23:32:51 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
// formatURLPref might return "about:blank" if getting the pref fails
|
|
|
|
if (overridePage == "about:blank")
|
|
|
|
overridePage = "";
|
2006-12-07 21:28:32 +00:00
|
|
|
|
2007-03-26 21:20:28 +00:00
|
|
|
var startPage = "";
|
2005-04-10 23:32:51 +00:00
|
|
|
try {
|
|
|
|
var choice = prefb.getIntPref("browser.startup.page");
|
|
|
|
if (choice == 1)
|
2007-03-26 14:22:14 +00:00
|
|
|
startPage = this.startPage;
|
2005-04-10 23:32:51 +00:00
|
|
|
|
|
|
|
if (choice == 2)
|
2007-03-26 14:22:14 +00:00
|
|
|
startPage = Components.classes["@mozilla.org/browser/global-history;2"]
|
2006-07-05 14:04:36 +00:00
|
|
|
.getService(nsIBrowserHistory).lastPageVisited;
|
2007-03-26 21:20:28 +00:00
|
|
|
} catch (e) {
|
|
|
|
Components.utils.reportError(e);
|
|
|
|
}
|
2005-04-10 23:32:51 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
if (startPage == "about:blank")
|
|
|
|
startPage = "";
|
2006-07-05 14:04:36 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
// Only show the startPage if we're not restoring an update session.
|
|
|
|
if (overridePage && startPage && !haveUpdateSession)
|
|
|
|
return overridePage + "|" + startPage;
|
2006-07-05 14:04:36 +00:00
|
|
|
|
2007-03-26 14:22:14 +00:00
|
|
|
return overridePage || startPage || "about:blank";
|
2005-04-10 23:32:51 +00:00
|
|
|
},
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
get startPage() {
|
|
|
|
var prefb = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(nsIPrefBranch);
|
|
|
|
|
|
|
|
var uri = prefb.getComplexValue("browser.startup.homepage",
|
|
|
|
nsIPrefLocalizedString).data;
|
2005-08-25 05:28:37 +00:00
|
|
|
|
|
|
|
if (!uri) {
|
|
|
|
prefb.clearUserPref("browser.startup.homepage");
|
|
|
|
uri = prefb.getComplexValue("browser.startup.homepage",
|
|
|
|
nsIPrefLocalizedString).data;
|
|
|
|
}
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
var count;
|
|
|
|
try {
|
|
|
|
count = prefb.getIntPref("browser.startup.homepage.count");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var i = 1; i < count; ++i) {
|
|
|
|
try {
|
|
|
|
var page = prefb.getComplexValue("browser.startup.homepage." + i,
|
|
|
|
nsIPrefLocalizedString).data;
|
|
|
|
uri += "\n" + page;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return uri;
|
|
|
|
},
|
|
|
|
|
|
|
|
mFeatures : null,
|
|
|
|
|
|
|
|
getFeatures : function bch_features(cmdLine) {
|
|
|
|
if (this.mFeatures === null) {
|
|
|
|
this.mFeatures = "";
|
|
|
|
|
|
|
|
try {
|
|
|
|
var width = cmdLine.handleFlagWithParam("width", false);
|
|
|
|
var height = cmdLine.handleFlagWithParam("height", false);
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
this.mFeatures += ",width=" + width;
|
|
|
|
if (height)
|
|
|
|
this.mFeatures += ",height=" + height;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.mFeatures;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* nsIContentHandler */
|
|
|
|
|
|
|
|
handleContent : function bch_handleContent(contentType, context, request) {
|
2005-02-19 01:36:59 +00:00
|
|
|
try {
|
2005-02-27 18:33:27 +00:00
|
|
|
var webNavInfo = Components.classes["@mozilla.org/webnavigation-info;1"]
|
|
|
|
.getService(nsIWebNavigationInfo);
|
|
|
|
if (!webNavInfo.isTypeSupported(contentType, null)) {
|
|
|
|
throw NS_ERROR_WONT_HANDLE_CONTENT;
|
|
|
|
}
|
2005-02-19 01:36:59 +00:00
|
|
|
} catch (e) {
|
|
|
|
throw NS_ERROR_WONT_HANDLE_CONTENT;
|
|
|
|
}
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
request.QueryInterface(nsIChannel);
|
2007-07-19 18:14:05 +00:00
|
|
|
handURIToExistingBrowser(request.URI,
|
|
|
|
nsIBrowserDOMWindow.OPEN_DEFAULTWINDOW, null);
|
2005-01-17 18:50:18 +00:00
|
|
|
request.cancel(NS_BINDING_ABORTED);
|
|
|
|
},
|
|
|
|
|
2007-07-11 05:59:56 +00:00
|
|
|
/* nsICommandLineValidator */
|
|
|
|
validate : function bch_validate(cmdLine) {
|
|
|
|
// Other handlers may use osint so only handle the osint flag if the url
|
|
|
|
// flag is also present and the command line is valid.
|
|
|
|
var osintFlagIdx = cmdLine.findFlag("osint", false);
|
|
|
|
var urlFlagIdx = cmdLine.findFlag("url", false);
|
|
|
|
if (urlFlagIdx > -1 && (osintFlagIdx > -1 ||
|
|
|
|
cmdLine.state == nsICommandLine.STATE_REMOTE_EXPLICIT)) {
|
|
|
|
var urlParam = cmdLine.getArgument(urlFlagIdx + 1);
|
|
|
|
if (cmdLine.length != urlFlagIdx + 2 || /firefoxurl:/.test(urlParam))
|
|
|
|
throw NS_ERROR_ABORT;
|
|
|
|
cmdLine.handleFlag("osint", false)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
/* nsIFactory */
|
|
|
|
createInstance: function bch_CI(outer, iid) {
|
|
|
|
if (outer != null)
|
|
|
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
|
|
|
|
|
|
|
return this.QueryInterface(iid);
|
|
|
|
},
|
|
|
|
|
|
|
|
lockFactory : function bch_lock(lock) {
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const bch_contractID = "@mozilla.org/browser/clh;1";
|
|
|
|
const bch_CID = Components.ID("{5d0ce354-df01-421a-83fb-7ead0990c24e}");
|
|
|
|
const CONTRACTID_PREFIX = "@mozilla.org/uriloader/content-handler;1?type=";
|
|
|
|
|
2006-11-07 03:10:18 +00:00
|
|
|
function handURIToExistingBrowser(uri, location, cmdLine)
|
2005-04-04 19:08:55 +00:00
|
|
|
{
|
2005-08-26 19:56:55 +00:00
|
|
|
if (!shouldLoadURI(uri))
|
|
|
|
return;
|
|
|
|
|
2005-07-25 21:43:22 +00:00
|
|
|
var navWin = getMostRecentBrowserWindow();
|
2005-04-04 19:08:55 +00:00
|
|
|
if (!navWin) {
|
|
|
|
// if we couldn't load it in an existing window, open a new one
|
|
|
|
openWindow(null, nsBrowserContentHandler.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + nsBrowserContentHandler.getFeatures(cmdLine),
|
|
|
|
uri.spec);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var navNav = navWin.QueryInterface(nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsIWebNavigation);
|
|
|
|
var rootItem = navNav.QueryInterface(nsIDocShellTreeItem).rootTreeItem;
|
|
|
|
var rootWin = rootItem.QueryInterface(nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsIDOMWindow);
|
|
|
|
var bwin = rootWin.QueryInterface(nsIDOMChromeWindow).browserDOMWindow;
|
|
|
|
bwin.openURI(uri, null, location,
|
|
|
|
nsIBrowserDOMWindow.OPEN_EXTERNAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
var nsDefaultCommandLineHandler = {
|
|
|
|
/* nsISupports */
|
|
|
|
QueryInterface : function dch_QI(iid) {
|
|
|
|
if (!iid.equals(nsISupports) &&
|
|
|
|
!iid.equals(nsICommandLineHandler) &&
|
|
|
|
!iid.equals(nsIFactory))
|
2006-12-06 01:12:06 +00:00
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2007-02-13 01:14:48 +00:00
|
|
|
// List of uri's that were passed via the command line without the app
|
|
|
|
// running and have already been handled. This is compared against uri's
|
|
|
|
// opened using DDE on Win32 so we only open one of the requests.
|
|
|
|
_handledURIs: [ ],
|
2007-02-14 00:04:30 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
_haveProfile: false,
|
|
|
|
#endif
|
2007-01-30 05:14:50 +00:00
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
/* nsICommandLineHandler */
|
|
|
|
handle : function dch_handle(cmdLine) {
|
|
|
|
var urilist = [];
|
|
|
|
|
2007-02-14 00:04:30 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
// If we don't have a profile selected yet (e.g. the Profile Manager is
|
|
|
|
// displayed) we will crash if we open an url and then select a profile. To
|
|
|
|
// prevent this handle all url command line flags and set the command line's
|
|
|
|
// preventDefault to true to prevent the display of the ui. The initial
|
|
|
|
// command line will be retained when nsAppRunner calls LaunchChild though
|
|
|
|
// urls launched after the initial launch will be lost.
|
|
|
|
if (!this._haveProfile) {
|
|
|
|
try {
|
|
|
|
// This will throw when a profile has not been selected.
|
|
|
|
var fl = Components.classes["@mozilla.org/file/directory_service;1"]
|
|
|
|
.getService(Components.interfaces.nsIProperties);
|
|
|
|
var dir = fl.get("ProfD", Components.interfaces.nsILocalFile);
|
|
|
|
this._haveProfile = true;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
while ((ar = cmdLine.handleFlagWithParam("url", false))) { }
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-01-17 18:50:18 +00:00
|
|
|
try {
|
|
|
|
var ar;
|
2005-03-27 21:28:34 +00:00
|
|
|
while ((ar = cmdLine.handleFlagWithParam("url", false))) {
|
2007-02-13 01:14:48 +00:00
|
|
|
var found = false;
|
|
|
|
var uri = resolveURIInternal(cmdLine, ar);
|
|
|
|
// count will never be greater than zero except on Win32.
|
|
|
|
var count = this._handledURIs.length;
|
|
|
|
for (var i = 0; i < count; ++i) {
|
|
|
|
if (this._handledURIs[i].spec == uri.spec) {
|
|
|
|
this._handledURIs.splice(i, 1);
|
|
|
|
found = true;
|
|
|
|
cmdLine.preventDefault = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
urilist.push(uri);
|
|
|
|
// The requestpending command line flag is only used on Win32.
|
|
|
|
if (cmdLine.handleFlag("requestpending", false) &&
|
|
|
|
cmdLine.state == nsICommandLine.STATE_INITIAL_LAUNCH)
|
|
|
|
this._handledURIs.push(uri)
|
|
|
|
}
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
2005-08-08 13:03:17 +00:00
|
|
|
Components.utils.reportError(e);
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
2007-02-13 01:14:48 +00:00
|
|
|
count = cmdLine.length;
|
2005-01-17 18:50:18 +00:00
|
|
|
|
2007-02-13 01:14:48 +00:00
|
|
|
for (i = 0; i < count; ++i) {
|
2005-01-17 18:50:18 +00:00
|
|
|
var curarg = cmdLine.getArgument(i);
|
|
|
|
if (curarg.match(/^-/)) {
|
2005-08-08 13:03:17 +00:00
|
|
|
Components.utils.reportError("Warning: unrecognized command line flag " + curarg + "\n");
|
2005-01-17 18:50:18 +00:00
|
|
|
// To emulate the pre-nsICommandLine behavior, we ignore
|
|
|
|
// the argument after an unrecognized flag.
|
|
|
|
++i;
|
|
|
|
} else {
|
|
|
|
try {
|
2005-08-08 13:03:17 +00:00
|
|
|
urilist.push(resolveURIInternal(cmdLine, curarg));
|
2005-08-26 19:56:55 +00:00
|
|
|
}
|
2005-01-17 18:50:18 +00:00
|
|
|
catch (e) {
|
2005-08-08 13:03:17 +00:00
|
|
|
Components.utils.reportError("Error opening URI '" + curarg + "' from the command line: " + e + "\n");
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (urilist.length) {
|
|
|
|
if (cmdLine.state != nsICommandLine.STATE_INITIAL_LAUNCH &&
|
|
|
|
urilist.length == 1) {
|
|
|
|
// Try to find an existing window and load our URI into the
|
|
|
|
// current tab, new tab, or new window as prefs determine.
|
|
|
|
try {
|
2006-11-07 03:10:18 +00:00
|
|
|
handURIToExistingBrowser(urilist[0], nsIBrowserDOMWindow.OPEN_DEFAULTWINDOW, cmdLine);
|
2005-01-17 18:50:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var speclist = [];
|
2007-02-13 01:14:48 +00:00
|
|
|
for (uri in urilist) {
|
2005-08-26 19:56:55 +00:00
|
|
|
if (shouldLoadURI(urilist[uri]))
|
|
|
|
speclist.push(urilist[uri].spec);
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
2005-08-26 19:56:55 +00:00
|
|
|
if (speclist.length) {
|
|
|
|
openWindow(null, nsBrowserContentHandler.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + nsBrowserContentHandler.getFeatures(cmdLine),
|
|
|
|
speclist.join("|"));
|
|
|
|
}
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (!cmdLine.preventDefault) {
|
|
|
|
openWindow(null, nsBrowserContentHandler.chromeURL, "_blank",
|
|
|
|
"chrome,dialog=no,all" + nsBrowserContentHandler.getFeatures(cmdLine),
|
|
|
|
nsBrowserContentHandler.defaultArgs);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// XXX localize me... how?
|
|
|
|
helpInfo : "Usage: firefox [-flags] [<url>]\n",
|
|
|
|
|
|
|
|
/* nsIFactory */
|
|
|
|
createInstance: function dch_CI(outer, iid) {
|
|
|
|
if (outer != null)
|
|
|
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
|
|
|
|
|
|
|
return this.QueryInterface(iid);
|
|
|
|
},
|
|
|
|
|
|
|
|
lockFactory : function dch_lock(lock) {
|
|
|
|
/* no-op */
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const dch_contractID = "@mozilla.org/browser/final-clh;1";
|
|
|
|
const dch_CID = Components.ID("{47cd0651-b1be-4a0f-b5c4-10e5a573ef71}");
|
|
|
|
|
|
|
|
var Module = {
|
|
|
|
/* nsISupports */
|
|
|
|
QueryInterface: function mod_QI(iid) {
|
2005-08-24 19:39:55 +00:00
|
|
|
if (iid.equals(Components.interfaces.nsIModule) ||
|
2005-01-17 18:50:18 +00:00
|
|
|
iid.equals(Components.interfaces.nsISupports))
|
|
|
|
return this;
|
|
|
|
|
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* nsIModule */
|
|
|
|
getClassObject: function mod_getco(compMgr, cid, iid) {
|
|
|
|
if (cid.equals(bch_CID))
|
|
|
|
return nsBrowserContentHandler.QueryInterface(iid);
|
|
|
|
|
|
|
|
if (cid.equals(dch_CID))
|
|
|
|
return nsDefaultCommandLineHandler.QueryInterface(iid);
|
|
|
|
|
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
|
|
|
},
|
|
|
|
|
|
|
|
registerSelf: function mod_regself(compMgr, fileSpec, location, type) {
|
|
|
|
var compReg =
|
|
|
|
compMgr.QueryInterface( Components.interfaces.nsIComponentRegistrar );
|
|
|
|
|
|
|
|
compReg.registerFactoryLocation( bch_CID,
|
|
|
|
"nsBrowserContentHandler",
|
|
|
|
bch_contractID,
|
|
|
|
fileSpec,
|
|
|
|
location,
|
|
|
|
type );
|
|
|
|
compReg.registerFactoryLocation( dch_CID,
|
|
|
|
"nsDefaultCommandLineHandler",
|
|
|
|
dch_contractID,
|
|
|
|
fileSpec,
|
|
|
|
location,
|
|
|
|
type );
|
|
|
|
|
|
|
|
function registerType(contentType) {
|
|
|
|
compReg.registerFactoryLocation( bch_CID,
|
2006-06-28 04:06:10 +00:00
|
|
|
"Browser Cmdline Handler",
|
|
|
|
CONTRACTID_PREFIX + contentType,
|
|
|
|
fileSpec,
|
|
|
|
location,
|
|
|
|
type );
|
2005-01-17 18:50:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
registerType("text/html");
|
|
|
|
registerType("application/vnd.mozilla.xul+xml");
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
registerType("image/svg+xml");
|
|
|
|
#endif
|
|
|
|
registerType("text/rdf");
|
|
|
|
registerType("text/xml");
|
|
|
|
registerType("application/xhtml+xml");
|
|
|
|
registerType("text/css");
|
|
|
|
registerType("text/plain");
|
|
|
|
registerType("image/gif");
|
|
|
|
registerType("image/jpeg");
|
|
|
|
registerType("image/jpg");
|
|
|
|
registerType("image/png");
|
|
|
|
registerType("image/bmp");
|
|
|
|
registerType("image/x-icon");
|
|
|
|
registerType("image/vnd.microsoft.icon");
|
|
|
|
registerType("image/x-xbitmap");
|
|
|
|
registerType("application/http-index-format");
|
|
|
|
|
|
|
|
var catMan = Components.classes["@mozilla.org/categorymanager;1"]
|
2005-02-19 01:36:59 +00:00
|
|
|
.getService(nsICategoryManager);
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
catMan.addCategoryEntry("command-line-handler",
|
|
|
|
"m-browser",
|
|
|
|
bch_contractID, true, true);
|
|
|
|
catMan.addCategoryEntry("command-line-handler",
|
|
|
|
"x-default",
|
|
|
|
dch_contractID, true, true);
|
2007-07-11 05:59:56 +00:00
|
|
|
catMan.addCategoryEntry("command-line-validator",
|
|
|
|
"b-browser",
|
|
|
|
bch_contractID, true, true);
|
2005-01-17 18:50:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
unregisterSelf : function mod_unregself(compMgr, location, type) {
|
|
|
|
var compReg = compMgr.QueryInterface(nsIComponentRegistrar);
|
|
|
|
compReg.unregisterFactoryLocation(bch_CID, location);
|
|
|
|
compReg.unregisterFactoryLocation(dch_CID, location);
|
|
|
|
|
|
|
|
var catMan = Components.classes["@mozilla.org/categorymanager;1"]
|
2005-02-19 01:36:59 +00:00
|
|
|
.getService(nsICategoryManager);
|
2005-01-17 18:50:18 +00:00
|
|
|
|
|
|
|
catMan.deleteCategoryEntry("command-line-handler",
|
|
|
|
"m-browser", true);
|
|
|
|
catMan.deleteCategoryEntry("command-line-handler",
|
|
|
|
"x-default", true);
|
2007-07-11 05:59:56 +00:00
|
|
|
catMan.deleteCategoryEntry("command-line-validator",
|
|
|
|
"b-browser", true);
|
2005-01-17 18:50:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
canUnload: function(compMgr) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// NSGetModule: Return the nsIModule object.
|
|
|
|
function NSGetModule(compMgr, fileSpec) {
|
|
|
|
return Module;
|
|
|
|
}
|