2002-10-10 21:54:02 +00:00
|
|
|
# -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
2005-02-01 17:36:54 +00:00
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2002-10-10 21:54:02 +00:00
|
|
|
#
|
2005-02-01 17:36:54 +00:00
|
|
|
# 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/
|
2002-10-10 21:54:02 +00:00
|
|
|
#
|
|
|
|
# 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 mozilla.org code.
|
|
|
|
#
|
2005-02-01 17:36:54 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
2002-10-10 21:54:02 +00:00
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2004-11-30 08:23:02 +00:00
|
|
|
# Blake Ross <blake@cs.stanford.edu>
|
2003-08-03 08:25:19 +00:00
|
|
|
# David Hyatt <hyatt@mozilla.org>
|
2002-10-10 21:54:02 +00:00
|
|
|
# Peter Annema <disttsc@bart.nl>
|
|
|
|
# Dean Tessman <dean_tessman@hotmail.com>
|
2005-08-12 06:55:54 +00:00
|
|
|
# Kevin Puetz <puetzk@iastate.edu>
|
2005-02-01 17:36:54 +00:00
|
|
|
# Ben Goodger <ben@netscape.com>
|
2002-10-10 21:54:02 +00:00
|
|
|
# Pierre Chanial <chanial@noos.fr>
|
|
|
|
# Jason Eager <jce2@po.cwru.edu>
|
|
|
|
# Joe Hewitt <hewitt@netscape.com>
|
|
|
|
# Alec Flett <alecf@netscape.com>
|
2005-02-14 19:26:50 +00:00
|
|
|
# Asaf Romano <mozilla.mano@sent.com>
|
2005-04-26 16:55:59 +00:00
|
|
|
# Jason Barnabe <jason_barnabe@fastmail.fm>
|
2005-07-13 18:18:47 +00:00
|
|
|
# Peter Parente <parente@cs.unc.edu>
|
2005-07-20 19:47:09 +00:00
|
|
|
# Giorgio Maone <g.maone@informaction.com>
|
2005-08-12 00:34:19 +00:00
|
|
|
# Tom Germeau <tom.germeau@epigoon.com>
|
2005-08-12 06:55:54 +00:00
|
|
|
# Jesse Ruderman <jruderman@gmail.com>
|
2006-03-07 00:52:35 +00:00
|
|
|
# Joe Hughes <joe@retrovirus.com>
|
2002-10-10 21:54:02 +00:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
2005-02-01 17:36:54 +00:00
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
2002-10-10 21:54:02 +00:00
|
|
|
# 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
|
2005-02-01 17:36:54 +00:00
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
2002-10-10 21:54:02 +00:00
|
|
|
# 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
|
2005-02-01 17:36:54 +00:00
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
2002-10-10 21:54:02 +00:00
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2002-08-04 02:53:09 +00:00
|
|
|
|
2002-10-13 05:23:24 +00:00
|
|
|
const NS_ERROR_MODULE_NETWORK = 2152398848;
|
|
|
|
const NS_NET_STATUS_READ_FROM = NS_ERROR_MODULE_NETWORK + 8;
|
|
|
|
const NS_NET_STATUS_WROTE_TO = NS_ERROR_MODULE_NETWORK + 9;
|
2005-06-14 10:15:58 +00:00
|
|
|
const kXULNS =
|
2003-08-08 07:44:06 +00:00
|
|
|
"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
2002-10-13 05:23:24 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
const nsCI = Components.interfaces;
|
|
|
|
const nsIWebNavigation = nsCI.nsIWebNavigation;
|
2002-10-13 05:23:24 +00:00
|
|
|
|
|
|
|
const MAX_HISTORY_MENU_ITEMS = 15;
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-04-21 09:29:59 +00:00
|
|
|
// bookmark dialog features
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
const BROWSER_ADD_BM_FEATURES = "centerscreen,chrome,dialog,resizable,modal";
|
|
|
|
#else
|
|
|
|
const BROWSER_ADD_BM_FEATURES = "centerscreen,chrome,dialog,resizable,dependent";
|
|
|
|
#endif
|
|
|
|
|
2005-08-23 16:38:28 +00:00
|
|
|
var gBrowserGlue = Components.classes["@mozilla.org/browser/browserglue;1"]
|
|
|
|
.getService(nsCI.nsIBrowserGlue);
|
2002-10-13 05:23:24 +00:00
|
|
|
var gRDF = null;
|
|
|
|
var gGlobalHistory = null;
|
|
|
|
var gURIFixup = null;
|
2004-11-30 08:23:02 +00:00
|
|
|
var gPageStyleButton = null;
|
2002-10-13 16:39:47 +00:00
|
|
|
var gCharsetMenu = null;
|
|
|
|
var gLastBrowserCharset = null;
|
2002-10-13 22:22:38 +00:00
|
|
|
var gPrevCharset = null;
|
2002-08-04 02:53:09 +00:00
|
|
|
var gURLBar = null;
|
|
|
|
var gProxyButton = null;
|
|
|
|
var gProxyFavIcon = null;
|
|
|
|
var gProxyDeck = null;
|
2002-11-08 04:50:05 +00:00
|
|
|
var gNavigatorBundle = null;
|
|
|
|
var gIsLoadingBlank = false;
|
2002-08-04 02:53:09 +00:00
|
|
|
var gLastValidURLStr = "";
|
|
|
|
var gLastValidURL = null;
|
|
|
|
var gHaveUpdatedToolbarState = false;
|
2004-01-18 06:20:54 +00:00
|
|
|
var gClickSelectsAll = false;
|
2002-09-28 22:55:58 +00:00
|
|
|
var gMustLoadSidebar = false;
|
2002-10-09 09:15:21 +00:00
|
|
|
var gProgressMeterPanel = null;
|
|
|
|
var gProgressCollapseTimer = null;
|
2002-09-18 20:11:30 +00:00
|
|
|
var gPrefService = null;
|
2002-08-04 02:53:09 +00:00
|
|
|
var appCore = null;
|
|
|
|
var gBrowser = null;
|
2004-11-30 08:23:02 +00:00
|
|
|
var gSidebarCommand = "";
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
// Global variable that holds the nsContextMenu instance.
|
|
|
|
var gContextMenu = null;
|
|
|
|
|
|
|
|
var gChromeState = null; // chrome state before we went into print preview
|
2003-12-31 22:02:03 +00:00
|
|
|
|
2005-02-25 09:07:58 +00:00
|
|
|
var gSanitizeListener = null;
|
|
|
|
|
2003-12-31 22:02:03 +00:00
|
|
|
var gFormFillPrefListener = null;
|
2002-09-29 20:06:57 +00:00
|
|
|
var gFormHistory = null;
|
2003-02-01 09:13:33 +00:00
|
|
|
var gFormFillEnabled = true;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
var gURLBarAutoFillPrefListener = null;
|
2005-02-14 19:26:50 +00:00
|
|
|
var gAutoHideTabbarPrefListener = null;
|
2004-05-05 23:24:45 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
/**
|
|
|
|
* We can avoid adding multiple load event listeners and save some time by adding
|
|
|
|
* one listener that calls all real handlers.
|
|
|
|
*/
|
|
|
|
|
2005-06-15 23:52:46 +00:00
|
|
|
function pageShowEventHandlers(event)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
// Filter out events that are not about the document load we are interested in
|
2005-01-28 16:06:56 +00:00
|
|
|
if (event.originalTarget == content.document) {
|
2002-08-04 02:53:09 +00:00
|
|
|
checkForDirectoryListing();
|
2002-10-13 16:39:47 +00:00
|
|
|
charsetLoadListener(event);
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifdef ALTSS_ICON
|
|
|
|
updatePageStyles();
|
|
|
|
#endif
|
2005-08-12 00:34:19 +00:00
|
|
|
FeedHandler.updateFeeds();
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2004-07-29 23:49:31 +00:00
|
|
|
|
2004-08-17 22:36:43 +00:00
|
|
|
// some event handlers want to be told what the original browser/listener is
|
2004-07-29 23:49:31 +00:00
|
|
|
var targetBrowser = null;
|
|
|
|
if (gBrowser.mTabbedMode) {
|
2004-11-30 08:23:02 +00:00
|
|
|
var targetBrowserIndex = gBrowser.getBrowserIndexForDocument(event.originalTarget);
|
|
|
|
if (targetBrowserIndex == -1)
|
|
|
|
return;
|
|
|
|
targetBrowser = gBrowser.getBrowserAtIndex(targetBrowserIndex);
|
|
|
|
} else {
|
2004-07-29 23:49:31 +00:00
|
|
|
targetBrowser = gBrowser.mCurrentBrowser;
|
|
|
|
}
|
|
|
|
|
2005-12-16 08:32:28 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2004-11-30 08:23:02 +00:00
|
|
|
// update the last visited date
|
|
|
|
if (targetBrowser.currentURI.spec)
|
|
|
|
BMSVC.updateLastVisitedDate(targetBrowser.currentURI.spec,
|
|
|
|
targetBrowser.contentDocument.characterSet);
|
2005-12-16 08:32:28 +00:00
|
|
|
#endif
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether or not the content area is displaying a page with frames,
|
|
|
|
* and if so, toggle the display of the 'save frame as' menu item.
|
|
|
|
**/
|
|
|
|
function getContentAreaFrameCount()
|
|
|
|
{
|
2002-08-10 02:58:38 +00:00
|
|
|
var saveFrameItem = document.getElementById("menu_saveFrame");
|
2005-02-16 23:58:35 +00:00
|
|
|
if (!content || !content.frames.length || !isContentFrame(document.commandDispatcher.focusedWindow))
|
2002-08-04 02:53:09 +00:00
|
|
|
saveFrameItem.setAttribute("hidden", "true");
|
|
|
|
else
|
|
|
|
saveFrameItem.removeAttribute("hidden");
|
|
|
|
}
|
|
|
|
|
|
|
|
function UpdateBackForwardButtons()
|
|
|
|
{
|
2002-08-09 01:41:39 +00:00
|
|
|
var backBroadcaster = document.getElementById("Browser:Back");
|
|
|
|
var forwardBroadcaster = document.getElementById("Browser:Forward");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
var webNavigation = gBrowser.webNavigation;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
// Avoid setting attributes on broadcasters if the value hasn't changed!
|
|
|
|
// Remember, guys, setting attributes on elements is expensive! They
|
|
|
|
// get inherited into anonymous content, broadcast to other widgets, etc.!
|
|
|
|
// Don't do it if the value hasn't changed! - dwh
|
|
|
|
|
2002-11-09 01:21:19 +00:00
|
|
|
var backDisabled = backBroadcaster.hasAttribute("disabled");
|
|
|
|
var forwardDisabled = forwardBroadcaster.hasAttribute("disabled");
|
|
|
|
if (backDisabled == webNavigation.canGoBack) {
|
|
|
|
if (backDisabled)
|
|
|
|
backBroadcaster.removeAttribute("disabled");
|
|
|
|
else
|
|
|
|
backBroadcaster.setAttribute("disabled", true);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-11-09 01:21:19 +00:00
|
|
|
if (forwardDisabled == webNavigation.canGoForward) {
|
|
|
|
if (forwardDisabled)
|
|
|
|
forwardBroadcaster.removeAttribute("disabled");
|
|
|
|
else
|
|
|
|
forwardBroadcaster.setAttribute("disabled", true);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-12 00:42:16 +00:00
|
|
|
function UpdateBookmarkAllTabsMenuitem()
|
|
|
|
{
|
|
|
|
var tabbrowser = getBrowser();
|
2005-08-29 22:09:37 +00:00
|
|
|
var numTabs = 0;
|
|
|
|
if (tabbrowser)
|
|
|
|
numTabs = tabbrowser.tabContainer.childNodes.length;
|
2005-08-12 00:42:16 +00:00
|
|
|
|
|
|
|
var bookmarkAllCommand = document.getElementById("Browser:BookmarkAllTabs");
|
|
|
|
if (numTabs > 1)
|
|
|
|
bookmarkAllCommand.removeAttribute("disabled");
|
|
|
|
else
|
|
|
|
bookmarkAllCommand.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
function addBookmarkMenuitems()
|
|
|
|
{
|
|
|
|
var tabbrowser = getBrowser();
|
|
|
|
var tabMenu = document.getAnonymousElementByAttribute(tabbrowser,"anonid","tabContextMenu");
|
|
|
|
var bookmarkAllTabsItem = document.createElement("menuitem");
|
|
|
|
bookmarkAllTabsItem.setAttribute("label", gNavigatorBundle.getString("bookmarkAllTabs_label"));
|
|
|
|
bookmarkAllTabsItem.setAttribute("accesskey", gNavigatorBundle.getString("bookmarkAllTabs_accesskey"));
|
|
|
|
bookmarkAllTabsItem.setAttribute("command", "Browser:BookmarkAllTabs");
|
2005-08-29 22:09:37 +00:00
|
|
|
// set up the bookmarkAllTabs menu item correctly when the menu popup is shown
|
|
|
|
tabMenu.addEventListener("popupshowing", UpdateBookmarkAllTabsMenuitem, false);
|
2005-08-12 00:42:16 +00:00
|
|
|
var bookmarkCurTabItem = document.createElement("menuitem");
|
|
|
|
bookmarkCurTabItem.setAttribute("label", gNavigatorBundle.getString("bookmarkCurTab_label"));
|
|
|
|
bookmarkCurTabItem.setAttribute("accesskey", gNavigatorBundle.getString("bookmarkCurTab_accesskey"));
|
2005-08-15 23:44:17 +00:00
|
|
|
bookmarkCurTabItem.setAttribute("oncommand", "BookmarkThisTab();");
|
2005-08-12 00:42:16 +00:00
|
|
|
var menuseparator = document.createElement("menuseparator");
|
|
|
|
var insertPos = tabMenu.lastChild.previousSibling;
|
|
|
|
tabMenu.insertBefore(bookmarkAllTabsItem, insertPos);
|
|
|
|
tabMenu.insertBefore(bookmarkCurTabItem, bookmarkAllTabsItem);
|
|
|
|
tabMenu.insertBefore(menuseparator, bookmarkCurTabItem);
|
|
|
|
}
|
|
|
|
|
2005-08-15 23:44:17 +00:00
|
|
|
function BookmarkThisTab()
|
|
|
|
{
|
|
|
|
var tab = getBrowser().mContextTab;
|
|
|
|
if (tab.localName != "tab")
|
|
|
|
tab = getBrowser().mCurrentTab;
|
|
|
|
|
|
|
|
addBookmarkAs(tab.linkedBrowser, false);
|
|
|
|
}
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
const gSessionHistoryObserver = {
|
|
|
|
observe: function(subject, topic, data)
|
|
|
|
{
|
|
|
|
if (topic != "browser:purge-session-history")
|
|
|
|
return;
|
2002-10-08 23:14:45 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var backCommand = document.getElementById("Browser:Back");
|
|
|
|
backCommand.setAttribute("disabled", "true");
|
|
|
|
var fwdCommand = document.getElementById("Browser:Forward");
|
|
|
|
fwdCommand.setAttribute("disabled", "true");
|
2006-02-01 15:22:15 +00:00
|
|
|
|
|
|
|
//Clear undo history of all URL Bars
|
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
|
|
|
|
var windows = windowManagerInterface.getEnumerator("navigator:browser");
|
|
|
|
while (windows.hasMoreElements()) {
|
|
|
|
var urlBar = windows.getNext().gURLBar;
|
|
|
|
if (urlBar) {
|
|
|
|
urlBar.editor.enableUndo(false);
|
|
|
|
urlBar.editor.enableUndo(true);
|
|
|
|
}
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
};
|
2002-10-09 01:41:08 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
/**
|
|
|
|
* Given a starting docshell and a URI to look up, find the docshell the URI
|
|
|
|
* is loaded in.
|
|
|
|
* @param aDocument
|
|
|
|
* A document to find instead of using just a URI - this is more specific.
|
|
|
|
* @param aDocShell
|
|
|
|
* The doc shell to start at
|
|
|
|
* @param aSoughtURI
|
|
|
|
* The URI that we're looking for
|
|
|
|
* @returns The doc shell that the sought URI is loaded in. Can be in
|
|
|
|
* subframes.
|
|
|
|
*/
|
|
|
|
function findChildShell(aDocument, aDocShell, aSoughtURI) {
|
|
|
|
aDocShell.QueryInterface(Components.interfaces.nsIWebNavigation);
|
|
|
|
aDocShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
|
|
|
|
var doc = aDocShell.getInterface(Components.interfaces.nsIDOMDocument);
|
2005-08-25 16:40:42 +00:00
|
|
|
if ((aDocument && doc == aDocument) ||
|
|
|
|
(aSoughtURI && aSoughtURI.spec == aDocShell.currentURI.spec))
|
2005-08-12 00:34:19 +00:00
|
|
|
return aDocShell;
|
|
|
|
|
|
|
|
var node = aDocShell.QueryInterface(Components.interfaces.nsIDocShellTreeNode);
|
|
|
|
for (var i = 0; i < node.childCount; ++i) {
|
|
|
|
var docShell = node.getChildAt(i);
|
|
|
|
docShell = findChildShell(aDocument, docShell, aSoughtURI);
|
|
|
|
if (docShell)
|
|
|
|
return docShell;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
const gPopupBlockerObserver = {
|
|
|
|
_reportButton: null,
|
|
|
|
_kIPM: Components.interfaces.nsIPermissionManager,
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
onUpdatePageReport: function ()
|
|
|
|
{
|
2005-06-14 10:15:58 +00:00
|
|
|
if (!this._reportButton)
|
2004-11-30 08:23:02 +00:00
|
|
|
this._reportButton = document.getElementById("page-report-button");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gBrowser.selectedBrowser.pageReport) {
|
|
|
|
this._reportButton.setAttribute("blocked", "true");
|
2005-08-27 17:19:08 +00:00
|
|
|
if (!gPrefService)
|
|
|
|
gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
if (gPrefService.getBoolPref("privacy.popups.showBrowserMessage")) {
|
2004-11-30 08:23:02 +00:00
|
|
|
var bundle_browser = document.getElementById("bundle_browser");
|
|
|
|
var brandBundle = document.getElementById("bundle_brand");
|
|
|
|
var brandShortName = brandBundle.getString("brandShortName");
|
|
|
|
var message;
|
|
|
|
var popupCount = gBrowser.selectedBrowser.pageReport.length;
|
2005-06-07 20:16:29 +00:00
|
|
|
#ifdef XP_WIN
|
2005-04-28 17:28:00 +00:00
|
|
|
var popupButtonText = bundle_browser.getString("popupWarningButton");
|
2005-07-13 18:18:47 +00:00
|
|
|
var popupButtonAccesskey = bundle_browser.getString("popupWarningButton.accesskey");
|
2005-06-07 20:16:29 +00:00
|
|
|
#else
|
|
|
|
var popupButtonText = bundle_browser.getString("popupWarningButtonUnix");
|
2005-07-13 18:18:47 +00:00
|
|
|
var popupButtonAccesskey = bundle_browser.getString("popupWarningButtonUnix.accesskey");
|
2005-06-07 20:16:29 +00:00
|
|
|
#endif
|
2005-06-14 10:15:58 +00:00
|
|
|
if (popupCount > 1)
|
2004-11-30 08:23:02 +00:00
|
|
|
message = bundle_browser.getFormattedString("popupWarningMultiple", [brandShortName, popupCount]);
|
|
|
|
else
|
|
|
|
message = bundle_browser.getFormattedString("popupWarning", [brandShortName]);
|
2005-04-28 17:28:00 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
gBrowser.showMessage(gBrowser.selectedBrowser, "chrome://browser/skin/Info.png",
|
2005-07-20 19:47:09 +00:00
|
|
|
message, popupButtonText, null, null, "blockedPopupOptions",
|
|
|
|
"top", true, popupButtonAccesskey);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2002-10-09 01:26:47 +00:00
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
else
|
|
|
|
this._reportButton.removeAttribute("blocked");
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
toggleAllowPopupsForSite: function (aEvent)
|
|
|
|
{
|
|
|
|
var currentURI = gBrowser.selectedBrowser.webNavigation.currentURI;
|
|
|
|
var pm = Components.classes["@mozilla.org/permissionmanager;1"]
|
|
|
|
.getService(this._kIPM);
|
|
|
|
var shouldBlock = aEvent.target.getAttribute("block") == "true";
|
|
|
|
var perm = shouldBlock ? this._kIPM.DENY_ACTION : this._kIPM.ALLOW_ACTION;
|
|
|
|
pm.add(currentURI, "popup", perm);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-12-27 18:39:18 +00:00
|
|
|
gBrowser.hideMessage(null, "top");
|
2004-11-30 08:23:02 +00:00
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
fillPopupList: function (aEvent)
|
|
|
|
{
|
|
|
|
var bundle_browser = document.getElementById("bundle_browser");
|
|
|
|
// XXXben - rather than using |currentURI| here, which breaks down on multi-framed sites
|
|
|
|
// we should really walk the pageReport and create a list of "allow for <host>"
|
|
|
|
// menuitems for the common subset of hosts present in the report, this will
|
|
|
|
// make us frame-safe.
|
|
|
|
var uri = gBrowser.selectedBrowser.webNavigation.currentURI;
|
|
|
|
var blockedPopupAllowSite = document.getElementById("blockedPopupAllowSite");
|
|
|
|
try {
|
|
|
|
blockedPopupAllowSite.removeAttribute("hidden");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var pm = Components.classes["@mozilla.org/permissionmanager;1"]
|
|
|
|
.getService(this._kIPM);
|
|
|
|
if (pm.testPermission(uri, "popup") == this._kIPM.ALLOW_ACTION) {
|
|
|
|
// Offer an item to block popups for this site, if a whitelist entry exists
|
|
|
|
// already for it.
|
|
|
|
var blockString = bundle_browser.getFormattedString("popupBlock", [uri.host]);
|
|
|
|
blockedPopupAllowSite.setAttribute("label", blockString);
|
|
|
|
blockedPopupAllowSite.setAttribute("block", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Offer an item to allow popups for this site
|
|
|
|
var allowString = bundle_browser.getFormattedString("popupAllow", [uri.host]);
|
|
|
|
blockedPopupAllowSite.setAttribute("label", allowString);
|
|
|
|
blockedPopupAllowSite.removeAttribute("block");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
blockedPopupAllowSite.setAttribute("hidden", "true");
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var item = aEvent.target.lastChild;
|
|
|
|
while (item && item.getAttribute("observes") != "blockedPopupsSeparator") {
|
|
|
|
var next = item.previousSibling;
|
|
|
|
item.parentNode.removeChild(item);
|
|
|
|
item = next;
|
|
|
|
}
|
2005-04-03 15:41:20 +00:00
|
|
|
var blockedPopupsSeparator;
|
2004-11-30 08:23:02 +00:00
|
|
|
var pageReport = gBrowser.selectedBrowser.pageReport;
|
|
|
|
if (pageReport && pageReport.length > 0) {
|
2005-04-03 15:41:20 +00:00
|
|
|
blockedPopupsSeparator = document.getElementById("blockedPopupsSeparator");
|
2004-11-30 08:23:02 +00:00
|
|
|
blockedPopupsSeparator.removeAttribute("hidden");
|
|
|
|
for (var i = 0; i < pageReport.length; ++i) {
|
|
|
|
var popupURIspec = pageReport[i].popupWindowURI.spec;
|
|
|
|
if (popupURIspec == "" || popupURIspec == "about:blank" ||
|
|
|
|
popupURIspec == uri.spec)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
var menuitem = document.createElement("menuitem");
|
2005-06-14 10:15:58 +00:00
|
|
|
var label = bundle_browser.getFormattedString("popupShowPopupPrefix",
|
2004-11-30 08:23:02 +00:00
|
|
|
[popupURIspec]);
|
|
|
|
menuitem.setAttribute("label", label);
|
|
|
|
menuitem.setAttribute("requestingWindowURI", pageReport[i].requestingWindowURI.spec);
|
|
|
|
menuitem.setAttribute("popupWindowURI", popupURIspec);
|
|
|
|
menuitem.setAttribute("popupWindowFeatures", pageReport[i].popupWindowFeatures);
|
2006-01-31 20:27:20 +00:00
|
|
|
#ifndef MOZILLA_1_8_BRANCH
|
|
|
|
# bug 314700
|
2005-12-28 00:39:10 +00:00
|
|
|
menuitem.setAttribute("popupWindowName", pageReport[i].popupWindowName);
|
2006-01-31 20:27:20 +00:00
|
|
|
#endif
|
2004-11-30 08:23:02 +00:00
|
|
|
menuitem.setAttribute("oncommand", "gPopupBlockerObserver.showBlockedPopup(event);");
|
|
|
|
aEvent.target.appendChild(menuitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2005-04-03 15:41:20 +00:00
|
|
|
blockedPopupsSeparator = document.getElementById("blockedPopupsSeparator");
|
2004-11-30 08:23:02 +00:00
|
|
|
blockedPopupsSeparator.setAttribute("hidden", "true");
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var blockedPopupDontShowMessage = document.getElementById("blockedPopupDontShowMessage");
|
|
|
|
var showMessage = gPrefService.getBoolPref("privacy.popups.showBrowserMessage");
|
|
|
|
blockedPopupDontShowMessage.setAttribute("checked", !showMessage);
|
|
|
|
if (aEvent.target.localName == "popup")
|
|
|
|
blockedPopupDontShowMessage.setAttribute("label", bundle_browser.getString("popupWarningDontShowFromMessage"));
|
|
|
|
else
|
|
|
|
blockedPopupDontShowMessage.setAttribute("label", bundle_browser.getString("popupWarningDontShowFromStatusbar"));
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
showBlockedPopup: function (aEvent)
|
2004-01-17 22:41:38 +00:00
|
|
|
{
|
2005-02-28 23:09:24 +00:00
|
|
|
var requestingWindow = aEvent.target.getAttribute("requestingWindowURI");
|
2005-06-14 10:15:58 +00:00
|
|
|
var requestingWindowURI =
|
2005-02-28 23:09:24 +00:00
|
|
|
Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(requestingWindow, null, null);
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var popupWindowURI = aEvent.target.getAttribute("popupWindowURI");
|
|
|
|
var features = aEvent.target.getAttribute("popupWindowFeatures");
|
2006-01-31 20:27:20 +00:00
|
|
|
#ifndef MOZILLA_1_8_BRANCH
|
|
|
|
# bug 314700
|
2005-12-28 00:39:10 +00:00
|
|
|
var name = aEvent.target.getAttribute("popupWindowName");
|
2006-01-31 20:27:20 +00:00
|
|
|
#endif
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
var shell = findChildShell(null, gBrowser.selectedBrowser.docShell,
|
|
|
|
requestingWindowURI);
|
2004-11-30 08:23:02 +00:00
|
|
|
if (shell) {
|
|
|
|
var ifr = shell.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
|
|
|
|
var dwi = ifr.getInterface(Components.interfaces.nsIDOMWindowInternal);
|
2006-01-31 20:27:20 +00:00
|
|
|
#ifdef MOZILLA_1_8_BRANCH
|
|
|
|
# bug 314700
|
|
|
|
dwi.open(popupWindowURI, "", features);
|
|
|
|
#else
|
2005-12-28 00:39:10 +00:00
|
|
|
dwi.open(popupWindowURI, name, features);
|
2006-01-31 20:27:20 +00:00
|
|
|
#endif
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
editPopupSettings: function ()
|
|
|
|
{
|
|
|
|
var host = "";
|
|
|
|
try {
|
|
|
|
var uri = gBrowser.selectedBrowser.webNavigation.currentURI;
|
|
|
|
host = uri.host;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
catch (e) { }
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-02-25 09:07:58 +00:00
|
|
|
var bundlePreferences = document.getElementById("bundle_preferences");
|
2005-06-14 10:15:58 +00:00
|
|
|
var params = { blockVisible : false,
|
|
|
|
sessionVisible : false,
|
|
|
|
allowVisible : true,
|
|
|
|
prefilledHost : host,
|
2005-02-25 09:07:58 +00:00
|
|
|
permissionType : "popup",
|
|
|
|
windowTitle : bundlePreferences.getString("popuppermissionstitle"),
|
|
|
|
introText : bundlePreferences.getString("popuppermissionstext") };
|
2004-11-30 08:23:02 +00:00
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
2005-02-25 09:07:58 +00:00
|
|
|
var existingWindow = wm.getMostRecentWindow("Browser:Permissions");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (existingWindow) {
|
2005-02-25 09:07:58 +00:00
|
|
|
existingWindow.initWithParams(params);
|
2004-11-30 08:23:02 +00:00
|
|
|
existingWindow.focus();
|
|
|
|
}
|
2005-02-25 09:07:58 +00:00
|
|
|
else
|
|
|
|
window.openDialog("chrome://browser/content/preferences/permissions.xul",
|
|
|
|
"_blank", "resizable,dialog=no,centerscreen", params);
|
2004-11-30 08:23:02 +00:00
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
dontShowMessage: function ()
|
|
|
|
{
|
|
|
|
var showMessage = gPrefService.getBoolPref("privacy.popups.showBrowserMessage");
|
|
|
|
var firstTime = gPrefService.getBoolPref("privacy.popups.firstTime");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
// If the info message is showing at the top of the window, and the user has never
|
2004-11-30 08:23:02 +00:00
|
|
|
// hidden the message before, show an info box telling the user where the info
|
2005-06-14 10:15:58 +00:00
|
|
|
// will be displayed.
|
2004-11-30 08:23:02 +00:00
|
|
|
if (showMessage && firstTime)
|
|
|
|
this._displayPageReportFirstTime();
|
|
|
|
|
|
|
|
gPrefService.setBoolPref("privacy.popups.showBrowserMessage", !showMessage);
|
|
|
|
|
2005-12-27 18:39:18 +00:00
|
|
|
gBrowser.hideMessage(null, "top");
|
2004-11-30 08:23:02 +00:00
|
|
|
},
|
2002-10-08 19:08:57 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
_displayPageReportFirstTime: function ()
|
|
|
|
{
|
|
|
|
window.openDialog("chrome://browser/content/pageReportFirstTime.xul", "_blank",
|
|
|
|
"dependent");
|
2004-01-17 22:41:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
const gXPInstallObserver = {
|
2005-08-25 16:40:42 +00:00
|
|
|
_findChildShell: function (aDocShell, aSoughtShell)
|
|
|
|
{
|
|
|
|
if (aDocShell == aSoughtShell)
|
|
|
|
return aDocShell;
|
|
|
|
|
|
|
|
var node = aDocShell.QueryInterface(Components.interfaces.nsIDocShellTreeNode);
|
|
|
|
for (var i = 0; i < node.childCount; ++i) {
|
|
|
|
var docShell = node.getChildAt(i);
|
|
|
|
docShell = this._findChildShell(docShell, aSoughtShell);
|
|
|
|
if (docShell == aSoughtShell)
|
|
|
|
return docShell;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
_getBrowser: function (aDocShell)
|
2004-11-30 08:23:02 +00:00
|
|
|
{
|
|
|
|
var tabbrowser = getBrowser();
|
|
|
|
for (var i = 0; i < tabbrowser.browsers.length; ++i) {
|
|
|
|
var browser = tabbrowser.getBrowserAtIndex(i);
|
2005-08-25 16:40:42 +00:00
|
|
|
if (this._findChildShell(browser.docShell, aDocShell))
|
2004-11-30 08:23:02 +00:00
|
|
|
return browser;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
2004-02-21 07:02:53 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
observe: function (aSubject, aTopic, aData)
|
|
|
|
{
|
|
|
|
var brandBundle = document.getElementById("bundle_brand");
|
|
|
|
var browserBundle = document.getElementById("bundle_browser");
|
2005-12-27 18:39:18 +00:00
|
|
|
var browser, webNav, wm;
|
2004-11-30 08:23:02 +00:00
|
|
|
switch (aTopic) {
|
|
|
|
case "xpinstall-install-blocked":
|
|
|
|
var shell = aSubject.QueryInterface(Components.interfaces.nsIDocShell);
|
2005-04-03 15:41:20 +00:00
|
|
|
browser = this._getBrowser(shell);
|
2004-11-30 08:23:02 +00:00
|
|
|
if (browser) {
|
|
|
|
var host = browser.docShell.QueryInterface(Components.interfaces.nsIWebNavigation).currentURI.host;
|
|
|
|
var brandShortName = brandBundle.getString("brandShortName");
|
2005-07-13 18:18:47 +00:00
|
|
|
var iconURL, messageKey, buttonKey, buttonAccesskeyKey;
|
2004-11-30 08:23:02 +00:00
|
|
|
if (aData == "install-chrome") {
|
|
|
|
// XXXben - use regular software install warnings for now until we can
|
|
|
|
// properly differentiate themes. It's likely in fact that themes won't
|
|
|
|
// be blocked so this code path will only be reached for extensions.
|
|
|
|
iconURL = "chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png";
|
|
|
|
messageKey = "xpinstallWarning";
|
|
|
|
buttonKey = "xpinstallWarningButton";
|
2005-07-13 18:18:47 +00:00
|
|
|
buttonAccesskeyKey = "xpinstallWarningButton.accesskey";
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
iconURL = "chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png";
|
|
|
|
messageKey = "xpinstallWarning";
|
|
|
|
buttonKey = "xpinstallWarningButton";
|
2005-07-13 18:18:47 +00:00
|
|
|
buttonAccesskeyKey = "xpinstallWarningButton.accesskey";
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-07-13 18:18:47 +00:00
|
|
|
var messageString, buttonString, buttonAccesskeyString;
|
2004-11-30 08:23:02 +00:00
|
|
|
if (!gPrefService.getBoolPref("xpinstall.enabled")) {
|
2005-06-14 10:15:58 +00:00
|
|
|
messageString = browserBundle.getFormattedString("xpinstallDisabledWarning",
|
2005-04-03 15:41:20 +00:00
|
|
|
[brandShortName, host]);
|
2005-08-07 00:50:17 +00:00
|
|
|
buttonAccesskeyString = browserBundle.getString("xpinstallDisabledWarningButton.accesskey");
|
|
|
|
buttonString = browserBundle.getString("xpinstallDisabledWarningButton");
|
2005-06-14 10:15:58 +00:00
|
|
|
getBrowser().showMessage(browser, iconURL, messageString, buttonString,
|
2005-07-20 19:47:09 +00:00
|
|
|
null, "xpinstall-install-edit-prefs",
|
|
|
|
null, "top", false, buttonAccesskeyString);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
else {
|
2005-04-03 15:41:20 +00:00
|
|
|
messageString = browserBundle.getFormattedString(messageKey, [brandShortName, host]);
|
|
|
|
buttonString = browserBundle.getString(buttonKey);
|
2005-07-13 18:18:47 +00:00
|
|
|
buttonAccesskeyString = browserBundle.getString(buttonAccesskeyKey);
|
2005-04-03 15:41:20 +00:00
|
|
|
webNav = shell.QueryInterface(Components.interfaces.nsIWebNavigation);
|
2005-06-14 10:15:58 +00:00
|
|
|
getBrowser().showMessage(browser, iconURL, messageString, buttonString,
|
2005-07-20 19:47:09 +00:00
|
|
|
shell, "xpinstall-install-edit-permissions",
|
|
|
|
null, "top", false, buttonAccesskeyString);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "xpinstall-install-edit-prefs":
|
2005-04-28 21:49:46 +00:00
|
|
|
openPreferences("paneContent");
|
2005-12-27 18:39:18 +00:00
|
|
|
getBrowser().hideMessage(null, "top");
|
2004-11-30 08:23:02 +00:00
|
|
|
break;
|
|
|
|
case "xpinstall-install-edit-permissions":
|
2005-04-03 15:41:20 +00:00
|
|
|
browser = this._getBrowser(aSubject.QueryInterface(Components.interfaces.nsIDocShell));
|
2004-11-30 08:23:02 +00:00
|
|
|
if (browser) {
|
2005-02-25 09:07:58 +00:00
|
|
|
var bundlePreferences = document.getElementById("bundle_preferences");
|
2005-04-03 15:41:20 +00:00
|
|
|
webNav = aSubject.QueryInterface(Components.interfaces.nsIWebNavigation);
|
2005-06-14 10:15:58 +00:00
|
|
|
var params = { blockVisible : false,
|
|
|
|
sessionVisible : false,
|
|
|
|
allowVisible : true,
|
|
|
|
prefilledHost : webNav.currentURI.host,
|
2005-02-25 09:07:58 +00:00
|
|
|
permissionType : "install",
|
|
|
|
windowTitle : bundlePreferences.getString("installpermissionstitle"),
|
|
|
|
introText : bundlePreferences.getString("installpermissionstext") };
|
2005-04-03 15:41:20 +00:00
|
|
|
wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
2005-02-25 09:07:58 +00:00
|
|
|
var existingWindow = wm.getMostRecentWindow("Browser:Permissions");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (existingWindow) {
|
2005-02-25 09:07:58 +00:00
|
|
|
existingWindow.initWithParams(params);
|
2004-11-30 08:23:02 +00:00
|
|
|
existingWindow.focus();
|
|
|
|
}
|
2005-02-25 09:07:58 +00:00
|
|
|
else
|
|
|
|
window.openDialog("chrome://browser/content/preferences/permissions.xul",
|
|
|
|
"_blank", "resizable,dialog=no,centerscreen", params);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-12-27 18:39:18 +00:00
|
|
|
getBrowser().hideMessage(null, "top");
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-02-21 07:02:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-04-19 15:32:38 +00:00
|
|
|
function BrowserStartup()
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2002-11-16 17:14:12 +00:00
|
|
|
gBrowser = document.getElementById("content");
|
|
|
|
|
2004-10-11 13:32:32 +00:00
|
|
|
window.tryToClose = WindowIsClosing;
|
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
var uriToLoad = null;
|
|
|
|
// Check for window.arguments[0]. If present, use that for uriToLoad.
|
2005-12-28 06:18:58 +00:00
|
|
|
if ("arguments" in window && window.arguments[0])
|
2002-11-08 04:50:05 +00:00
|
|
|
uriToLoad = window.arguments[0];
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
gIsLoadingBlank = uriToLoad == "about:blank";
|
2002-09-13 03:15:57 +00:00
|
|
|
|
2004-02-21 07:02:53 +00:00
|
|
|
if (!gIsLoadingBlank)
|
2002-11-08 04:50:05 +00:00
|
|
|
prepareForStartup();
|
2002-08-04 02:53:09 +00:00
|
|
|
|
2002-10-13 22:22:38 +00:00
|
|
|
#ifdef ENABLE_PAGE_CYCLER
|
|
|
|
appCore.startPageCycler();
|
|
|
|
#else
|
2005-12-28 06:18:58 +00:00
|
|
|
# only load url passed in when we're not page cycling
|
2002-11-08 04:50:05 +00:00
|
|
|
if (uriToLoad && !gIsLoadingBlank) {
|
2005-12-28 06:18:58 +00:00
|
|
|
if (window.arguments.length >= 3)
|
|
|
|
loadURI(uriToLoad, window.arguments[2], window.arguments[3] || null);
|
2002-11-16 17:14:12 +00:00
|
|
|
else
|
|
|
|
loadOneOrMoreURIs(uriToLoad);
|
2002-10-13 22:22:38 +00:00
|
|
|
}
|
2002-10-13 20:04:05 +00:00
|
|
|
#endif
|
2003-01-29 07:42:59 +00:00
|
|
|
|
|
|
|
var sidebarSplitter;
|
2005-11-05 21:53:48 +00:00
|
|
|
if (window.opener && !window.opener.closed) {
|
|
|
|
if (window.opener.gFindBar && window.opener.gFindBar.mFindMode == FIND_NORMAL) {
|
2004-11-30 08:23:02 +00:00
|
|
|
var openerFindBar = window.opener.document.getElementById("FindToolbar");
|
|
|
|
if (openerFindBar && !openerFindBar.hidden)
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.openFindBar();
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-28 22:55:58 +00:00
|
|
|
var openerSidebarBox = window.opener.document.getElementById("sidebar-box");
|
2003-10-25 20:16:48 +00:00
|
|
|
// The opener can be the hidden window too, if we're coming from the state
|
2005-06-14 10:15:58 +00:00
|
|
|
// where no windows are open, and the hidden window has no sidebar box.
|
2003-10-24 07:41:43 +00:00
|
|
|
if (openerSidebarBox && !openerSidebarBox.hidden) {
|
2002-11-08 04:56:15 +00:00
|
|
|
var sidebarBox = document.getElementById("sidebar-box");
|
2002-09-28 22:55:58 +00:00
|
|
|
var sidebarTitle = document.getElementById("sidebar-title");
|
|
|
|
sidebarTitle.setAttribute("value", window.opener.document.getElementById("sidebar-title").getAttribute("value"));
|
|
|
|
sidebarBox.setAttribute("width", openerSidebarBox.boxObject.width);
|
2002-09-30 01:58:19 +00:00
|
|
|
var sidebarCmd = openerSidebarBox.getAttribute("sidebarcommand");
|
|
|
|
sidebarBox.setAttribute("sidebarcommand", sidebarCmd);
|
2002-11-05 00:29:14 +00:00
|
|
|
sidebarBox.setAttribute("src", window.opener.document.getElementById("sidebar").getAttribute("src"));
|
2002-11-06 19:27:16 +00:00
|
|
|
gMustLoadSidebar = true;
|
|
|
|
sidebarBox.hidden = false;
|
2003-01-29 07:42:59 +00:00
|
|
|
sidebarSplitter = document.getElementById("sidebar-splitter");
|
2002-11-06 19:27:16 +00:00
|
|
|
sidebarSplitter.hidden = false;
|
2002-11-08 04:50:05 +00:00
|
|
|
document.getElementById(sidebarCmd).setAttribute("checked", "true");
|
2002-11-06 19:27:16 +00:00
|
|
|
}
|
2002-11-05 00:29:14 +00:00
|
|
|
}
|
2002-11-07 02:25:18 +00:00
|
|
|
else {
|
2002-11-08 04:56:15 +00:00
|
|
|
var box = document.getElementById("sidebar-box");
|
2005-06-14 10:15:58 +00:00
|
|
|
if (box.hasAttribute("sidebarcommand")) {
|
2005-08-02 18:34:13 +00:00
|
|
|
var commandID = box.getAttribute("sidebarcommand");
|
|
|
|
if (commandID) {
|
|
|
|
var command = document.getElementById(commandID);
|
|
|
|
if (command) {
|
|
|
|
gMustLoadSidebar = true;
|
|
|
|
box.hidden = false;
|
|
|
|
sidebarSplitter = document.getElementById("sidebar-splitter");
|
|
|
|
sidebarSplitter.hidden = false;
|
|
|
|
command.setAttribute("checked", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Remove the |sidebarcommand| attribute, because the element it
|
|
|
|
// refers to no longer exists, so we should assume this sidebar
|
|
|
|
// panel has been uninstalled. (249883)
|
|
|
|
box.removeAttribute("sidebarcommand");
|
|
|
|
}
|
2002-11-08 04:50:05 +00:00
|
|
|
}
|
|
|
|
}
|
2002-11-07 02:25:18 +00:00
|
|
|
}
|
2004-02-15 01:49:37 +00:00
|
|
|
|
|
|
|
// Certain kinds of automigration rely on this notification to complete their
|
2005-06-14 10:15:58 +00:00
|
|
|
// tasks BEFORE the browser window is shown.
|
2004-02-15 01:49:37 +00:00
|
|
|
var obs = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
obs.notifyObservers(null, "browser-window-before-show", "");
|
2004-02-23 02:20:36 +00:00
|
|
|
|
|
|
|
// Set a sane starting width/height for all resolutions on new profiles.
|
|
|
|
if (!document.documentElement.hasAttribute("width")) {
|
|
|
|
var defaultWidth = 994, defaultHeight;
|
|
|
|
if (screen.availHeight <= 600) {
|
|
|
|
document.documentElement.setAttribute("sizemode", "maximized");
|
|
|
|
defaultWidth = 610;
|
|
|
|
defaultHeight = 450;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Create a narrower window for large or wide-aspect displays, to suggest
|
2005-06-14 10:15:58 +00:00
|
|
|
// side-by-side page view.
|
2004-02-23 02:20:36 +00:00
|
|
|
if ((screen.availWidth / 2) >= 800)
|
|
|
|
defaultWidth = (screen.availWidth / 2) - 20;
|
|
|
|
defaultHeight = screen.availHeight - 10;
|
2004-09-30 03:44:34 +00:00
|
|
|
#ifdef MOZ_WIDGET_GTK
|
|
|
|
#define USE_HEIGHT_ADJUST
|
|
|
|
#endif
|
|
|
|
#ifdef MOZ_WIDGET_GTK2
|
|
|
|
#define USE_HEIGHT_ADJUST
|
|
|
|
#endif
|
|
|
|
#ifdef USE_HEIGHT_ADJUST
|
|
|
|
// On X, we're not currently able to account for the size of the window
|
|
|
|
// border. Use 28px as a guess (titlebar + bottom window border)
|
|
|
|
defaultHeight -= 28;
|
2005-08-11 06:16:12 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// account for the Mac OS X title bar
|
|
|
|
defaultHeight -= 22;
|
2004-09-30 03:44:34 +00:00
|
|
|
#endif
|
2004-02-23 02:20:36 +00:00
|
|
|
}
|
|
|
|
document.documentElement.setAttribute("width", defaultWidth);
|
|
|
|
document.documentElement.setAttribute("height", defaultHeight);
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2006-02-24 21:41:34 +00:00
|
|
|
#ifdef MOZ_PLACES
|
|
|
|
PlacesBrowserShim.init();
|
|
|
|
#endif
|
2002-11-08 04:50:05 +00:00
|
|
|
setTimeout(delayedStartup, 0);
|
2002-09-18 19:51:28 +00:00
|
|
|
}
|
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
function prepareForStartup()
|
2002-09-18 19:51:28 +00:00
|
|
|
{
|
2005-06-14 10:15:58 +00:00
|
|
|
gURLBar = document.getElementById("urlbar");
|
2002-11-08 04:50:05 +00:00
|
|
|
gNavigatorBundle = document.getElementById("bundle_browser");
|
|
|
|
gProgressMeterPanel = document.getElementById("statusbar-progresspanel");
|
2004-11-30 08:23:02 +00:00
|
|
|
gBrowser.addEventListener("DOMUpdatePageReport", gPopupBlockerObserver.onUpdatePageReport, false);
|
2005-12-29 14:15:33 +00:00
|
|
|
// Note: we need to listen to untrusted events, because the pluginfinder XBL
|
|
|
|
// binding can't fire trusted ones (runs with page privileges).
|
|
|
|
gBrowser.addEventListener("PluginNotFound", gMissingPluginInstaller.newMissingPlugin, false, true);
|
2005-06-29 17:19:28 +00:00
|
|
|
gBrowser.addEventListener("NewTab", BrowserOpenTab, false);
|
2004-02-17 07:09:45 +00:00
|
|
|
|
2002-11-08 04:52:37 +00:00
|
|
|
var webNavigation;
|
|
|
|
try {
|
|
|
|
// Create the browser instance component.
|
|
|
|
appCore = Components.classes["@mozilla.org/appshell/component/browser/instance;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIBrowserInstance);
|
|
|
|
if (!appCore)
|
|
|
|
throw "couldn't create a browser instance";
|
|
|
|
|
|
|
|
webNavigation = getWebNavigation();
|
|
|
|
if (!webNavigation)
|
|
|
|
throw "no XBL binding for browser";
|
|
|
|
} catch (e) {
|
|
|
|
alert("Error launching browser window:" + e);
|
|
|
|
window.close(); // Give up.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
// initialize observers and listeners
|
2004-11-30 08:23:02 +00:00
|
|
|
// and give C++ access to gBrowser
|
2002-11-08 04:50:05 +00:00
|
|
|
window.XULBrowserWindow = new nsBrowserStatusHandler();
|
2004-12-07 16:08:48 +00:00
|
|
|
window.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsIWebNavigation)
|
|
|
|
.QueryInterface(nsCI.nsIDocShellTreeItem).treeOwner
|
|
|
|
.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsCI.nsIXULWindow)
|
2004-08-21 14:47:51 +00:00
|
|
|
.XULBrowserWindow = window.XULBrowserWindow;
|
2004-12-07 16:08:48 +00:00
|
|
|
window.QueryInterface(nsCI.nsIDOMChromeWindow).browserDOMWindow =
|
|
|
|
new nsBrowserAccess();
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
window.browserContentListener =
|
|
|
|
new nsBrowserContentListener(window, gBrowser);
|
|
|
|
|
|
|
|
// set default character set if provided
|
|
|
|
if ("arguments" in window && window.arguments.length > 1 && window.arguments[1]) {
|
|
|
|
if (window.arguments[1].indexOf("charset=") != -1) {
|
|
|
|
var arrayArgComponents = window.arguments[1].split("=");
|
|
|
|
if (arrayArgComponents) {
|
|
|
|
//we should "inherit" the charset menu setting in a new window
|
|
|
|
getMarkupDocumentViewer().defaultCharacterSet = arrayArgComponents[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-08 04:51:05 +00:00
|
|
|
// Initialize browser instance..
|
|
|
|
appCore.setWebShellWindow(window);
|
|
|
|
|
2005-02-23 01:34:53 +00:00
|
|
|
// Manually hook up session and global history for the first browser
|
|
|
|
// so that we don't have to load global history before bringing up a
|
|
|
|
// window.
|
2002-11-08 04:50:05 +00:00
|
|
|
// Wire up session and global history before any possible
|
|
|
|
// progress notifications for back/forward button updating
|
2002-11-08 04:58:40 +00:00
|
|
|
webNavigation.sessionHistory = Components.classes["@mozilla.org/browser/shistory;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISHistory);
|
2005-02-23 01:34:53 +00:00
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
os.addObserver(gBrowser.browsers[0], "browser:purge-session-history", false);
|
|
|
|
|
|
|
|
// remove the disablehistory attribute so the browser cleans up, as
|
|
|
|
// though it had done this work itself
|
|
|
|
gBrowser.browsers[0].removeAttribute("disablehistory");
|
2002-11-08 04:50:05 +00:00
|
|
|
|
2004-02-11 02:10:04 +00:00
|
|
|
// enable global history
|
|
|
|
gBrowser.docShell.QueryInterface(Components.interfaces.nsIDocShellHistory).useGlobalHistory = true;
|
2002-11-08 04:50:05 +00:00
|
|
|
|
|
|
|
// hook up UI through progress listener
|
|
|
|
gBrowser.addProgressListener(window.XULBrowserWindow, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
|
2006-02-28 04:15:56 +00:00
|
|
|
|
|
|
|
// Initialize the feedhandler
|
|
|
|
FeedHandler.init();
|
2002-11-08 04:50:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function delayedStartup()
|
|
|
|
{
|
2004-02-21 07:02:53 +00:00
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
os.addObserver(gSessionHistoryObserver, "browser:purge-session-history", false);
|
2004-11-30 08:23:02 +00:00
|
|
|
os.addObserver(gXPInstallObserver, "xpinstall-install-blocked", false);
|
|
|
|
os.addObserver(gXPInstallObserver, "xpinstall-install-edit-prefs", false);
|
|
|
|
os.addObserver(gXPInstallObserver, "xpinstall-install-edit-permissions", false);
|
|
|
|
os.addObserver(gMissingPluginInstaller, "missing-plugin", false);
|
2004-02-21 07:02:53 +00:00
|
|
|
|
2005-08-27 17:19:08 +00:00
|
|
|
if (!gPrefService)
|
|
|
|
gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
2004-11-30 08:23:02 +00:00
|
|
|
BrowserOffline.init();
|
2005-08-10 20:21:44 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gURLBar && document.documentElement.getAttribute("chromehidden").indexOf("toolbar") != -1) {
|
2005-06-14 10:15:58 +00:00
|
|
|
gURLBar.setAttribute("readonly", "true");
|
2004-09-06 23:23:54 +00:00
|
|
|
gURLBar.setAttribute("enablehistory", "false");
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
if (gIsLoadingBlank)
|
|
|
|
prepareForStartup();
|
|
|
|
|
2004-02-20 00:56:59 +00:00
|
|
|
if (gURLBar)
|
|
|
|
gURLBar.addEventListener("dragdrop", URLBarOnDrop, true);
|
|
|
|
|
2002-10-14 01:26:08 +00:00
|
|
|
// loads the services
|
2005-12-16 08:32:28 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2006-02-16 19:00:25 +00:00
|
|
|
initServices();
|
2002-10-14 01:26:08 +00:00
|
|
|
initBMService();
|
2005-12-16 08:32:28 +00:00
|
|
|
#endif
|
2005-07-25 22:09:39 +00:00
|
|
|
gBrowser.addEventListener("pageshow", function(evt) { setTimeout(pageShowEventHandlers, 0, evt); }, true);
|
2002-11-02 00:28:30 +00:00
|
|
|
|
2003-10-25 19:31:07 +00:00
|
|
|
window.addEventListener("keypress", ctrlNumberTabSelection, false);
|
2002-10-18 22:43:30 +00:00
|
|
|
|
2002-09-28 22:55:58 +00:00
|
|
|
if (gMustLoadSidebar) {
|
|
|
|
var sidebar = document.getElementById("sidebar");
|
2002-11-05 00:29:14 +00:00
|
|
|
var sidebarBox = document.getElementById("sidebar-box");
|
|
|
|
sidebar.setAttribute("src", sidebarBox.getAttribute("src"));
|
2002-09-28 22:55:58 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.initFindBar();
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-08-12 00:42:16 +00:00
|
|
|
// add bookmark options to context menu for tabs
|
|
|
|
addBookmarkMenuitems();
|
2005-12-16 08:32:28 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2006-02-16 19:00:25 +00:00
|
|
|
// now load bookmarks
|
2005-06-14 10:15:58 +00:00
|
|
|
BMSVC.readBookmarks();
|
2003-02-23 21:49:19 +00:00
|
|
|
var bt = document.getElementById("bookmarks-ptf");
|
|
|
|
if (bt) {
|
2003-10-29 08:01:27 +00:00
|
|
|
var btf = BMSVC.getBookmarksToolbarFolder().Value;
|
2003-10-08 08:17:23 +00:00
|
|
|
bt.ref = btf;
|
|
|
|
document.getElementById("bookmarks-chevron").ref = btf;
|
2003-02-23 21:49:19 +00:00
|
|
|
bt.database.AddObserver(BookmarksToolbarRDFObserver);
|
|
|
|
}
|
|
|
|
window.addEventListener("resize", BookmarksToolbar.resizeFunc, false);
|
2005-09-18 00:10:39 +00:00
|
|
|
document.getElementById("PersonalToolbar")
|
|
|
|
.controllers.appendController(BookmarksMenuController);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
2006-03-01 18:52:28 +00:00
|
|
|
// XXXben - move this to the toolbar constructor if there is no performance penalty! (Ts/Txul)
|
2006-02-16 19:00:25 +00:00
|
|
|
var bookmarksBar = document.getElementById("bookmarksBarContent");
|
|
|
|
bookmarksBar.init();
|
2006-03-07 16:10:37 +00:00
|
|
|
var bookmarksMenuPopup = document.getElementById("bookmarksMenuPopup");
|
|
|
|
bookmarksMenuPopup.init();
|
2005-12-15 20:24:15 +00:00
|
|
|
#endif
|
2002-09-18 19:51:28 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
// called when we go into full screen, even if it is
|
2002-10-13 06:24:00 +00:00
|
|
|
// initiated by a web page script
|
2002-11-02 00:28:30 +00:00
|
|
|
window.addEventListener("fullscreen", onFullScreen, false);
|
2002-10-13 06:24:00 +00:00
|
|
|
|
2002-11-08 04:50:05 +00:00
|
|
|
var element;
|
2002-11-16 17:14:12 +00:00
|
|
|
if (gIsLoadingBlank && gURLBar && !gURLBar.hidden && !gURLBar.parentNode.parentNode.collapsed)
|
|
|
|
element = gURLBar;
|
|
|
|
else
|
2005-01-28 16:06:56 +00:00
|
|
|
element = content;
|
2002-11-08 04:50:05 +00:00
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
// This is a redo of the fix for jag bug 91884
|
2002-08-04 02:53:09 +00:00
|
|
|
var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowWatcher);
|
|
|
|
if (window == ww.activeWindow) {
|
|
|
|
element.focus();
|
|
|
|
} else {
|
|
|
|
// set the element in command dispatcher so focus will restore properly
|
|
|
|
// when the window does become active
|
2003-06-12 23:09:59 +00:00
|
|
|
if (element instanceof Components.interfaces.nsIDOMWindow) {
|
2002-08-04 02:53:09 +00:00
|
|
|
document.commandDispatcher.focusedWindow = element;
|
2003-06-12 23:09:59 +00:00
|
|
|
document.commandDispatcher.focusedElement = null;
|
|
|
|
} else if (element instanceof Components.interfaces.nsIDOMElement) {
|
|
|
|
document.commandDispatcher.focusedWindow = element.ownerDocument.defaultView;
|
|
|
|
document.commandDispatcher.focusedElement = element;
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2002-11-16 17:14:12 +00:00
|
|
|
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("invalid");
|
2002-11-16 17:14:12 +00:00
|
|
|
|
|
|
|
var toolbox = document.getElementById("navigator-toolbox");
|
|
|
|
toolbox.customizeDone = BrowserToolboxCustomizeDone;
|
|
|
|
|
2005-02-25 09:07:58 +00:00
|
|
|
// Set up Sanitize Item
|
2005-02-26 19:22:38 +00:00
|
|
|
gSanitizeListener = new SanitizeListener();
|
2005-02-25 09:07:58 +00:00
|
|
|
|
2005-02-26 18:32:19 +00:00
|
|
|
var pbi = gPrefService.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
|
2005-02-14 19:26:50 +00:00
|
|
|
|
2003-02-01 09:13:33 +00:00
|
|
|
// Enable/Disable Form Fill
|
2003-12-31 22:02:03 +00:00
|
|
|
gFormFillPrefListener = new FormFillPrefListener();
|
2003-02-01 09:13:33 +00:00
|
|
|
pbi.addObserver(gFormFillPrefListener.domain, gFormFillPrefListener, false);
|
2004-07-29 08:08:11 +00:00
|
|
|
gFormFillPrefListener.toggleFormFill();
|
2003-02-01 09:13:33 +00:00
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
// Enable/Disable URL Bar Auto Fill
|
|
|
|
gURLBarAutoFillPrefListener = new URLBarAutoFillPrefListener();
|
|
|
|
pbi.addObserver(gURLBarAutoFillPrefListener.domain, gURLBarAutoFillPrefListener, false);
|
|
|
|
|
2006-01-11 20:24:20 +00:00
|
|
|
// Enable/Disable auto-hide tabbar
|
2005-02-14 19:26:50 +00:00
|
|
|
gAutoHideTabbarPrefListener = new AutoHideTabbarPrefListener();
|
|
|
|
pbi.addObserver(gAutoHideTabbarPrefListener.domain, gAutoHideTabbarPrefListener, false);
|
|
|
|
|
2003-12-16 00:37:01 +00:00
|
|
|
pbi.addObserver(gHomeButton.prefDomain, gHomeButton, false);
|
|
|
|
gHomeButton.updateTooltip();
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-06-01 14:55:10 +00:00
|
|
|
gClickSelectsAll = gPrefService.getBoolPref("browser.urlbar.clickSelectsAll");
|
2006-01-11 20:24:20 +00:00
|
|
|
if (gURLBar)
|
|
|
|
gURLBar.clickSelectsAll = gClickSelectsAll;
|
2004-06-01 14:55:10 +00:00
|
|
|
|
2004-07-15 22:51:19 +00:00
|
|
|
#ifdef HAVE_SHELL_SERVICE
|
2005-12-04 21:02:38 +00:00
|
|
|
// Perform default browser checking (after window opens).
|
|
|
|
var shell = getShellService();
|
|
|
|
if (shell) {
|
|
|
|
var shouldCheck = shell.shouldCheckDefaultBrowser;
|
|
|
|
if (shouldCheck && !shell.isDefaultBrowser(true)) {
|
|
|
|
var brandBundle = document.getElementById("bundle_brand");
|
|
|
|
var shellBundle = document.getElementById("bundle_shell");
|
|
|
|
|
|
|
|
var brandShortName = brandBundle.getString("brandShortName");
|
|
|
|
var promptTitle = shellBundle.getString("setDefaultBrowserTitle");
|
|
|
|
var promptMessage = shellBundle.getFormattedString("setDefaultBrowserMessage",
|
|
|
|
[brandShortName]);
|
|
|
|
var checkboxLabel = shellBundle.getFormattedString("setDefaultBrowserDontAsk",
|
|
|
|
[brandShortName]);
|
|
|
|
const IPS = Components.interfaces.nsIPromptService;
|
|
|
|
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
|
|
|
.getService(IPS);
|
|
|
|
var checkEveryTime = { value: shouldCheck };
|
|
|
|
var rv = ps.confirmEx(window, promptTitle, promptMessage,
|
|
|
|
(IPS.BUTTON_TITLE_YES * IPS.BUTTON_POS_0) +
|
|
|
|
(IPS.BUTTON_TITLE_NO * IPS.BUTTON_POS_1),
|
|
|
|
null, null, null, checkboxLabel, checkEveryTime);
|
|
|
|
if (rv == 0)
|
|
|
|
shell.setDefaultBrowser(true, false);
|
|
|
|
shell.shouldCheckDefaultBrowser = checkEveryTime.value;
|
|
|
|
}
|
2004-02-15 01:49:37 +00:00
|
|
|
}
|
2004-03-08 14:27:43 +00:00
|
|
|
#endif
|
2004-07-12 08:57:18 +00:00
|
|
|
|
2004-09-06 23:23:54 +00:00
|
|
|
// BiDi UI
|
2005-01-26 01:40:30 +00:00
|
|
|
gBidiUI = isBidiEnabled();
|
|
|
|
if (gBidiUI) {
|
2004-09-06 23:23:54 +00:00
|
|
|
document.getElementById("documentDirection-separator").hidden = false;
|
|
|
|
document.getElementById("documentDirection-swap").hidden = false;
|
|
|
|
document.getElementById("textfieldDirection-separator").hidden = false;
|
|
|
|
document.getElementById("textfieldDirection-swap").hidden = false;
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2005-04-19 15:32:38 +00:00
|
|
|
function BrowserShutdown()
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2004-04-07 17:37:55 +00:00
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIObserverService);
|
|
|
|
os.removeObserver(gSessionHistoryObserver, "browser:purge-session-history");
|
2004-11-30 08:23:02 +00:00
|
|
|
os.removeObserver(gXPInstallObserver, "xpinstall-install-blocked");
|
|
|
|
os.removeObserver(gXPInstallObserver, "xpinstall-install-edit-permissions");
|
|
|
|
os.removeObserver(gXPInstallObserver, "xpinstall-install-edit-prefs");
|
|
|
|
os.removeObserver(gMissingPluginInstaller, "missing-plugin");
|
2004-04-07 17:37:55 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
try {
|
2002-09-18 20:00:30 +00:00
|
|
|
gBrowser.removeProgressListener(window.XULBrowserWindow);
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2005-09-18 00:10:39 +00:00
|
|
|
try {
|
|
|
|
document.getElementById("PersonalToolbar")
|
|
|
|
.controllers.removeController(BookmarksMenuController);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
|
2004-01-22 01:46:48 +00:00
|
|
|
var bt = document.getElementById("bookmarks-ptf");
|
|
|
|
if (bt) {
|
2004-02-25 00:27:13 +00:00
|
|
|
try {
|
|
|
|
bt.database.RemoveObserver(BookmarksToolbarRDFObserver);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2004-01-22 01:46:48 +00:00
|
|
|
}
|
2006-02-16 19:00:25 +00:00
|
|
|
#endif
|
2004-01-22 01:46:48 +00:00
|
|
|
|
2004-02-25 00:27:13 +00:00
|
|
|
try {
|
2005-02-26 18:32:19 +00:00
|
|
|
var pbi = gPrefService.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
|
2004-02-25 00:27:13 +00:00
|
|
|
pbi.removeObserver(gFormFillPrefListener.domain, gFormFillPrefListener);
|
2004-05-05 23:24:45 +00:00
|
|
|
pbi.removeObserver(gURLBarAutoFillPrefListener.domain, gURLBarAutoFillPrefListener);
|
2005-02-14 19:26:50 +00:00
|
|
|
pbi.removeObserver(gAutoHideTabbarPrefListener.domain, gAutoHideTabbarPrefListener);
|
2004-02-25 00:27:13 +00:00
|
|
|
pbi.removeObserver(gHomeButton.prefDomain, gHomeButton);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-02-26 19:22:38 +00:00
|
|
|
if (gSanitizeListener)
|
|
|
|
gSanitizeListener.shutdown();
|
2004-01-22 01:46:48 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
BrowserOffline.uninit();
|
2005-08-26 18:22:08 +00:00
|
|
|
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.uninitFindBar();
|
2004-02-25 00:27:13 +00:00
|
|
|
|
2002-11-05 00:29:14 +00:00
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
|
|
|
|
var enumerator = windowManagerInterface.getEnumerator(null);
|
|
|
|
enumerator.getNext();
|
|
|
|
if (!enumerator.hasMoreElements()) {
|
|
|
|
document.persist("sidebar-box", "sidebarcommand");
|
|
|
|
document.persist("sidebar-box", "width");
|
|
|
|
document.persist("sidebar-box", "src");
|
|
|
|
document.persist("sidebar-title", "value");
|
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
window.XULBrowserWindow.destroy();
|
|
|
|
window.XULBrowserWindow = null;
|
2004-08-21 14:47:51 +00:00
|
|
|
window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Components.interfaces.nsIWebNavigation)
|
|
|
|
.QueryInterface(Components.interfaces.nsIDocShellTreeItem).treeOwner
|
|
|
|
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Components.interfaces.nsIXULWindow)
|
|
|
|
.XULBrowserWindow = null;
|
2004-12-07 16:08:48 +00:00
|
|
|
window.QueryInterface(nsCI.nsIDOMChromeWindow).browserDOMWindow = null;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
window.browserContentListener.close();
|
|
|
|
// Close the app core.
|
|
|
|
if (appCore)
|
|
|
|
appCore.close();
|
|
|
|
}
|
|
|
|
|
2005-01-24 23:40:03 +00:00
|
|
|
#ifdef XP_MACOSX
|
2005-04-19 15:32:38 +00:00
|
|
|
// nonBrowserWindowStartup() and nonBrowserWindowDelayedStartup() are used for
|
|
|
|
// non-browser windows in macBrowserOverlay
|
2005-01-24 23:40:03 +00:00
|
|
|
function nonBrowserWindowStartup()
|
|
|
|
{
|
|
|
|
// Disable inappropriate commands / submenus
|
2005-04-19 15:32:38 +00:00
|
|
|
var disabledItems = ['cmd_newNavigatorTab', 'Browser:SavePage', 'Browser:SendLink',
|
2005-01-24 23:40:03 +00:00
|
|
|
'cmd_pageSetup', 'cmd_print', 'cmd_find', 'cmd_findAgain', 'viewToolbarsMenu',
|
2005-02-27 17:59:38 +00:00
|
|
|
'cmd_toggleTaskbar', 'viewSidebarMenuMenu', 'Browser:Reload', 'Browser:ReloadSkipCache',
|
|
|
|
'viewTextZoomMenu', 'pageStyleMenu', 'charsetMenu', 'View:PageSource', 'View:FullScreen',
|
2005-06-09 00:18:02 +00:00
|
|
|
'viewHistorySidebar', 'Browser:AddBookmarkAs', 'View:PageInfo', 'Tasks:InspectPage'];
|
2005-01-24 23:40:03 +00:00
|
|
|
var element;
|
|
|
|
|
|
|
|
for (var id in disabledItems)
|
|
|
|
{
|
|
|
|
element = document.getElementById(disabledItems[id]);
|
|
|
|
if (element)
|
|
|
|
element.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
|
2005-04-19 15:32:38 +00:00
|
|
|
// If no windows are active (i.e. we're the hidden window), disable the close, minimize
|
2005-01-24 23:40:03 +00:00
|
|
|
// and zoom menu commands as well
|
|
|
|
if (window.location.href == "chrome://browser/content/hiddenWindow.xul")
|
|
|
|
{
|
2005-04-19 15:32:38 +00:00
|
|
|
var hiddenWindowDisabledItems = ['cmd_close', 'minimizeWindow', 'zoomWindow'];
|
|
|
|
for (var id in hiddenWindowDisabledItems)
|
|
|
|
{
|
|
|
|
element = document.getElementById(hiddenWindowDisabledItems[id]);
|
|
|
|
if (element)
|
|
|
|
element.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
|
2005-01-24 23:40:03 +00:00
|
|
|
// also hide the window-list separator
|
|
|
|
element = document.getElementById("sep-window-list");
|
|
|
|
element.setAttribute("hidden", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
gNavigatorBundle = document.getElementById("bundle_browser");
|
|
|
|
|
|
|
|
setTimeout(nonBrowserWindowDelayedStartup, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function nonBrowserWindowDelayedStartup()
|
|
|
|
{
|
|
|
|
// loads the services
|
2005-12-16 08:32:28 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2006-02-16 19:00:25 +00:00
|
|
|
initServices();
|
2005-01-24 23:40:03 +00:00
|
|
|
initBMService();
|
2005-12-16 08:32:28 +00:00
|
|
|
#endif
|
2005-01-24 23:40:03 +00:00
|
|
|
|
|
|
|
// init global pref service
|
|
|
|
gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
2005-03-02 16:26:41 +00:00
|
|
|
|
|
|
|
// Set up Sanitize Item
|
|
|
|
gSanitizeListener = new SanitizeListener();
|
2005-01-24 23:40:03 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-31 22:02:03 +00:00
|
|
|
function FormFillPrefListener()
|
|
|
|
{
|
|
|
|
gBrowser.attachFormFill();
|
|
|
|
}
|
|
|
|
|
|
|
|
FormFillPrefListener.prototype =
|
2003-02-01 09:13:33 +00:00
|
|
|
{
|
|
|
|
domain: "browser.formfill.enable",
|
|
|
|
observe: function (aSubject, aTopic, aPrefName)
|
|
|
|
{
|
|
|
|
if (aTopic != "nsPref:changed" || aPrefName != this.domain)
|
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-02-01 09:13:33 +00:00
|
|
|
this.toggleFormFill();
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-02-01 09:13:33 +00:00
|
|
|
toggleFormFill: function ()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
gFormFillEnabled = gPrefService.getBoolPref(this.domain);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
2004-07-29 08:08:11 +00:00
|
|
|
var formController = Components.classes["@mozilla.org/satchel/form-fill-controller;1"].getService(Components.interfaces.nsIAutoCompleteInput);
|
|
|
|
formController.disableAutoComplete = !gFormFillEnabled;
|
2003-08-08 00:52:33 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var searchBar = document.getElementsByTagName("searchbar");
|
|
|
|
for (var i=0; i<searchBar.length;i++) {
|
2003-08-08 00:52:33 +00:00
|
|
|
if (gFormFillEnabled)
|
2004-11-30 08:23:02 +00:00
|
|
|
searchBar[i].removeAttribute("disableautocomplete");
|
2003-08-08 00:52:33 +00:00
|
|
|
else
|
2004-11-30 08:23:02 +00:00
|
|
|
searchBar[i].setAttribute("disableautocomplete", "true");
|
2003-08-08 00:52:33 +00:00
|
|
|
}
|
2003-02-01 09:13:33 +00:00
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
function URLBarAutoFillPrefListener()
|
|
|
|
{
|
|
|
|
this.toggleAutoFillInURLBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
URLBarAutoFillPrefListener.prototype =
|
|
|
|
{
|
|
|
|
domain: "browser.urlbar.autoFill",
|
|
|
|
observe: function (aSubject, aTopic, aPrefName)
|
|
|
|
{
|
|
|
|
if (aTopic != "nsPref:changed" || aPrefName != this.domain)
|
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
this.toggleAutoFillInURLBar();
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
toggleAutoFillInURLBar: function ()
|
|
|
|
{
|
2004-11-30 08:23:02 +00:00
|
|
|
if (!gURLBar)
|
|
|
|
return;
|
|
|
|
|
2004-05-05 23:24:45 +00:00
|
|
|
var prefValue = false;
|
|
|
|
try {
|
|
|
|
prefValue = gPrefService.getBoolPref(this.domain);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefValue)
|
|
|
|
gURLBar.setAttribute("completedefaultindex", "true");
|
|
|
|
else
|
|
|
|
gURLBar.removeAttribute("completedefaultindex");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-14 19:26:50 +00:00
|
|
|
function AutoHideTabbarPrefListener()
|
|
|
|
{
|
|
|
|
this.toggleAutoHideTabbar();
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoHideTabbarPrefListener.prototype =
|
|
|
|
{
|
|
|
|
domain: "browser.tabs.autoHide",
|
|
|
|
observe: function (aSubject, aTopic, aPrefName)
|
|
|
|
{
|
|
|
|
if (aTopic != "nsPref:changed" || aPrefName != this.domain)
|
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-02-14 19:26:50 +00:00
|
|
|
this.toggleAutoHideTabbar();
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-02-14 19:26:50 +00:00
|
|
|
toggleAutoHideTabbar: function ()
|
|
|
|
{
|
2005-07-07 15:52:50 +00:00
|
|
|
if (gBrowser.tabContainer.childNodes.length == 1 &&
|
|
|
|
window.toolbar.visible) {
|
|
|
|
var aVisible = false;
|
|
|
|
try {
|
|
|
|
aVisible = !gPrefService.getBoolPref(this.domain);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
2005-02-14 19:26:50 +00:00
|
|
|
gBrowser.setStripVisibilityTo(aVisible);
|
|
|
|
gPrefService.setBoolPref("browser.tabs.forceHide", false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-25 09:07:58 +00:00
|
|
|
function SanitizeListener()
|
|
|
|
{
|
|
|
|
var pbi = gPrefService.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
|
|
|
|
pbi.addObserver(this.promptDomain, this, false);
|
|
|
|
|
2005-08-23 16:38:28 +00:00
|
|
|
this._defaultLabel = document.getElementById("sanitizeItem")
|
|
|
|
.getAttribute("label");
|
|
|
|
this._updateSanitizeItem();
|
|
|
|
|
|
|
|
if (gPrefService.prefHasUserValue(this.didSanitizeDomain)) {
|
|
|
|
gPrefService.clearUserPref(this.didSanitizeDomain);
|
|
|
|
// We need to persist this preference change, since we want to
|
2005-11-27 02:25:30 +00:00
|
|
|
// check it at next app start even if the browser exits abruptly
|
|
|
|
gPrefService.savePrefFile(null);
|
2005-08-23 16:38:28 +00:00
|
|
|
}
|
2005-02-25 09:07:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SanitizeListener.prototype =
|
|
|
|
{
|
|
|
|
promptDomain : "privacy.sanitize.promptOnSanitize",
|
|
|
|
didSanitizeDomain : "privacy.sanitize.didShutdownSanitize",
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-02-25 09:07:58 +00:00
|
|
|
observe: function (aSubject, aTopic, aPrefName)
|
|
|
|
{
|
2005-08-23 16:38:28 +00:00
|
|
|
this._updateSanitizeItem();
|
2005-02-25 09:07:58 +00:00
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-02-26 19:22:38 +00:00
|
|
|
shutdown: function ()
|
|
|
|
{
|
|
|
|
var pbi = gPrefService.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
|
|
|
|
pbi.removeObserver(this.promptDomain, this);
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-08-23 16:38:28 +00:00
|
|
|
_updateSanitizeItem: function ()
|
2005-02-25 09:07:58 +00:00
|
|
|
{
|
2005-08-23 16:38:28 +00:00
|
|
|
var label = gPrefService.getBoolPref(this.promptDomain) ?
|
|
|
|
gNavigatorBundle.getString("sanitizeWithPromptLabel") :
|
|
|
|
this._defaultLabel;
|
|
|
|
document.getElementById("sanitizeItem").setAttribute("label", label);
|
2005-04-03 15:41:20 +00:00
|
|
|
}
|
2005-02-25 09:07:58 +00:00
|
|
|
}
|
|
|
|
|
2002-10-25 18:13:29 +00:00
|
|
|
function ctrlNumberTabSelection(event)
|
2005-06-14 10:15:58 +00:00
|
|
|
{
|
|
|
|
if (event.altKey && event.keyCode == KeyEvent.DOM_VK_RETURN) {
|
2004-11-30 08:23:02 +00:00
|
|
|
// XXXblake Proper fix is to just check whether focus is in the urlbar. However, focus with the autocomplete widget is all
|
|
|
|
// hacky and broken and there's no way to do that right now. So this just patches it to ensure that alt+enter works when focus
|
|
|
|
// is on a link.
|
2005-06-30 02:47:04 +00:00
|
|
|
if (!(document.commandDispatcher.focusedElement instanceof HTMLAnchorElement)) {
|
2004-11-30 08:23:02 +00:00
|
|
|
// Don't let winxp beep on ALT+ENTER, since the URL bar uses it.
|
|
|
|
event.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2002-10-20 03:52:52 +00:00
|
|
|
|
2003-08-05 09:31:32 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
if (!event.metaKey)
|
2005-01-16 18:25:41 +00:00
|
|
|
#else
|
|
|
|
#ifdef XP_UNIX
|
2004-10-06 22:25:07 +00:00
|
|
|
if (!event.altKey)
|
2003-08-05 09:31:32 +00:00
|
|
|
#else
|
2002-10-25 18:13:29 +00:00
|
|
|
if (!event.ctrlKey)
|
2005-01-16 18:25:41 +00:00
|
|
|
#endif
|
2003-08-05 09:31:32 +00:00
|
|
|
#endif
|
2002-10-29 00:11:41 +00:00
|
|
|
return;
|
2002-10-25 18:13:29 +00:00
|
|
|
|
2006-01-05 10:00:23 +00:00
|
|
|
// \d in a RegExp will find any Unicode character with the "decimal digit"
|
|
|
|
// property (Nd)
|
|
|
|
var regExp = /\d/;
|
|
|
|
if (!regExp.test(String.fromCharCode(event.charCode)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Some Unicode decimal digits are in the range U+xxx0 - U+xxx9 and some are
|
|
|
|
// in the range U+xxx6 - U+xxxF. Find the digit 1 corresponding to our
|
|
|
|
// character.
|
|
|
|
var digit1 = (event.charCode & 0xFFF0) | 1;
|
2006-02-22 22:54:08 +00:00
|
|
|
if (!regExp.test(String.fromCharCode(digit1)))
|
2006-01-05 10:00:23 +00:00
|
|
|
digit1 += 6;
|
|
|
|
|
|
|
|
var index = event.charCode - digit1;
|
|
|
|
if (index < 0)
|
2002-10-29 00:11:41 +00:00
|
|
|
return;
|
2002-10-18 22:43:30 +00:00
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
if (index >= gBrowser.tabContainer.childNodes.length)
|
2002-10-29 00:11:41 +00:00
|
|
|
return;
|
2002-10-18 22:43:30 +00:00
|
|
|
|
|
|
|
var oldTab = gBrowser.selectedTab;
|
2004-02-19 21:52:31 +00:00
|
|
|
var newTab = gBrowser.tabContainer.childNodes[index];
|
2002-10-18 22:43:30 +00:00
|
|
|
if (newTab != oldTab) {
|
|
|
|
oldTab.selected = false;
|
|
|
|
gBrowser.selectedTab = newTab;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
event.preventBubble();
|
|
|
|
event.preventCapture();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function gotoHistoryIndex(aEvent)
|
|
|
|
{
|
|
|
|
var index = aEvent.target.getAttribute("index");
|
|
|
|
if (!index)
|
|
|
|
return false;
|
2004-06-23 22:54:12 +00:00
|
|
|
|
|
|
|
var where = whereToOpenLink(aEvent);
|
|
|
|
|
|
|
|
if (where == "current") {
|
|
|
|
// Normal click. Go there in the current tab and update session history.
|
|
|
|
|
|
|
|
try {
|
|
|
|
getWebNavigation().gotoIndex(index);
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2004-06-23 22:54:12 +00:00
|
|
|
else {
|
|
|
|
// Modified click. Go there in a new tab/window.
|
|
|
|
// This code doesn't copy history or work well with framed pages.
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-06-23 22:54:12 +00:00
|
|
|
var sessionHistory = getWebNavigation().sessionHistory;
|
|
|
|
var entry = sessionHistory.getEntryAtIndex(index, false);
|
|
|
|
var url = entry.URI.spec;
|
|
|
|
openUILinkIn(url, where);
|
|
|
|
return true;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2004-06-23 22:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserForward(aEvent, aIgnoreAlt)
|
|
|
|
{
|
|
|
|
var where = whereToOpenLink(aEvent, false, aIgnoreAlt);
|
2002-08-04 02:53:09 +00:00
|
|
|
|
2004-06-23 22:54:12 +00:00
|
|
|
if (where == "current") {
|
|
|
|
try {
|
|
|
|
getWebNavigation().goForward();
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var sessionHistory = getWebNavigation().sessionHistory;
|
|
|
|
var currentIndex = sessionHistory.index;
|
|
|
|
var entry = sessionHistory.getEntryAtIndex(currentIndex + 1, false);
|
|
|
|
var url = entry.URI.spec;
|
|
|
|
openUILinkIn(url, where);
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2004-06-23 22:54:12 +00:00
|
|
|
function BrowserBack(aEvent, aIgnoreAlt)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2004-06-23 22:54:12 +00:00
|
|
|
var where = whereToOpenLink(aEvent, false, aIgnoreAlt);
|
|
|
|
|
|
|
|
if (where == "current") {
|
|
|
|
try {
|
|
|
|
getWebNavigation().goBack();
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2004-06-23 22:54:12 +00:00
|
|
|
else {
|
|
|
|
var sessionHistory = getWebNavigation().sessionHistory;
|
|
|
|
var currentIndex = sessionHistory.index;
|
|
|
|
var entry = sessionHistory.getEntryAtIndex(currentIndex - 1, false);
|
|
|
|
var url = entry.URI.spec;
|
|
|
|
openUILinkIn(url, where);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-31 18:43:50 +00:00
|
|
|
function BrowserHandleBackspace()
|
|
|
|
{
|
2005-10-20 15:16:27 +00:00
|
|
|
switch (gPrefService.getIntPref("browser.backspace_action")) {
|
|
|
|
case 0:
|
|
|
|
BrowserBack();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
goDoCommand("cmd_scrollPageUp");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserHandleShiftBackspace()
|
|
|
|
{
|
|
|
|
switch (gPrefService.getIntPref("browser.backspace_action")) {
|
|
|
|
case 0:
|
|
|
|
BrowserForward();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
goDoCommand("cmd_scrollPageDown");
|
|
|
|
break;
|
|
|
|
}
|
2003-05-31 18:43:50 +00:00
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function BrowserBackMenu(event)
|
|
|
|
{
|
|
|
|
return FillHistoryMenu(event.target, "back");
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserForwardMenu(event)
|
|
|
|
{
|
|
|
|
return FillHistoryMenu(event.target, "forward");
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserStop()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
const stopFlags = nsIWebNavigation.STOP_ALL;
|
|
|
|
getWebNavigation().stop(stopFlags);
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserReload()
|
|
|
|
{
|
|
|
|
const reloadFlags = nsIWebNavigation.LOAD_FLAGS_NONE;
|
|
|
|
return BrowserReloadWithFlags(reloadFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserReloadSkipCache()
|
|
|
|
{
|
|
|
|
// Bypass proxy and cache.
|
|
|
|
const reloadFlags = nsIWebNavigation.LOAD_FLAGS_BYPASS_PROXY | nsIWebNavigation.LOAD_FLAGS_BYPASS_CACHE;
|
|
|
|
return BrowserReloadWithFlags(reloadFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserHome()
|
|
|
|
{
|
2003-12-16 00:37:01 +00:00
|
|
|
var homePage = gHomeButton.getHomePage();
|
2002-11-16 17:14:12 +00:00
|
|
|
loadOneOrMoreURIs(homePage);
|
|
|
|
}
|
|
|
|
|
2004-07-16 16:32:41 +00:00
|
|
|
function BrowserHomeClick(aEvent)
|
2002-11-16 17:14:12 +00:00
|
|
|
{
|
2004-07-16 16:32:41 +00:00
|
|
|
if (aEvent.button == 2) // right-click: do nothing
|
|
|
|
return;
|
|
|
|
|
|
|
|
var homePage = gHomeButton.getHomePage();
|
|
|
|
var where = whereToOpenLink(aEvent);
|
|
|
|
var urls;
|
|
|
|
|
|
|
|
// openUILinkIn in utilityOverlay.js doesn't handle loading multiple pages
|
|
|
|
switch (where) {
|
|
|
|
case "save":
|
|
|
|
urls = homePage.split("|");
|
|
|
|
saveURL(urls[0], null, null, true); // only save the first page
|
|
|
|
break;
|
|
|
|
case "current":
|
|
|
|
loadOneOrMoreURIs(homePage);
|
|
|
|
break;
|
|
|
|
case "tabshifted":
|
|
|
|
case "tab":
|
|
|
|
urls = homePage.split("|");
|
2006-01-20 23:04:26 +00:00
|
|
|
var loadInBackground = getBoolPref("browser.tabs.loadBookmarksInBackground", false);
|
|
|
|
gBrowser.loadTabs(urls, loadInBackground);
|
2004-07-16 16:32:41 +00:00
|
|
|
break;
|
|
|
|
case "window":
|
|
|
|
OpenBrowserWindow();
|
|
|
|
break;
|
2002-11-16 17:14:12 +00:00
|
|
|
}
|
2004-07-16 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loadOneOrMoreURIs(aURIString)
|
|
|
|
{
|
2005-01-24 23:40:03 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// we're not a browser window, pass the URI string to a new browser window
|
|
|
|
if (window.location.href != getBrowserURL())
|
|
|
|
{
|
|
|
|
newWindow = openDialog(getBrowserURL(), "_blank", "all,dialog=no", aURIString);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2006-01-20 23:04:26 +00:00
|
|
|
// This function throws for certain malformed URIs, so use exception handling
|
|
|
|
// so that we don't disrupt startup
|
|
|
|
try {
|
|
|
|
gBrowser.loadTabs(aURIString.split("|"), false, true);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2005-01-20 23:04:06 +00:00
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2006-03-01 21:36:53 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2002-10-06 22:54:24 +00:00
|
|
|
function constructGoMenuItem(goMenu, beforeItem, url, title)
|
2002-10-06 21:11:50 +00:00
|
|
|
{
|
2002-10-06 22:54:24 +00:00
|
|
|
var menuitem = document.createElementNS(kXULNS, "menuitem");
|
2003-08-13 03:21:37 +00:00
|
|
|
menuitem.setAttribute("statustext", url);
|
2002-10-06 22:54:24 +00:00
|
|
|
menuitem.setAttribute("label", title);
|
|
|
|
goMenu.insertBefore(menuitem, beforeItem);
|
|
|
|
return menuitem;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onGoMenuHidden()
|
|
|
|
{
|
2004-07-07 03:04:09 +00:00
|
|
|
setTimeout(destroyGoMenuItems, 0, document.getElementById('goPopup'));
|
2002-10-06 22:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function destroyGoMenuItems(goMenu) {
|
|
|
|
var startSeparator = document.getElementById("startHistorySeparator");
|
|
|
|
var endSeparator = document.getElementById("endHistorySeparator");
|
|
|
|
endSeparator.hidden = true;
|
|
|
|
|
|
|
|
// Destroy the items.
|
|
|
|
var destroy = false;
|
|
|
|
for (var i = 0; i < goMenu.childNodes.length; i++) {
|
|
|
|
var item = goMenu.childNodes[i];
|
|
|
|
if (item == endSeparator)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (destroy) {
|
|
|
|
i--;
|
|
|
|
goMenu.removeChild(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item == startSeparator)
|
|
|
|
destroy = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateGoMenu(goMenu)
|
|
|
|
{
|
2002-10-07 01:58:28 +00:00
|
|
|
// In case the timer didn't fire.
|
|
|
|
destroyGoMenuItems(goMenu);
|
|
|
|
|
2002-10-06 22:54:24 +00:00
|
|
|
var history = document.getElementById("hiddenHistoryTree");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-08 23:14:45 +00:00
|
|
|
if (history.hidden) {
|
2002-10-06 22:54:24 +00:00
|
|
|
history.hidden = false;
|
2004-02-11 02:10:04 +00:00
|
|
|
var globalHistory = Components.classes["@mozilla.org/browser/global-history;2"]
|
|
|
|
.getService(Components.interfaces.nsIRDFDataSource);
|
|
|
|
history.database.AddDataSource(globalHistory);
|
2002-10-08 23:14:45 +00:00
|
|
|
}
|
2002-10-06 22:54:24 +00:00
|
|
|
|
|
|
|
if (!history.ref)
|
|
|
|
history.ref = "NC:HistoryRoot";
|
2005-02-11 17:12:56 +00:00
|
|
|
|
2005-02-15 04:57:17 +00:00
|
|
|
var count = history.view.rowCount;
|
2002-10-06 22:54:24 +00:00
|
|
|
if (count > 10)
|
|
|
|
count = 10;
|
|
|
|
|
|
|
|
if (count == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const NC_NS = "http://home.netscape.com/NC-rdf#";
|
2002-10-06 21:11:50 +00:00
|
|
|
|
2002-10-06 22:54:24 +00:00
|
|
|
if (!gRDF)
|
|
|
|
gRDF = Components.classes["@mozilla.org/rdf/rdf-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIRDFService);
|
|
|
|
|
|
|
|
var builder = history.builder.QueryInterface(Components.interfaces.nsIXULTreeBuilder);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-06 22:54:24 +00:00
|
|
|
var beforeItem = document.getElementById("endHistorySeparator");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-06 22:54:24 +00:00
|
|
|
var nameResource = gRDF.GetResource(NC_NS + "Name");
|
|
|
|
|
2002-10-11 18:59:47 +00:00
|
|
|
var endSep = beforeItem;
|
|
|
|
var showSep = false;
|
|
|
|
|
2002-10-06 22:54:24 +00:00
|
|
|
for (var i = count-1; i >= 0; i--) {
|
|
|
|
var res = builder.getResourceAtIndex(i);
|
|
|
|
var url = res.Value;
|
|
|
|
var titleRes = history.database.GetTarget(res, nameResource, true);
|
2002-10-11 18:56:05 +00:00
|
|
|
if (!titleRes)
|
|
|
|
continue;
|
2002-10-11 18:59:47 +00:00
|
|
|
|
|
|
|
showSep = true;
|
2002-10-06 22:54:24 +00:00
|
|
|
var titleLiteral = titleRes.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
|
|
beforeItem = constructGoMenuItem(goMenu, beforeItem, url, titleLiteral.Value);
|
|
|
|
}
|
2002-10-11 18:59:47 +00:00
|
|
|
|
|
|
|
if (showSep)
|
|
|
|
endSep.hidden = false;
|
2002-10-06 21:11:50 +00:00
|
|
|
}
|
2006-03-01 21:36:53 +00:00
|
|
|
#endif
|
2002-10-06 21:11:50 +00:00
|
|
|
|
2005-08-12 00:42:16 +00:00
|
|
|
function addBookmarkAs(aBrowser, aBookmarkAllTabs, aIsWebPanel)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
const browsers = aBrowser.browsers;
|
2005-08-29 22:09:37 +00:00
|
|
|
|
|
|
|
// we only disable the menu item on onpopupshowing; if we get
|
|
|
|
// here via keyboard shortcut, we need to pretend like
|
|
|
|
// nothing happened if we have no tabs
|
|
|
|
if ((!browsers || browsers.length == 1) && aBookmarkAllTabs)
|
|
|
|
return;
|
|
|
|
|
2003-08-03 08:25:19 +00:00
|
|
|
if (browsers && browsers.length > 1)
|
2005-08-12 00:42:16 +00:00
|
|
|
addBookmarkForTabBrowser(aBrowser, aBookmarkAllTabs);
|
2002-08-04 02:53:09 +00:00
|
|
|
else
|
2003-08-03 08:25:19 +00:00
|
|
|
addBookmarkForBrowser(aBrowser.webNavigation, aIsWebPanel);
|
2003-04-21 05:47:02 +00:00
|
|
|
}
|
|
|
|
|
2005-08-12 00:42:16 +00:00
|
|
|
function addBookmarkForTabBrowser(aTabBrowser, aBookmarkAllTabs, aSelect)
|
2003-04-21 05:47:02 +00:00
|
|
|
{
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2003-04-21 05:47:02 +00:00
|
|
|
var tabsInfo = [];
|
|
|
|
var currentTabInfo = { name: "", url: "", charset: null };
|
|
|
|
|
|
|
|
const activeBrowser = aTabBrowser.selectedBrowser;
|
|
|
|
const browsers = aTabBrowser.browsers;
|
|
|
|
for (var i = 0; i < browsers.length; ++i) {
|
|
|
|
var webNav = browsers[i].webNavigation;
|
|
|
|
var url = webNav.currentURI.spec;
|
|
|
|
var name = "";
|
2005-07-06 19:28:46 +00:00
|
|
|
var charSet, description;
|
2003-04-21 05:47:02 +00:00
|
|
|
try {
|
|
|
|
var doc = webNav.document;
|
|
|
|
name = doc.title || url;
|
|
|
|
charSet = doc.characterSet;
|
2005-02-17 00:17:12 +00:00
|
|
|
description = BookmarksUtils.getDescriptionFromDocument(doc);
|
2003-04-21 05:47:02 +00:00
|
|
|
} catch (e) {
|
|
|
|
name = url;
|
|
|
|
}
|
2005-08-12 00:42:16 +00:00
|
|
|
tabsInfo[i] = { name: name, url: url, charset: charSet, description: description };
|
2003-04-21 05:47:02 +00:00
|
|
|
if (browsers[i] == activeBrowser)
|
|
|
|
currentTabInfo = tabsInfo[i];
|
|
|
|
}
|
2005-02-17 00:17:12 +00:00
|
|
|
var dialogArgs = currentTabInfo;
|
2005-08-12 00:42:16 +00:00
|
|
|
if (aBookmarkAllTabs) {
|
|
|
|
dialogArgs = { name: gNavigatorBundle.getString("bookmarkAllTabsDefault") };
|
|
|
|
dialogArgs.bBookmarkAllTabs = true;
|
|
|
|
}
|
|
|
|
|
2005-02-17 00:17:12 +00:00
|
|
|
dialogArgs.objGroup = tabsInfo;
|
2003-04-21 05:47:02 +00:00
|
|
|
openDialog("chrome://browser/content/bookmarks/addBookmark2.xul", "",
|
2005-04-21 09:29:59 +00:00
|
|
|
BROWSER_ADD_BM_FEATURES, dialogArgs);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2003-04-21 05:47:02 +00:00
|
|
|
}
|
|
|
|
|
2003-08-03 08:25:19 +00:00
|
|
|
function addBookmarkForBrowser(aDocShell, aIsWebPanel)
|
2003-04-21 05:47:02 +00:00
|
|
|
{
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2003-04-21 05:47:02 +00:00
|
|
|
// Bug 52536: We obtain the URL and title from the nsIWebNavigation
|
|
|
|
// associated with a <browser/> rather than from a DOMWindow.
|
|
|
|
// This is because when a full page plugin is loaded, there is
|
|
|
|
// no DOMWindow (?) but information about the loaded document
|
2005-06-14 10:15:58 +00:00
|
|
|
// may still be obtained from the webNavigation.
|
2003-04-21 05:47:02 +00:00
|
|
|
var url = aDocShell.currentURI.spec;
|
|
|
|
var title, charSet = null;
|
2005-07-06 19:28:46 +00:00
|
|
|
var description;
|
2003-04-21 05:47:02 +00:00
|
|
|
try {
|
|
|
|
title = aDocShell.document.title || url;
|
|
|
|
charSet = aDocShell.document.characterSet;
|
2005-02-17 00:17:12 +00:00
|
|
|
description = BookmarksUtils.getDescriptionFromDocument(aDocShell.document);
|
2003-04-21 05:47:02 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
title = url;
|
|
|
|
}
|
2005-02-17 00:17:12 +00:00
|
|
|
BookmarksUtils.addBookmark(url, title, charSet, aIsWebPanel, description);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2002-09-20 03:52:36 +00:00
|
|
|
function openLocation()
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-03-23 21:55:41 +00:00
|
|
|
if (gURLBar && !gURLBar.parentNode.parentNode.collapsed &&
|
|
|
|
!(window.getComputedStyle(gURLBar.parentNode, null).display == "none")) {
|
2002-09-20 03:52:36 +00:00
|
|
|
gURLBar.focus();
|
|
|
|
gURLBar.select();
|
|
|
|
}
|
2003-12-02 22:27:25 +00:00
|
|
|
#ifdef XP_MACOSX
|
2005-06-09 00:18:02 +00:00
|
|
|
else if (window.location.href != getBrowserURL()) {
|
|
|
|
var win = getTopWin();
|
|
|
|
if (win) {
|
|
|
|
// If there's an open browser window, it should handle this command
|
|
|
|
win.focus()
|
|
|
|
win.openLocation();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If there are no open browser windows, open a new one
|
2005-06-10 22:49:20 +00:00
|
|
|
win = window.openDialog("chrome://browser/content/", "_blank",
|
|
|
|
"chrome,all,dialog=no", "about:blank");
|
2005-06-09 00:18:02 +00:00
|
|
|
win.addEventListener("load", openLocationCallback, false);
|
2003-12-02 22:27:25 +00:00
|
|
|
}
|
2002-09-20 03:52:36 +00:00
|
|
|
}
|
2005-06-09 00:18:02 +00:00
|
|
|
#endif
|
|
|
|
else
|
|
|
|
openDialog("chrome://browser/content/openLocation.xul", "_blank",
|
|
|
|
"chrome,modal,titlebar", window);
|
|
|
|
}
|
|
|
|
|
|
|
|
function openLocationCallback()
|
|
|
|
{
|
|
|
|
// make sure the DOM is ready
|
|
|
|
setTimeout(function() { this.openLocation(); }, 0);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserOpenTab()
|
|
|
|
{
|
2006-01-20 23:04:26 +00:00
|
|
|
gBrowser.loadOneTab("about:blank", null, null, null, false);
|
2003-10-29 08:01:27 +00:00
|
|
|
if (gURLBar)
|
2004-07-07 03:04:09 +00:00
|
|
|
setTimeout(function() { gURLBar.focus(); }, 0);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Called from the openLocation dialog. This allows that dialog to instruct
|
|
|
|
its opener to open a new window and then step completely out of the way.
|
|
|
|
Anything less byzantine is causing horrible crashes, rather believably,
|
|
|
|
though oddly only on Linux. */
|
2005-07-15 16:46:37 +00:00
|
|
|
function delayedOpenWindow(chrome, flags, href, postData)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2004-07-07 03:04:09 +00:00
|
|
|
// The other way to use setTimeout,
|
|
|
|
// setTimeout(openDialog, 10, chrome, "_blank", flags, url),
|
|
|
|
// doesn't work here. The extra "magic" extra argument setTimeout adds to
|
|
|
|
// the callback function would confuse prepareForStartup() by making
|
|
|
|
// window.arguments[1] be an integer instead of null.
|
2005-07-15 16:46:37 +00:00
|
|
|
setTimeout(function() { openDialog(chrome, "_blank", flags, href, null, null, postData); }, 10);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Required because the tab needs time to set up its content viewers and get the load of
|
|
|
|
the URI kicked off before becoming the active content area. */
|
2005-07-15 16:46:37 +00:00
|
|
|
function delayedOpenTab(aUrl, aReferrer, aCharset, aPostData)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2006-01-20 23:04:26 +00:00
|
|
|
gBrowser.loadOneTab(aUrl, aReferrer, aCharset, aPostData, false);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserOpenFileWindow()
|
|
|
|
{
|
|
|
|
// Get filepicker component.
|
|
|
|
try {
|
|
|
|
const nsIFilePicker = Components.interfaces.nsIFilePicker;
|
|
|
|
var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
|
|
|
|
fp.init(window, gNavigatorBundle.getString("openFile"), nsIFilePicker.modeOpen);
|
|
|
|
fp.appendFilters(nsIFilePicker.filterAll | nsIFilePicker.filterText | nsIFilePicker.filterImages |
|
|
|
|
nsIFilePicker.filterXML | nsIFilePicker.filterHTML);
|
|
|
|
|
|
|
|
if (fp.show() == nsIFilePicker.returnOK)
|
|
|
|
openTopWin(fp.fileURL.spec);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserCloseTabOrWindow()
|
|
|
|
{
|
2005-04-19 15:32:38 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// If we're not a browser window, just close the window
|
|
|
|
if (window.location.href != getBrowserURL()) {
|
|
|
|
closeWindow(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
if (gBrowser.localName == 'tabbrowser' && gBrowser.tabContainer.childNodes.length > 1) {
|
2002-08-04 02:53:09 +00:00
|
|
|
// Just close up a tab.
|
2002-11-16 17:14:12 +00:00
|
|
|
gBrowser.removeCurrentTab();
|
2002-08-04 02:53:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserCloseWindow();
|
|
|
|
}
|
|
|
|
|
2004-10-11 13:32:32 +00:00
|
|
|
function BrowserTryToCloseWindow()
|
|
|
|
{
|
|
|
|
//give tryToClose a chance to veto if it is defined
|
|
|
|
if (typeof(window.tryToClose) != "function" || window.tryToClose())
|
|
|
|
BrowserCloseWindow();
|
|
|
|
}
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
function BrowserCloseWindow()
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-04-19 15:32:38 +00:00
|
|
|
// This code replicates stuff in BrowserShutdown(). It is here because
|
2002-08-04 02:53:09 +00:00
|
|
|
// window.screenX and window.screenY have real values. We need
|
|
|
|
// to fix this eventually but by replicating the code here, we
|
|
|
|
// provide a means of saving position (it just requires that the
|
|
|
|
// user close the window via File->Close (vs. close box).
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
// Get the current window position/size.
|
|
|
|
var x = window.screenX;
|
|
|
|
var y = window.screenY;
|
|
|
|
var h = window.outerHeight;
|
|
|
|
var w = window.outerWidth;
|
|
|
|
|
|
|
|
// Store these into the window attributes (for persistence).
|
|
|
|
var win = document.getElementById( "main-window" );
|
|
|
|
win.setAttribute( "x", x );
|
|
|
|
win.setAttribute( "y", y );
|
|
|
|
win.setAttribute( "height", h );
|
|
|
|
win.setAttribute( "width", w );
|
|
|
|
|
2003-12-01 05:40:07 +00:00
|
|
|
closeWindow(true);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
function loadURI(uri, referrer, postData)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
try {
|
2004-04-20 09:45:12 +00:00
|
|
|
if (postData === undefined)
|
|
|
|
postData = null;
|
|
|
|
getWebNavigation().loadURI(uri, nsIWebNavigation.LOAD_FLAGS_NONE, referrer, postData, null);
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
function BrowserLoadURL(aTriggeringEvent, aPostData)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
var url = gURLBar.value;
|
2005-06-16 04:16:27 +00:00
|
|
|
if (gBrowser.localName == "tabbrowser" &&
|
|
|
|
aTriggeringEvent && 'altKey' in aTriggeringEvent &&
|
|
|
|
aTriggeringEvent.altKey) {
|
2005-06-14 09:25:21 +00:00
|
|
|
handleURLBarRevert();
|
2005-01-28 16:06:56 +00:00
|
|
|
content.focus();
|
2006-01-20 23:04:26 +00:00
|
|
|
gBrowser.loadOneTab(url, null, null, aPostData, false);
|
2005-06-16 04:16:27 +00:00
|
|
|
gURLBar.value = url;
|
|
|
|
aTriggeringEvent.preventDefault();
|
|
|
|
aTriggeringEvent.preventBubble();
|
|
|
|
aTriggeringEvent.preventCapture();
|
|
|
|
aTriggeringEvent.stopPropagation();
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2005-06-16 04:16:27 +00:00
|
|
|
else
|
|
|
|
loadURI(url, null, aPostData);
|
|
|
|
content.focus();
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2005-08-27 02:19:09 +00:00
|
|
|
function delayedSearchLoadURL(aURL, aInNewTab) {
|
|
|
|
setTimeout(SearchLoadURL, 0, aURL, aInNewTab);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SearchLoadURL(aURL, aInNewTab)
|
2004-11-30 08:23:02 +00:00
|
|
|
{
|
2005-08-27 02:19:09 +00:00
|
|
|
if (!aURL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (gBrowser.localName == "tabbrowser" && aInNewTab) {
|
2005-01-28 16:06:56 +00:00
|
|
|
content.focus();
|
2006-01-20 23:04:26 +00:00
|
|
|
// Modal action, remember last viewed tab
|
|
|
|
gBrowser.loadOneTab(aURL, null, null, null, false);
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gURLBar)
|
|
|
|
gURLBar.value = aURL;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
else
|
2004-11-30 08:23:02 +00:00
|
|
|
loadURI(aURL, null, null);
|
2005-01-28 16:06:56 +00:00
|
|
|
content.focus();
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
function getShortcutOrURI(aURL, aPostDataRef)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
// rjc: added support for URL shortcuts (3/30/1999)
|
|
|
|
try {
|
2006-02-16 00:42:46 +00:00
|
|
|
var shortcutURL = null;
|
|
|
|
#ifdef MOZ_PLACES
|
|
|
|
var bookmarkService = Components.classes["@mozilla.org/browser/nav-bookmarks-service;1"]
|
|
|
|
.getService(nsCI.nsINavBookmarksService);
|
|
|
|
var shortcutURI = bookmarkService.getURIForKeyword(aURL);
|
|
|
|
if (shortcutURI)
|
|
|
|
shortcutURL = shortcutURI.spec;
|
|
|
|
#else
|
|
|
|
shortcutURL = BMSVC.resolveKeyword(aURL, aPostDataRef);
|
|
|
|
#endif
|
2002-08-04 02:53:09 +00:00
|
|
|
if (!shortcutURL) {
|
|
|
|
// rjc: add support for string substitution with shortcuts (4/4/2000)
|
|
|
|
// (see bug # 29871 for details)
|
2004-04-20 09:45:12 +00:00
|
|
|
var aOffset = aURL.indexOf(" ");
|
2002-08-04 02:53:09 +00:00
|
|
|
if (aOffset > 0) {
|
2004-04-20 09:45:12 +00:00
|
|
|
var cmd = aURL.substr(0, aOffset);
|
|
|
|
var text = aURL.substr(aOffset+1);
|
2006-02-16 00:42:46 +00:00
|
|
|
#ifdef MOZ_PLACES
|
|
|
|
shortcutURI = bookmarkService.getURIForKeyword(cmd);
|
|
|
|
if (shortcutURI)
|
|
|
|
shortcutURL = shortcutURI.spec;
|
|
|
|
#else
|
2004-04-20 09:45:12 +00:00
|
|
|
shortcutURL = BMSVC.resolveKeyword(cmd, aPostDataRef);
|
2006-02-16 00:42:46 +00:00
|
|
|
#endif
|
2002-08-04 02:53:09 +00:00
|
|
|
if (shortcutURL && text) {
|
2005-08-09 04:53:19 +00:00
|
|
|
var encodedText = null;
|
|
|
|
var charset = "";
|
|
|
|
const re = /^(.*)\&mozcharset=([a-zA-Z][_\-a-zA-Z0-9]+)\s*$/;
|
|
|
|
var matches = shortcutURL.match(re);
|
|
|
|
if (matches) {
|
|
|
|
shortcutURL = matches[1];
|
|
|
|
charset = matches[2];
|
|
|
|
}
|
2006-02-16 00:42:46 +00:00
|
|
|
#ifndef MOZ_PLACES
|
|
|
|
// FIXME: Bug 327328, we don't have last charset in places yet.
|
2005-08-09 04:53:19 +00:00
|
|
|
else if (/%s/.test(shortcutURL) ||
|
|
|
|
(aPostDataRef && /%s/.test(aPostDataRef.value))) {
|
|
|
|
try {
|
|
|
|
charset = BMSVC.getLastCharset(shortcutURL);
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
}
|
2006-02-16 00:42:46 +00:00
|
|
|
#endif
|
2005-08-09 04:53:19 +00:00
|
|
|
|
|
|
|
if (charset)
|
|
|
|
encodedText = escape(convertFromUnicode(charset, text));
|
|
|
|
else // default case: charset=UTF-8
|
|
|
|
encodedText = encodeURIComponent(text);
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
if (aPostDataRef && aPostDataRef.value) {
|
|
|
|
// XXXben - currently we only support "application/x-www-form-urlencoded"
|
|
|
|
// enctypes.
|
|
|
|
aPostDataRef.value = unescape(aPostDataRef.value);
|
2005-08-09 04:53:19 +00:00
|
|
|
if (aPostDataRef.value.match(/%[sS]/)) {
|
|
|
|
aPostDataRef.value = getPostDataStream(aPostDataRef.value,
|
|
|
|
text, encodedText,
|
2004-04-20 09:45:12 +00:00
|
|
|
"application/x-www-form-urlencoded");
|
2005-08-09 04:53:19 +00:00
|
|
|
}
|
2004-04-20 09:45:12 +00:00
|
|
|
else {
|
|
|
|
shortcutURL = null;
|
|
|
|
aPostDataRef.value = null;
|
|
|
|
}
|
|
|
|
}
|
2005-08-09 04:53:19 +00:00
|
|
|
else {
|
|
|
|
if (/%[sS]/.test(shortcutURL))
|
|
|
|
shortcutURL = shortcutURL.replace(/%s/g, encodedText)
|
|
|
|
.replace(/%S/g, text);
|
|
|
|
else
|
|
|
|
shortcutURL = null;
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shortcutURL)
|
2004-04-20 09:45:12 +00:00
|
|
|
aURL = shortcutURL;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2004-04-20 09:45:12 +00:00
|
|
|
return aURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// XXXben - this is only useful if we ever support text/plain encoded forms in
|
2005-06-14 10:15:58 +00:00
|
|
|
// smart keywords.
|
2004-04-20 09:45:12 +00:00
|
|
|
function normalizePostData(aStringData)
|
|
|
|
{
|
|
|
|
var parts = aStringData.split("&");
|
|
|
|
var result = "";
|
|
|
|
for (var i = 0; i < parts.length; ++i) {
|
|
|
|
var part = unescape(parts[i]);
|
2004-11-30 08:23:02 +00:00
|
|
|
if (part)
|
2004-04-20 09:45:12 +00:00
|
|
|
result += part + "\r\n";
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
2005-08-09 04:53:19 +00:00
|
|
|
function getPostDataStream(aStringData, aKeyword, aEncKeyword, aType)
|
2004-04-20 09:45:12 +00:00
|
|
|
{
|
|
|
|
var dataStream = Components.classes["@mozilla.org/io/string-input-stream;1"]
|
2006-01-31 15:25:12 +00:00
|
|
|
.createInstance(Components.interfaces.nsIStringInputStream);
|
2005-08-09 04:53:19 +00:00
|
|
|
aStringData = aStringData.replace(/%s/g, aEncKeyword).replace(/%S/g, aKeyword);
|
2006-01-02 03:34:17 +00:00
|
|
|
dataStream.data = aStringData;
|
2004-04-20 09:45:12 +00:00
|
|
|
|
|
|
|
var mimeStream = Components.classes["@mozilla.org/network/mime-input-stream;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIMIMEInputStream);
|
|
|
|
mimeStream.addHeader("Content-Type", aType);
|
|
|
|
mimeStream.addContentLength = true;
|
|
|
|
mimeStream.setData(dataStream);
|
|
|
|
return mimeStream.QueryInterface(Components.interfaces.nsIInputStream);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function readFromClipboard()
|
|
|
|
{
|
|
|
|
var url;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Get clipboard.
|
|
|
|
var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"]
|
|
|
|
.getService(Components.interfaces.nsIClipboard);
|
|
|
|
|
|
|
|
// Create tranferable that will transfer the text.
|
|
|
|
var trans = Components.classes["@mozilla.org/widget/transferable;1"]
|
|
|
|
.createInstance(Components.interfaces.nsITransferable);
|
|
|
|
|
|
|
|
trans.addDataFlavor("text/unicode");
|
2004-06-23 22:54:12 +00:00
|
|
|
|
|
|
|
// If available, use selection clipboard, otherwise global one
|
|
|
|
if (clipboard.supportsSelectionClipboard())
|
|
|
|
clipboard.getData(trans, clipboard.kSelectionClipboard);
|
|
|
|
else
|
|
|
|
clipboard.getData(trans, clipboard.kGlobalClipboard);
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
var data = {};
|
|
|
|
var dataLen = {};
|
|
|
|
trans.getTransferData("text/unicode", data, dataLen);
|
|
|
|
|
|
|
|
if (data) {
|
2002-11-04 23:12:08 +00:00
|
|
|
data = data.value.QueryInterface(Components.interfaces.nsISupportsString);
|
2002-08-04 02:53:09 +00:00
|
|
|
url = data.data.substring(0, dataLen.value / 2);
|
|
|
|
}
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserViewSourceOfDocument(aDocument)
|
|
|
|
{
|
|
|
|
var pageCookie;
|
|
|
|
var webNav;
|
|
|
|
|
|
|
|
// Get the document charset
|
2005-11-22 05:36:48 +00:00
|
|
|
var docCharset = "charset=" + aDocument.characterSet;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
// Get the nsIWebNavigation associated with the document
|
|
|
|
try {
|
|
|
|
var win;
|
|
|
|
var ifRequestor;
|
|
|
|
|
|
|
|
// Get the DOMWindow for the requested document. If the DOMWindow
|
2005-01-28 16:06:56 +00:00
|
|
|
// cannot be found, then just use the content window...
|
2002-08-04 02:53:09 +00:00
|
|
|
//
|
|
|
|
// XXX: This is a bit of a hack...
|
|
|
|
win = aDocument.defaultView;
|
|
|
|
if (win == window) {
|
2005-01-28 16:06:56 +00:00
|
|
|
win = content;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
ifRequestor = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
|
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
webNav = ifRequestor.getInterface(nsIWebNavigation);
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch(err) {
|
|
|
|
// If nsIWebNavigation cannot be found, just get the one for the whole
|
|
|
|
// window...
|
|
|
|
webNav = getWebNavigation();
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get the 'PageDescriptor' for the current document. This allows the
|
|
|
|
// view-source to access the cached copy of the content rather than
|
|
|
|
// refetching it from the network...
|
|
|
|
//
|
|
|
|
try{
|
|
|
|
var PageLoader = webNav.QueryInterface(Components.interfaces.nsIWebPageDescriptor);
|
|
|
|
|
|
|
|
pageCookie = PageLoader.currentDescriptor;
|
|
|
|
} catch(err) {
|
|
|
|
// If no page descriptor is available, just use the view-source URL...
|
|
|
|
}
|
|
|
|
|
2005-11-22 05:36:48 +00:00
|
|
|
ViewSourceOfURL(webNav.currentURI.spec, pageCookie, aDocument);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2005-11-22 05:36:48 +00:00
|
|
|
function ViewSourceOfURL(aURL, aPageDescriptor, aDocument)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-11-22 05:36:48 +00:00
|
|
|
if (getBoolPref("view_source.editor.external", false)) {
|
|
|
|
gViewSourceUtils.openInExternalEditor(aURL, aPageDescriptor, aDocument);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gViewSourceUtils.openInInternalViewer(aURL, aPageDescriptor, aDocument);
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2005-09-21 01:12:29 +00:00
|
|
|
// doc - document to use for source, or null for this window's document
|
|
|
|
// initialTab - name of the initial tab to display, or null for the first tab
|
|
|
|
function BrowserPageInfo(doc, initialTab)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-09-21 01:12:29 +00:00
|
|
|
var args = {doc: doc, initialTab: initialTab};
|
2005-06-14 10:15:58 +00:00
|
|
|
toOpenDialogByTypeAndUrl("Browser:page-info",
|
|
|
|
doc ? doc.location : window.content.document.location,
|
|
|
|
"chrome://browser/content/pageInfo.xul",
|
2005-04-26 16:55:59 +00:00
|
|
|
"chrome,dialog=no",
|
2005-09-21 01:12:29 +00:00
|
|
|
args);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2002-10-13 05:23:24 +00:00
|
|
|
#ifdef DEBUG
|
2002-08-04 02:53:09 +00:00
|
|
|
// Initialize the LeakDetector class.
|
|
|
|
function LeakDetector(verbose)
|
|
|
|
{
|
|
|
|
this.verbose = verbose;
|
|
|
|
}
|
|
|
|
|
|
|
|
const NS_LEAKDETECTOR_CONTRACTID = "@mozilla.org/xpcom/leakdetector;1";
|
|
|
|
|
|
|
|
if (NS_LEAKDETECTOR_CONTRACTID in Components.classes) {
|
|
|
|
try {
|
|
|
|
LeakDetector.prototype = Components.classes[NS_LEAKDETECTOR_CONTRACTID]
|
|
|
|
.createInstance(Components.interfaces.nsILeakDetector);
|
|
|
|
} catch (err) {
|
|
|
|
LeakDetector.prototype = Object.prototype;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LeakDetector.prototype = Object.prototype;
|
|
|
|
}
|
|
|
|
|
|
|
|
var leakDetector = new LeakDetector(false);
|
|
|
|
|
|
|
|
// Dumps current set of memory leaks.
|
|
|
|
function dumpMemoryLeaks()
|
|
|
|
{
|
|
|
|
leakDetector.dumpLeaks();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Traces all objects reachable from the chrome document.
|
|
|
|
function traceChrome()
|
|
|
|
{
|
|
|
|
leakDetector.traceObject(document, leakDetector.verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Traces all objects reachable from the content document.
|
|
|
|
function traceDocument()
|
|
|
|
{
|
|
|
|
// keep the chrome document out of the dump.
|
|
|
|
leakDetector.markObject(document, true);
|
2005-01-28 16:06:56 +00:00
|
|
|
leakDetector.traceObject(content, leakDetector.verbose);
|
2002-08-04 02:53:09 +00:00
|
|
|
leakDetector.markObject(document, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Controls whether or not we do verbose tracing.
|
|
|
|
function traceVerbose(verbose)
|
|
|
|
{
|
|
|
|
leakDetector.verbose = (verbose == "true");
|
|
|
|
}
|
2002-10-13 05:23:24 +00:00
|
|
|
#endif
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
function checkForDirectoryListing()
|
|
|
|
{
|
2005-01-28 16:06:56 +00:00
|
|
|
if ( "HTTPIndex" in content &&
|
|
|
|
content.HTTPIndex instanceof Components.interfaces.nsIHTTPIndex ) {
|
2005-05-20 17:41:10 +00:00
|
|
|
content.wrappedJSObject.defaultCharacterset =
|
|
|
|
getMarkupDocumentViewer().defaultCharacterSet;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If "ESC" is pressed in the url bar, we replace the urlbar's value with the url of the page
|
|
|
|
// and highlight it, unless it is about:blank, where we reset it to "".
|
|
|
|
function handleURLBarRevert()
|
|
|
|
{
|
|
|
|
var url = getWebNavigation().currentURI.spec;
|
|
|
|
var throbberElement = document.getElementById("navigator-throbber");
|
|
|
|
|
2002-09-28 06:25:03 +00:00
|
|
|
var isScrolling = gURLBar.popupOpen;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
// don't revert to last valid url unless page is NOT loading
|
|
|
|
// and user is NOT key-scrolling through autocomplete list
|
2002-08-09 07:48:19 +00:00
|
|
|
if ((!throbberElement || !throbberElement.hasAttribute("busy")) && !isScrolling) {
|
2005-06-14 10:15:58 +00:00
|
|
|
if (url != "about:blank") {
|
2002-08-04 02:53:09 +00:00
|
|
|
gURLBar.value = url;
|
|
|
|
gURLBar.select();
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("valid");
|
2002-08-04 02:53:09 +00:00
|
|
|
} else { //if about:blank, urlbar becomes ""
|
|
|
|
gURLBar.value = "";
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-05 05:55:54 +00:00
|
|
|
gBrowser.userTypedValue = null;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
// tell widget to revert to last typed text only if the user
|
|
|
|
// was scrolling when they hit escape
|
2005-06-14 10:15:58 +00:00
|
|
|
return !isScrolling;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2002-09-28 06:25:03 +00:00
|
|
|
function handleURLBarCommand(aTriggeringEvent)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2004-04-20 09:45:12 +00:00
|
|
|
var postData = { };
|
|
|
|
canonizeUrl(aTriggeringEvent, postData);
|
2002-11-08 01:18:39 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
try {
|
2005-07-05 23:08:30 +00:00
|
|
|
addToUrlbarHistory(gURLBar.value);
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch (ex) {
|
|
|
|
// Things may go wrong when adding url to session history,
|
|
|
|
// but don't let that interfere with the loading of the url.
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
BrowserLoadURL(aTriggeringEvent, postData.value);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
function canonizeUrl(aTriggeringEvent, aPostDataRef)
|
2002-11-08 01:18:39 +00:00
|
|
|
{
|
2005-12-27 23:13:50 +00:00
|
|
|
if (!gURLBar || !gURLBar.value)
|
2002-11-08 01:18:39 +00:00
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-11-08 01:24:37 +00:00
|
|
|
var url = gURLBar.value;
|
2003-07-19 09:35:13 +00:00
|
|
|
|
|
|
|
// Prevent suffix when already exists www , http , /
|
2005-02-06 19:53:10 +00:00
|
|
|
if (!/^(www|http)|\/\s*$/i.test(url) && aTriggeringEvent) {
|
2004-05-30 15:51:02 +00:00
|
|
|
var suffix = null;
|
2005-02-06 19:53:10 +00:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
var accelPressed = 'metaKey' in aTriggeringEvent &&
|
|
|
|
aTriggeringEvent.metaKey;
|
|
|
|
#else
|
|
|
|
var accelPressed = 'ctrlKey' in aTriggeringEvent &&
|
|
|
|
aTriggeringEvent.ctrlKey;
|
|
|
|
#endif
|
|
|
|
var shiftPressed = 'shiftKey' in aTriggeringEvent &&
|
|
|
|
aTriggeringEvent.shiftKey;
|
2004-05-30 15:51:02 +00:00
|
|
|
|
2005-02-06 19:53:10 +00:00
|
|
|
if (accelPressed && shiftPressed)
|
2004-05-30 15:51:02 +00:00
|
|
|
suffix = ".org/";
|
|
|
|
|
2005-02-06 19:53:10 +00:00
|
|
|
else if (accelPressed)
|
2004-12-01 16:42:28 +00:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
suffix = gPrefService.getCharPref("browser.fixup.alternate.suffix");
|
|
|
|
if (suffix.charAt(suffix.length - 1) != '/')
|
|
|
|
suffix += "/";
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
suffix = ".com/";
|
|
|
|
}
|
|
|
|
}
|
2004-05-30 15:51:02 +00:00
|
|
|
|
2005-02-06 19:53:10 +00:00
|
|
|
else if (shiftPressed)
|
2004-05-30 15:51:02 +00:00
|
|
|
suffix = ".net/";
|
|
|
|
|
|
|
|
if (suffix != null) {
|
|
|
|
// trim leading/trailing spaces (bug 233205)
|
|
|
|
url = url.replace( /^\s+/, "");
|
|
|
|
url = url.replace( /\s+$/, "");
|
|
|
|
// Tack www. and suffix on.
|
|
|
|
url = "http://www." + url + suffix;
|
|
|
|
}
|
2004-03-05 10:53:16 +00:00
|
|
|
}
|
2002-11-08 01:24:37 +00:00
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
gURLBar.value = getShortcutOrURI(url, aPostDataRef);
|
2002-11-08 01:18:39 +00:00
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function UpdatePageProxyState()
|
|
|
|
{
|
2002-09-29 01:23:02 +00:00
|
|
|
if (gURLBar && gURLBar.value != gLastValidURLStr)
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("invalid");
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2005-04-20 22:01:34 +00:00
|
|
|
function SetPageProxyState(aState)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2002-08-07 07:48:17 +00:00
|
|
|
if (!gURLBar)
|
|
|
|
return;
|
2002-09-29 01:23:02 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
if (!gProxyButton)
|
|
|
|
gProxyButton = document.getElementById("page-proxy-button");
|
|
|
|
if (!gProxyFavIcon)
|
|
|
|
gProxyFavIcon = document.getElementById("page-proxy-favicon");
|
|
|
|
if (!gProxyDeck)
|
|
|
|
gProxyDeck = document.getElementById("page-proxy-deck");
|
|
|
|
|
|
|
|
gProxyButton.setAttribute("pageproxystate", aState);
|
|
|
|
|
2004-07-29 23:49:31 +00:00
|
|
|
// the page proxy state is set to valid via OnLocationChange, which
|
2005-06-14 08:04:09 +00:00
|
|
|
// gets called when we switch tabs.
|
2002-08-04 02:53:09 +00:00
|
|
|
if (aState == "valid") {
|
|
|
|
gLastValidURLStr = gURLBar.value;
|
|
|
|
gURLBar.addEventListener("input", UpdatePageProxyState, false);
|
2004-07-29 23:49:31 +00:00
|
|
|
|
2005-06-14 08:04:09 +00:00
|
|
|
PageProxySetIcon(gBrowser.mCurrentBrowser.mIconURL);
|
2002-08-04 02:53:09 +00:00
|
|
|
} else if (aState == "invalid") {
|
|
|
|
gURLBar.removeEventListener("input", UpdatePageProxyState, false);
|
2004-11-30 08:23:02 +00:00
|
|
|
PageProxyClearIcon();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function PageProxySetIcon (aURL)
|
|
|
|
{
|
|
|
|
if (!gProxyFavIcon)
|
|
|
|
return;
|
|
|
|
|
2005-06-14 08:04:09 +00:00
|
|
|
if (!aURL)
|
|
|
|
PageProxyClearIcon();
|
|
|
|
else if (gProxyFavIcon.getAttribute("src") != aURL)
|
2004-11-30 08:23:02 +00:00
|
|
|
gProxyFavIcon.setAttribute("src", aURL);
|
|
|
|
else if (gProxyDeck.selectedIndex != 1)
|
|
|
|
gProxyDeck.selectedIndex = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function PageProxyClearIcon ()
|
|
|
|
{
|
|
|
|
if (gProxyDeck.selectedIndex != 0)
|
2002-08-04 02:53:09 +00:00
|
|
|
gProxyDeck.selectedIndex = 0;
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gProxyFavIcon.hasAttribute("src"))
|
2004-07-29 23:49:31 +00:00
|
|
|
gProxyFavIcon.removeAttribute("src");
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function PageProxyDragGesture(aEvent)
|
|
|
|
{
|
|
|
|
if (gProxyButton.getAttribute("pageproxystate") == "valid") {
|
|
|
|
nsDragAndDrop.startDrag(aEvent, proxyIconDNDObserver);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-30 19:48:58 +00:00
|
|
|
function PageProxyClickHandler(aEvent)
|
|
|
|
{
|
|
|
|
switch (aEvent.button) {
|
|
|
|
case 0:
|
|
|
|
gURLBar.select();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (gPrefService.getBoolPref("middlemouse.paste"))
|
|
|
|
middleMousePaste(aEvent);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-02-17 07:09:45 +00:00
|
|
|
function URLBarOnDrop(evt)
|
|
|
|
{
|
|
|
|
nsDragAndDrop.drop(evt, urlbarObserver);
|
|
|
|
}
|
|
|
|
|
|
|
|
var urlbarObserver = {
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
// The URL bar automatically handles inputs with newline characters,
|
2004-02-17 07:09:45 +00:00
|
|
|
// so we can get away with treating text/x-moz-url flavours as text/unicode.
|
2005-03-17 17:40:55 +00:00
|
|
|
if (url) {
|
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
|
|
|
|
2005-08-25 05:17:33 +00:00
|
|
|
try {
|
|
|
|
gURLBar.value = url;
|
|
|
|
var uri = makeURI(gURLBar.value);
|
|
|
|
const secMan = Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIScriptSecurityManager);
|
|
|
|
const nsIScriptSecMan = Components.interfaces.nsIScriptSecurityManager;
|
|
|
|
secMan.checkLoadURI(gBrowser.currentURI, uri, nsIScriptSecMan.DISALLOW_SCRIPT_OR_DATA);
|
|
|
|
handleURLBarCommand();
|
|
|
|
} catch (ex) {}
|
2004-02-17 07:09:45 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
|
|
|
|
// Plain text drops are often misidentified as "text/x-moz-url", so favor plain text.
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
2005-06-14 10:15:58 +00:00
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
2004-02-17 07:09:45 +00:00
|
|
|
return flavourSet;
|
2004-02-20 00:56:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function updateToolbarStates(toolbarMenuElt)
|
|
|
|
{
|
|
|
|
if (!gHaveUpdatedToolbarState) {
|
|
|
|
var mainWindow = document.getElementById("main-window");
|
|
|
|
if (mainWindow.hasAttribute("chromehidden")) {
|
|
|
|
gHaveUpdatedToolbarState = true;
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < toolbarMenuElt.childNodes.length; ++i)
|
|
|
|
document.getElementById(toolbarMenuElt.childNodes[i].getAttribute("observes")).removeAttribute("checked");
|
|
|
|
var toolbars = document.getElementsByTagName("toolbar");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-20 08:03:51 +00:00
|
|
|
// Start i at 1, since we skip the menubar.
|
|
|
|
for (i = 1; i < toolbars.length; ++i) {
|
2002-08-04 02:53:09 +00:00
|
|
|
if (toolbars[i].getAttribute("class").indexOf("chromeclass") != -1)
|
2003-12-05 05:55:54 +00:00
|
|
|
toolbars[i].setAttribute("collapsed", "true");
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
var statusbars = document.getElementsByTagName("statusbar");
|
2002-10-20 08:03:51 +00:00
|
|
|
for (i = 1; i < statusbars.length; ++i) {
|
2002-08-04 02:53:09 +00:00
|
|
|
if (statusbars[i].getAttribute("class").indexOf("chromeclass") != -1)
|
2003-12-05 05:55:54 +00:00
|
|
|
statusbars[i].setAttribute("collapsed", "true");
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
mainWindow.removeAttribute("chromehidden");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-15 01:49:37 +00:00
|
|
|
function BrowserImport()
|
|
|
|
{
|
2004-03-03 21:26:48 +00:00
|
|
|
#ifdef XP_MACOSX
|
2005-09-28 04:20:07 +00:00
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
|
|
|
var win = wm.getMostRecentWindow("Browser:MigrationWizard");
|
|
|
|
if (win)
|
|
|
|
win.focus();
|
|
|
|
else {
|
|
|
|
window.openDialog("chrome://browser/content/migration/migration.xul",
|
|
|
|
"migration", "centerscreen,chrome,resizable=no");
|
|
|
|
}
|
2004-03-03 21:26:48 +00:00
|
|
|
#else
|
2005-09-28 04:20:07 +00:00
|
|
|
window.openDialog("chrome://browser/content/migration/migration.xul",
|
|
|
|
"migration", "modal,centerscreen,chrome,resizable=no");
|
2004-03-03 21:26:48 +00:00
|
|
|
#endif
|
2004-02-15 01:49:37 +00:00
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
function BrowserFullScreen()
|
|
|
|
{
|
|
|
|
window.fullScreen = !window.fullScreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onFullScreen()
|
|
|
|
{
|
|
|
|
FullScreen.toggle();
|
|
|
|
}
|
|
|
|
|
|
|
|
function getWebNavigation()
|
|
|
|
{
|
|
|
|
try {
|
2002-11-16 17:14:12 +00:00
|
|
|
return gBrowser.webNavigation;
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserReloadWithFlags(reloadFlags)
|
|
|
|
{
|
2005-06-14 10:15:58 +00:00
|
|
|
/* First, we'll try to use the session history object to reload so
|
|
|
|
* that framesets are handled properly. If we're in a special
|
|
|
|
* window (such as view-source) that has no session history, fall
|
2002-08-04 02:53:09 +00:00
|
|
|
* back on using the web navigation's reload method.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var webNav = getWebNavigation();
|
|
|
|
try {
|
|
|
|
var sh = webNav.sessionHistory;
|
|
|
|
if (sh)
|
2002-11-16 17:14:12 +00:00
|
|
|
webNav = sh.QueryInterface(nsIWebNavigation);
|
2002-08-04 02:53:09 +00:00
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
webNav.reload(reloadFlags);
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleAffectedChrome(aHide)
|
|
|
|
{
|
|
|
|
// chrome to toggle includes:
|
|
|
|
// (*) menubar
|
|
|
|
// (*) navigation bar
|
2002-10-19 20:05:43 +00:00
|
|
|
// (*) bookmarks toolbar
|
2005-04-23 16:37:20 +00:00
|
|
|
// (*) browser messages
|
2002-10-19 20:05:43 +00:00
|
|
|
// (*) sidebar
|
2004-11-30 08:23:02 +00:00
|
|
|
// (*) find bar
|
2004-10-01 23:46:17 +00:00
|
|
|
// (*) statusbar
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
var navToolbox = document.getElementById("navigator-toolbox");
|
|
|
|
navToolbox.hidden = aHide;
|
|
|
|
if (aHide)
|
|
|
|
{
|
2003-10-29 08:01:27 +00:00
|
|
|
gChromeState = {};
|
2002-10-19 20:05:43 +00:00
|
|
|
var sidebar = document.getElementById("sidebar-box");
|
|
|
|
gChromeState.sidebarOpen = !sidebar.hidden;
|
2004-11-30 08:23:02 +00:00
|
|
|
gSidebarCommand = sidebar.getAttribute("sidebarcommand");
|
2005-04-23 16:37:20 +00:00
|
|
|
|
|
|
|
var message = gBrowser.getMessageForBrowser(gBrowser.selectedBrowser, "top");
|
|
|
|
gChromeState.messageOpen = !message.hidden;
|
|
|
|
message.hidden = aHide;
|
|
|
|
|
|
|
|
var statusbar = document.getElementById("status-bar");
|
|
|
|
gChromeState.statusbarOpen = !statusbar.hidden;
|
|
|
|
statusbar.hidden = aHide;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var findBar = document.getElementById("FindToolbar");
|
|
|
|
gChromeState.findOpen = !findBar.hidden;
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.closeFindBar();
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
else {
|
2005-04-23 16:37:20 +00:00
|
|
|
if (gChromeState.messageOpen) {
|
|
|
|
var message = gBrowser.getMessageForBrowser(gBrowser.selectedBrowser, "top");
|
|
|
|
message.hidden = aHide;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gChromeState.statusbarOpen) {
|
|
|
|
var statusbar = document.getElementById("status-bar");
|
|
|
|
statusbar.hidden = aHide;
|
|
|
|
}
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gChromeState.findOpen)
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.openFindBar();
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-10-29 08:01:27 +00:00
|
|
|
if (gChromeState.sidebarOpen)
|
2004-11-30 08:23:02 +00:00
|
|
|
toggleSidebar(gSidebarCommand);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2003-10-29 08:01:27 +00:00
|
|
|
function onEnterPrintPreview()
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
toggleAffectedChrome(true);
|
|
|
|
}
|
|
|
|
|
2003-10-29 08:01:27 +00:00
|
|
|
function onExitPrintPreview()
|
|
|
|
{
|
2002-08-04 02:53:09 +00:00
|
|
|
// restore chrome to original state
|
|
|
|
toggleAffectedChrome(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getMarkupDocumentViewer()
|
|
|
|
{
|
2002-11-16 17:14:12 +00:00
|
|
|
return gBrowser.markupDocumentViewer;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content area tooltip.
|
|
|
|
* XXX - this must move into XBL binding/equiv! Do not want to pollute
|
2002-09-18 20:00:30 +00:00
|
|
|
* browser.js with functionality that can be encapsulated into
|
2002-08-04 02:53:09 +00:00
|
|
|
* browser widget. TEMPORARY!
|
|
|
|
*
|
|
|
|
* NOTE: Any changes to this routine need to be mirrored in ChromeListener::FindTitleText()
|
|
|
|
* (located in mozilla/embedding/browser/webBrowser/nsDocShellTreeOwner.cpp)
|
|
|
|
* which performs the same function, but for embedded clients that
|
|
|
|
* don't use a XUL/JS layer. It is important that the logic of
|
|
|
|
* these two routines be kept more or less in sync.
|
|
|
|
* (pinkerton)
|
|
|
|
**/
|
|
|
|
function FillInHTMLTooltip(tipElement)
|
|
|
|
{
|
|
|
|
var retVal = false;
|
|
|
|
if (tipElement.namespaceURI == "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul")
|
|
|
|
return retVal;
|
|
|
|
|
|
|
|
const XLinkNS = "http://www.w3.org/1999/xlink";
|
|
|
|
|
|
|
|
|
|
|
|
var titleText = null;
|
|
|
|
var XLinkTitleText = null;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
while (!titleText && !XLinkTitleText && tipElement) {
|
|
|
|
if (tipElement.nodeType == Node.ELEMENT_NODE) {
|
|
|
|
titleText = tipElement.getAttribute("title");
|
|
|
|
XLinkTitleText = tipElement.getAttributeNS(XLinkNS, "title");
|
|
|
|
}
|
|
|
|
tipElement = tipElement.parentNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
var texts = [titleText, XLinkTitleText];
|
|
|
|
var tipNode = document.getElementById("aHTMLTooltip");
|
|
|
|
|
|
|
|
for (var i = 0; i < texts.length; ++i) {
|
|
|
|
var t = texts[i];
|
|
|
|
if (t && t.search(/\S/) >= 0) {
|
|
|
|
tipNode.setAttribute("label", t);
|
|
|
|
retVal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
var proxyIconDNDObserver = {
|
|
|
|
onDragStart: function (aEvent, aXferData, aDragAction)
|
|
|
|
{
|
2002-10-13 22:50:26 +00:00
|
|
|
var value = gURLBar.value;
|
2002-08-04 02:53:09 +00:00
|
|
|
// XXX - do we want to allow the user to set a blank page to their homepage?
|
|
|
|
// if so then we want to modify this a little to set about:blank as
|
|
|
|
// the homepage in the event of an empty urlbar.
|
2002-10-13 22:50:26 +00:00
|
|
|
if (!value) return;
|
2002-08-04 02:53:09 +00:00
|
|
|
|
2005-01-28 16:06:56 +00:00
|
|
|
var urlString = value + "\n" + window.content.document.title;
|
2002-10-13 22:50:26 +00:00
|
|
|
var htmlString = "<a href=\"" + value + "\">" + value + "</a>";
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
aXferData.data = new TransferData();
|
|
|
|
aXferData.data.addDataForFlavour("text/x-moz-url", urlString);
|
2002-10-13 22:50:26 +00:00
|
|
|
aXferData.data.addDataForFlavour("text/unicode", value);
|
2002-08-04 02:53:09 +00:00
|
|
|
aXferData.data.addDataForFlavour("text/html", htmlString);
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
// we're copying the URL from the proxy icon, not moving
|
|
|
|
// we specify all of them though, because d&d sucks and OS's
|
|
|
|
// get confused if they don't get the one they want
|
|
|
|
aDragAction.action =
|
|
|
|
Components.interfaces.nsIDragService.DRAGDROP_ACTION_COPY |
|
|
|
|
Components.interfaces.nsIDragService.DRAGDROP_ACTION_MOVE |
|
|
|
|
Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var homeButtonObserver = {
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
|
|
|
setTimeout(openHomeDialog, 0, url);
|
|
|
|
},
|
|
|
|
|
|
|
|
onDragOver: function (aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("droponhomebutton");
|
|
|
|
aDragSession.dragAction = Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
|
|
|
|
},
|
|
|
|
|
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
|
|
|
},
|
|
|
|
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function openHomeDialog(aURL)
|
|
|
|
{
|
|
|
|
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
|
|
|
|
var promptTitle = gNavigatorBundle.getString("droponhometitle");
|
|
|
|
var promptMsg = gNavigatorBundle.getString("droponhomemsg");
|
2002-10-29 19:55:04 +00:00
|
|
|
var pressedVal = promptService.confirmEx(window, promptTitle, promptMsg,
|
2003-08-06 14:54:47 +00:00
|
|
|
(promptService.BUTTON_TITLE_YES * promptService.BUTTON_POS_0) +
|
|
|
|
(promptService.BUTTON_TITLE_NO * promptService.BUTTON_POS_1),
|
|
|
|
null, null, null, null, {value:0});
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
if (pressedVal == 0) {
|
2002-10-29 19:55:04 +00:00
|
|
|
try {
|
|
|
|
var str = Components.classes["@mozilla.org/supports-string;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISupportsString);
|
|
|
|
str.data = aURL;
|
|
|
|
gPrefService.setComplexValue("browser.startup.homepage",
|
2002-11-16 17:14:12 +00:00
|
|
|
Components.interfaces.nsISupportsString, str);
|
|
|
|
var homeButton = document.getElementById("home-button");
|
|
|
|
homeButton.setAttribute("tooltiptext", aURL);
|
2002-10-29 19:55:04 +00:00
|
|
|
} catch (ex) {
|
|
|
|
dump("Failed to set the home page.\n"+ex+"\n");
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-26 14:05:15 +00:00
|
|
|
var bookmarksButtonObserver = {
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var split = aXferData.data.split("\n");
|
|
|
|
var url = split[0];
|
|
|
|
if (url != aXferData.data) { //do nothing if it's not a valid URL
|
2005-02-17 00:17:12 +00:00
|
|
|
var dialogArgs = {
|
|
|
|
name: split[1],
|
|
|
|
url: url
|
|
|
|
}
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2004-08-26 14:05:15 +00:00
|
|
|
openDialog("chrome://browser/content/bookmarks/addBookmark2.xul", "",
|
2005-04-21 09:29:59 +00:00
|
|
|
BROWSER_ADD_BM_FEATURES, dialogArgs);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME");
|
|
|
|
#endif
|
2004-08-26 14:05:15 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onDragOver: function (aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("droponbookmarksbutton");
|
|
|
|
aDragSession.dragAction = Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
|
|
|
|
},
|
|
|
|
|
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
|
|
|
},
|
|
|
|
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:43:43 +00:00
|
|
|
var newTabButtonObserver = {
|
|
|
|
onDragOver: function(aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("droponnewtabbutton");
|
|
|
|
aEvent.target.setAttribute("dragover", "true");
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
|
|
|
aEvent.target.removeAttribute("dragover");
|
|
|
|
},
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var xferData = aXferData.data.split("\n");
|
2005-12-01 00:45:23 +00:00
|
|
|
var draggedText = xferData[0] || xferData[1];
|
|
|
|
var postData = {};
|
|
|
|
var url = getShortcutOrURI(draggedText, postData);
|
2005-09-29 01:47:43 +00:00
|
|
|
if (url) {
|
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
2005-12-01 00:45:23 +00:00
|
|
|
openNewTabWith(url, null, postData.value, aEvent);
|
2005-09-29 01:47:43 +00:00
|
|
|
}
|
2005-06-07 19:43:43 +00:00
|
|
|
},
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var newWindowButtonObserver = {
|
|
|
|
onDragOver: function(aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("droponnewwindowbutton");
|
|
|
|
aEvent.target.setAttribute("dragover", "true");
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
|
|
|
aEvent.target.removeAttribute("dragover");
|
|
|
|
},
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var xferData = aXferData.data.split("\n");
|
2005-12-01 00:45:23 +00:00
|
|
|
var draggedText = xferData[0] || xferData[1];
|
|
|
|
var postData = {};
|
|
|
|
var url = getShortcutOrURI(draggedText, postData);
|
2005-09-29 01:47:43 +00:00
|
|
|
if (url) {
|
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
2005-12-01 00:45:23 +00:00
|
|
|
openNewWindowWith(url, null, postData.value);
|
2005-09-29 01:47:43 +00:00
|
|
|
}
|
2005-06-07 19:43:43 +00:00
|
|
|
},
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
var goButtonObserver = {
|
|
|
|
onDragOver: function(aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
2004-08-15 13:15:35 +00:00
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("dropongobutton");
|
2002-08-04 02:53:09 +00:00
|
|
|
aEvent.target.setAttribute("dragover", "true");
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
2004-08-15 13:15:35 +00:00
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
2002-08-04 02:53:09 +00:00
|
|
|
aEvent.target.removeAttribute("dragover");
|
|
|
|
},
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var xferData = aXferData.data.split("\n");
|
2005-12-01 00:45:23 +00:00
|
|
|
var draggedText = xferData[0] || xferData[1];
|
|
|
|
var postData = {};
|
|
|
|
var url = getShortcutOrURI(draggedText, postData);
|
2005-08-25 05:17:33 +00:00
|
|
|
try {
|
2005-10-11 21:20:41 +00:00
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
2005-08-25 05:17:33 +00:00
|
|
|
var uri = makeURI(url);
|
|
|
|
const secMan = Components.classes["@mozilla.org/scriptsecuritymanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIScriptSecurityManager);
|
|
|
|
const nsIScriptSecMan = Components.interfaces.nsIScriptSecurityManager;
|
|
|
|
secMan.checkLoadURI(gBrowser.currentURI, uri, nsIScriptSecMan.DISALLOW_SCRIPT_OR_DATA);
|
2005-12-01 00:45:23 +00:00
|
|
|
loadURI(uri.spec, null, postData.value);
|
2005-08-25 05:17:33 +00:00
|
|
|
} catch (ex) {}
|
2002-08-04 02:53:09 +00:00
|
|
|
},
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
2005-06-07 19:43:43 +00:00
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
2002-08-04 02:53:09 +00:00
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-01 06:33:00 +00:00
|
|
|
var DownloadsButtonDNDObserver = {
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsDragAndDrop
|
|
|
|
onDragOver: function (aEvent, aFlavour, aDragSession)
|
|
|
|
{
|
2004-08-15 13:15:35 +00:00
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = gNavigatorBundle.getString("dropondownloadsbutton");
|
2005-06-14 10:15:58 +00:00
|
|
|
aDragSession.canDrop = (aFlavour.contentType == "text/x-moz-url" ||
|
2003-12-01 06:33:00 +00:00
|
|
|
aFlavour.contentType == "text/unicode");
|
|
|
|
},
|
|
|
|
|
2004-08-15 13:15:35 +00:00
|
|
|
onDragExit: function (aEvent, aDragSession)
|
|
|
|
{
|
|
|
|
var statusTextFld = document.getElementById("statusbar-display");
|
|
|
|
statusTextFld.label = "";
|
|
|
|
},
|
|
|
|
|
2003-12-01 06:33:00 +00:00
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var split = aXferData.data.split("\n");
|
|
|
|
var url = split[0];
|
|
|
|
if (url != aXferData.data) { //do nothing, not a valid URL
|
2005-03-17 17:40:55 +00:00
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
|
|
|
|
2003-12-01 06:33:00 +00:00
|
|
|
var name = split[1];
|
|
|
|
saveURL(url, name, null, true, true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-09 00:18:02 +00:00
|
|
|
function WebSearch()
|
2002-09-20 21:56:57 +00:00
|
|
|
{
|
2005-06-09 00:18:02 +00:00
|
|
|
#ifdef XP_MACOSX
|
2005-08-27 02:19:09 +00:00
|
|
|
if (window.location.href != getBrowserURL()) {
|
2005-06-09 00:18:02 +00:00
|
|
|
var win = getTopWin();
|
|
|
|
if (win) {
|
|
|
|
// If there's an open browser window, it should handle this command
|
|
|
|
win.focus()
|
|
|
|
win.WebSearch();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// If there are no open browser windows, open a new one
|
2005-06-10 22:49:20 +00:00
|
|
|
win = window.openDialog("chrome://browser/content/", "_blank",
|
|
|
|
"chrome,all,dialog=no", "about:blank");
|
2005-06-09 00:18:02 +00:00
|
|
|
win.addEventListener("load", WebSearchCallback, false);
|
|
|
|
}
|
2005-08-27 02:19:09 +00:00
|
|
|
return;
|
2005-06-09 00:18:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-08-27 02:19:09 +00:00
|
|
|
var searchBar = document.getElementById("searchbar");
|
|
|
|
if (searchBar && !searchBar.parentNode.parentNode.collapsed &&
|
|
|
|
!(window.getComputedStyle(searchBar.parentNode, null).display == "none")) {
|
|
|
|
searchBar.select();
|
|
|
|
searchBar.focus();
|
|
|
|
} else {
|
|
|
|
openDialog("chrome://browser/content/searchDialog.xul", "",
|
|
|
|
"chrome,dialog,resizable,modal");
|
|
|
|
}
|
2005-06-09 00:18:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function WebSearchCallback() {
|
|
|
|
// make sure the DOM is ready
|
|
|
|
setTimeout(function() { this.WebSearch(); }, 0);
|
2002-09-20 21:56:57 +00:00
|
|
|
}
|
|
|
|
|
2003-07-19 13:11:28 +00:00
|
|
|
function OpenSearch(tabName, searchStr, newTabFlag)
|
2002-09-20 21:56:57 +00:00
|
|
|
{
|
|
|
|
//This function needs to be split up someday.
|
2003-07-19 13:11:28 +00:00
|
|
|
//XXXnoririty I don't want any prefs switching open by tabs to window
|
2003-10-22 08:45:54 +00:00
|
|
|
//XXXpch: this routine needs to be cleaned up.
|
2002-09-20 21:56:57 +00:00
|
|
|
|
|
|
|
var defaultSearchURL = null;
|
|
|
|
var navigatorRegionBundle = document.getElementById("bundle_browser_region");
|
|
|
|
var fallbackDefaultSearchURL = navigatorRegionBundle.getString("fallbackDefaultSearchURL");
|
2003-10-22 08:45:54 +00:00
|
|
|
|
2002-09-20 21:56:57 +00:00
|
|
|
//Check to see if search string contains "://" or "ftp." or white space.
|
|
|
|
//If it does treat as url and match for pattern
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
var urlmatch= /(:\/\/|^ftp\.)[^ \S]+$/
|
2002-09-20 21:56:57 +00:00
|
|
|
var forceAsURL = urlmatch.test(searchStr);
|
|
|
|
|
|
|
|
try {
|
2002-10-13 16:28:34 +00:00
|
|
|
defaultSearchURL = gPrefService.getComplexValue("browser.search.defaulturl",
|
2002-09-20 21:56:57 +00:00
|
|
|
Components.interfaces.nsIPrefLocalizedString).data;
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback to a default url (one that we can get sidebar search results for)
|
|
|
|
if (!defaultSearchURL)
|
|
|
|
defaultSearchURL = fallbackDefaultSearchURL;
|
|
|
|
|
|
|
|
if (!searchStr) {
|
|
|
|
BrowserSearchInternet();
|
|
|
|
} else {
|
|
|
|
|
|
|
|
//Check to see if location bar field is a url
|
|
|
|
//If it is a url go to URL. A Url is "://" or "." as commented above
|
|
|
|
//Otherwise search on entry
|
|
|
|
if (forceAsURL) {
|
2004-04-20 09:45:12 +00:00
|
|
|
BrowserLoadURL(null, null)
|
2002-09-20 21:56:57 +00:00
|
|
|
} else {
|
2002-11-16 17:14:12 +00:00
|
|
|
if (searchStr) {
|
2003-12-03 21:41:37 +00:00
|
|
|
var escapedSearchStr = encodeURIComponent(searchStr);
|
2002-11-16 17:14:12 +00:00
|
|
|
defaultSearchURL += escapedSearchStr;
|
|
|
|
var searchDS = Components.classes["@mozilla.org/rdf/datasource;1?name=internetsearch"]
|
|
|
|
.getService(Components.interfaces.nsIInternetSearchService);
|
2002-09-20 21:56:57 +00:00
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
searchDS.RememberLastSearchText(escapedSearchStr);
|
|
|
|
try {
|
|
|
|
var searchEngineURI = gPrefService.getCharPref("browser.search.defaultengine");
|
2005-06-14 10:15:58 +00:00
|
|
|
if (searchEngineURI) {
|
2002-11-16 17:14:12 +00:00
|
|
|
var searchURL = getSearchUrl("actionButton");
|
|
|
|
if (searchURL) {
|
2005-06-14 10:15:58 +00:00
|
|
|
defaultSearchURL = searchURL + escapedSearchStr;
|
2002-11-16 17:14:12 +00:00
|
|
|
} else {
|
|
|
|
searchURL = searchDS.GetInternetSearchURL(searchEngineURI, escapedSearchStr, 0, 0, {value:0});
|
|
|
|
if (searchURL)
|
|
|
|
defaultSearchURL = searchURL;
|
2002-09-20 21:56:57 +00:00
|
|
|
}
|
|
|
|
}
|
2002-11-16 17:14:12 +00:00
|
|
|
} catch (ex) {
|
2002-09-20 21:56:57 +00:00
|
|
|
}
|
2002-11-16 17:14:12 +00:00
|
|
|
|
2003-07-19 13:11:28 +00:00
|
|
|
if (!newTabFlag) {
|
2004-04-20 09:45:12 +00:00
|
|
|
loadURI(defaultSearchURL, null, null);
|
2003-07-19 13:11:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2005-08-06 04:20:13 +00:00
|
|
|
getBrowser().loadOneTab(defaultSearchURL);
|
2003-07-19 13:11:28 +00:00
|
|
|
}
|
2002-09-20 21:56:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-01 21:36:53 +00:00
|
|
|
function FillHistoryMenu(aParent, aMenu, aInsertBefore)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
// Remove old entries if any
|
|
|
|
deleteHistoryItems(aParent);
|
|
|
|
|
|
|
|
var sessionHistory = getWebNavigation().sessionHistory;
|
|
|
|
|
|
|
|
var count = sessionHistory.count;
|
|
|
|
var index = sessionHistory.index;
|
|
|
|
var end;
|
|
|
|
var j;
|
|
|
|
var entry;
|
|
|
|
|
|
|
|
switch (aMenu)
|
|
|
|
{
|
|
|
|
case "back":
|
|
|
|
end = (index > MAX_HISTORY_MENU_ITEMS) ? index - MAX_HISTORY_MENU_ITEMS : 0;
|
|
|
|
if ((index - 1) < end) return false;
|
|
|
|
for (j = index - 1; j >= end; j--)
|
|
|
|
{
|
|
|
|
entry = sessionHistory.getEntryAtIndex(j, false);
|
|
|
|
if (entry)
|
|
|
|
createMenuItem(aParent, j, entry.title);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "forward":
|
2005-07-07 19:30:09 +00:00
|
|
|
end = ((count-index) > MAX_HISTORY_MENU_ITEMS) ? index + MAX_HISTORY_MENU_ITEMS : count - 1;
|
|
|
|
if ((index + 1) > end) return false;
|
2005-04-26 16:37:28 +00:00
|
|
|
for (j = index + 1; j <= end; j++)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
entry = sessionHistory.getEntryAtIndex(j, false);
|
|
|
|
if (entry)
|
|
|
|
createMenuItem(aParent, j, entry.title);
|
|
|
|
}
|
|
|
|
break;
|
2006-03-01 21:36:53 +00:00
|
|
|
case "history":
|
|
|
|
aInsertBefore.hidden = (count == 0);
|
2002-08-04 02:53:09 +00:00
|
|
|
end = count > MAX_HISTORY_MENU_ITEMS ? count - MAX_HISTORY_MENU_ITEMS : 0;
|
|
|
|
for (j = count - 1; j >= end; j--)
|
|
|
|
{
|
|
|
|
entry = sessionHistory.getEntryAtIndex(j, false);
|
|
|
|
if (entry)
|
2006-03-01 21:36:53 +00:00
|
|
|
createRadioMenuItem(aParent,
|
|
|
|
j,
|
|
|
|
entry.title,
|
|
|
|
entry.URI ? entry.URI.spec : null,
|
|
|
|
j==index,
|
|
|
|
aInsertBefore);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-07-05 23:08:30 +00:00
|
|
|
function addToUrlbarHistory(aUrlToAdd)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-07-05 23:08:30 +00:00
|
|
|
if (!aUrlToAdd)
|
2002-08-04 02:53:09 +00:00
|
|
|
return;
|
2005-07-05 23:08:30 +00:00
|
|
|
if (aUrlToAdd.search(/[\x00-\x1F]/) != -1) // don't store bad URLs
|
2002-08-04 02:53:09 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!gGlobalHistory)
|
2004-02-11 02:10:04 +00:00
|
|
|
gGlobalHistory = Components.classes["@mozilla.org/browser/global-history;2"]
|
2002-08-04 02:53:09 +00:00
|
|
|
.getService(Components.interfaces.nsIBrowserHistory);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-04 02:53:09 +00:00
|
|
|
if (!gURIFixup)
|
|
|
|
gURIFixup = Components.classes["@mozilla.org/docshell/urifixup;1"]
|
|
|
|
.getService(Components.interfaces.nsIURIFixup);
|
2002-11-16 17:14:12 +00:00
|
|
|
try {
|
2005-07-05 23:08:30 +00:00
|
|
|
if (aUrlToAdd.indexOf(" ") == -1) {
|
|
|
|
var fixedUpURI = gURIFixup.createFixupURI(aUrlToAdd, 0);
|
2004-08-09 21:17:12 +00:00
|
|
|
gGlobalHistory.markPageAsTyped(fixedUpURI);
|
2002-11-16 17:14:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function createMenuItem( aParent, aIndex, aLabel)
|
|
|
|
{
|
|
|
|
var menuitem = document.createElement( "menuitem" );
|
|
|
|
menuitem.setAttribute( "label", aLabel );
|
|
|
|
menuitem.setAttribute( "index", aIndex );
|
|
|
|
aParent.appendChild( menuitem );
|
|
|
|
}
|
|
|
|
|
2006-03-01 21:36:53 +00:00
|
|
|
function createRadioMenuItem( aParent, aIndex, aLabel, aStatusText, aChecked, aInsertBefore)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
var menuitem = document.createElement( "menuitem" );
|
|
|
|
menuitem.setAttribute( "type", "radio" );
|
|
|
|
menuitem.setAttribute( "label", aLabel );
|
|
|
|
menuitem.setAttribute( "index", aIndex );
|
2006-03-01 21:36:53 +00:00
|
|
|
menuitem.setAttribute( "statustext", aStatusText );
|
2002-08-04 02:53:09 +00:00
|
|
|
if (aChecked==true)
|
|
|
|
menuitem.setAttribute( "checked", "true" );
|
2006-03-01 21:36:53 +00:00
|
|
|
if (aInsertBefore)
|
|
|
|
aParent.insertBefore( menuitem, aInsertBefore );
|
|
|
|
else
|
|
|
|
aParent.appendChild( menuitem );
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function deleteHistoryItems(aParent)
|
2002-11-16 17:14:12 +00:00
|
|
|
{
|
|
|
|
var children = aParent.childNodes;
|
2005-01-14 22:57:48 +00:00
|
|
|
for (var i = children.length - 1; i >= 0; --i)
|
2002-11-16 17:14:12 +00:00
|
|
|
{
|
|
|
|
var index = children[i].getAttribute("index");
|
|
|
|
if (index)
|
|
|
|
aParent.removeChild(children[i]);
|
|
|
|
}
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
function toJavaScriptConsole()
|
|
|
|
{
|
2003-03-01 08:07:13 +00:00
|
|
|
toOpenWindowByType("global:console", "chrome://global/content/console.xul");
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2003-12-01 06:33:00 +00:00
|
|
|
function toOpenWindowByType(inType, uri, features)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
2002-10-13 23:48:03 +00:00
|
|
|
var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
|
2002-11-16 17:14:12 +00:00
|
|
|
var topWindow = windowManagerInterface.getMostRecentWindow(inType);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-01 06:33:00 +00:00
|
|
|
if (topWindow)
|
2002-08-04 02:53:09 +00:00
|
|
|
topWindow.focus();
|
2003-12-01 06:33:00 +00:00
|
|
|
else if (features)
|
|
|
|
window.open(uri, "_blank", features);
|
2002-08-04 02:53:09 +00:00
|
|
|
else
|
|
|
|
window.open(uri, "_blank", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar");
|
|
|
|
}
|
|
|
|
|
2005-04-26 16:55:59 +00:00
|
|
|
function toOpenDialogByTypeAndUrl(inType, relatedUrl, windowUri, features, extraArgument)
|
|
|
|
{
|
|
|
|
var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
|
|
|
|
var windows = windowManagerInterface.getEnumerator(inType);
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
// Check for windows matching the url
|
2005-04-26 16:55:59 +00:00
|
|
|
while (windows.hasMoreElements()) {
|
|
|
|
var currentWindow = windows.getNext();
|
2006-01-06 21:08:48 +00:00
|
|
|
if (currentWindow.document.documentElement.getAttribute("relatedUrl") == relatedUrl) {
|
2005-04-26 16:55:59 +00:00
|
|
|
currentWindow.focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We didn't find a matching window, so open a new one.
|
|
|
|
if (features)
|
|
|
|
window.openDialog(windowUri, "_blank", features, extraArgument);
|
|
|
|
else
|
|
|
|
window.openDialog(windowUri, "_blank", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar", extraArgument);
|
|
|
|
}
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
function OpenBrowserWindow()
|
|
|
|
{
|
|
|
|
var charsetArg = new String();
|
2005-01-17 18:50:18 +00:00
|
|
|
var handler = Components.classes["@mozilla.org/browser/clh;1"]
|
|
|
|
.getService(Components.interfaces.nsIBrowserHandler);
|
2005-04-05 03:17:13 +00:00
|
|
|
var defaultArgs = handler.defaultArgs;
|
2006-01-06 21:08:48 +00:00
|
|
|
var wintype = document.documentElement.getAttribute('windowtype');
|
2002-08-04 02:53:09 +00:00
|
|
|
|
|
|
|
// if and only if the current window is a browser window and it has a document with a character
|
|
|
|
// set, then extract the current charset menu setting from the current document and use it to
|
|
|
|
// initialize the new browser window...
|
2005-06-09 00:18:02 +00:00
|
|
|
var win;
|
2005-01-28 16:06:56 +00:00
|
|
|
if (window && (wintype == "navigator:browser") && window.content && window.content.document)
|
2002-08-04 02:53:09 +00:00
|
|
|
{
|
2005-01-28 16:06:56 +00:00
|
|
|
var DocCharset = window.content.document.characterSet;
|
2002-08-04 02:53:09 +00:00
|
|
|
charsetArg = "charset="+DocCharset;
|
|
|
|
|
|
|
|
//we should "inherit" the charset menu setting in a new window
|
2005-06-09 00:18:02 +00:00
|
|
|
win = window.openDialog("chrome://browser/content/", "_blank", "chrome,all,dialog=no", defaultArgs, charsetArg);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
else // forget about the charset information.
|
|
|
|
{
|
2005-06-09 00:18:02 +00:00
|
|
|
win = window.openDialog("chrome://browser/content/", "_blank", "chrome,all,dialog=no", defaultArgs);
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
2005-06-09 00:18:02 +00:00
|
|
|
|
|
|
|
return win;
|
2002-08-04 02:53:09 +00:00
|
|
|
}
|
|
|
|
|
2002-08-05 09:18:01 +00:00
|
|
|
function BrowserCustomizeToolbar()
|
|
|
|
{
|
2002-10-20 08:03:51 +00:00
|
|
|
// Disable the toolbar context menu items
|
2002-09-28 15:11:50 +00:00
|
|
|
var menubar = document.getElementById("main-menubar");
|
|
|
|
for (var i = 0; i < menubar.childNodes.length; ++i)
|
|
|
|
menubar.childNodes[i].setAttribute("disabled", true);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
var cmd = document.getElementById("cmd_CustomizeToolbars");
|
|
|
|
cmd.setAttribute("disabled", "true");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-28 15:11:50 +00:00
|
|
|
window.openDialog("chrome://global/content/customizeToolbar.xul", "CustomizeToolbar",
|
2002-09-29 01:23:02 +00:00
|
|
|
"chrome,all,dependent", document.getElementById("navigator-toolbox"));
|
2002-09-27 04:06:56 +00:00
|
|
|
}
|
|
|
|
|
2002-09-29 01:23:02 +00:00
|
|
|
function BrowserToolboxCustomizeDone(aToolboxChanged)
|
2002-09-27 04:06:56 +00:00
|
|
|
{
|
2002-09-29 01:23:02 +00:00
|
|
|
// Update global UI elements that may have been added or removed
|
|
|
|
if (aToolboxChanged) {
|
|
|
|
gURLBar = document.getElementById("urlbar");
|
2006-01-11 20:24:20 +00:00
|
|
|
if (gURLBar)
|
|
|
|
gURLBar.clickSelectsAll = gClickSelectsAll;
|
2002-09-29 01:23:02 +00:00
|
|
|
gProxyButton = document.getElementById("page-proxy-button");
|
|
|
|
gProxyFavIcon = document.getElementById("page-proxy-favicon");
|
|
|
|
gProxyDeck = document.getElementById("page-proxy-deck");
|
2003-12-16 00:37:01 +00:00
|
|
|
gHomeButton.updateTooltip();
|
2002-09-29 01:23:02 +00:00
|
|
|
window.XULBrowserWindow.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the urlbar
|
|
|
|
var url = getWebNavigation().currentURI.spec;
|
|
|
|
if (gURLBar) {
|
|
|
|
gURLBar.value = url;
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("valid");
|
2005-09-26 17:24:29 +00:00
|
|
|
FeedHandler.updateFeeds();
|
2002-09-29 01:23:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Re-enable parts of the UI we disabled during the dialog
|
2002-09-28 15:11:50 +00:00
|
|
|
var menubar = document.getElementById("main-menubar");
|
|
|
|
for (var i = 0; i < menubar.childNodes.length; ++i)
|
|
|
|
menubar.childNodes[i].setAttribute("disabled", false);
|
2002-09-27 04:06:56 +00:00
|
|
|
var cmd = document.getElementById("cmd_CustomizeToolbars");
|
|
|
|
cmd.removeAttribute("disabled");
|
|
|
|
|
2005-09-26 17:26:34 +00:00
|
|
|
// XXXmano bug 287105: wallpaper to bug 309953,
|
|
|
|
// the reload button isn't in sync with the reload command.
|
|
|
|
var reloadButton = document.getElementById("reload-button");
|
|
|
|
if (reloadButton) {
|
|
|
|
reloadButton.disabled =
|
|
|
|
document.getElementById("Browser:Reload").getAttribute("disabled") == "true";
|
|
|
|
}
|
|
|
|
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2004-07-30 06:25:41 +00:00
|
|
|
// fix up the personal toolbar folder
|
|
|
|
var bt = document.getElementById("bookmarks-ptf");
|
|
|
|
if (bt) {
|
|
|
|
var btf = BMSVC.getBookmarksToolbarFolder().Value;
|
|
|
|
var btchevron = document.getElementById("bookmarks-chevron");
|
|
|
|
bt.ref = btf;
|
|
|
|
btchevron.ref = btf;
|
|
|
|
// no uniqueness is guaranteed, so we have to remove first
|
|
|
|
try {
|
|
|
|
bt.database.RemoveObserver(BookmarksToolbarRDFObserver);
|
|
|
|
} catch (ex) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
bt.database.AddObserver(BookmarksToolbarRDFObserver);
|
|
|
|
bt.builder.rebuild();
|
|
|
|
btchevron.builder.rebuild();
|
|
|
|
|
|
|
|
// fake a resize; this function takes care of flowing bookmarks
|
|
|
|
// from the bar to the overflow item
|
|
|
|
BookmarksToolbar.resizeFunc(null);
|
|
|
|
}
|
2006-02-16 19:00:25 +00:00
|
|
|
#endif
|
2004-07-30 06:25:41 +00:00
|
|
|
|
2002-09-29 01:23:02 +00:00
|
|
|
// XXX Shouldn't have to do this, but I do
|
2002-09-28 15:11:50 +00:00
|
|
|
window.focus();
|
2002-08-05 09:18:01 +00:00
|
|
|
}
|
2002-08-08 01:55:38 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
var FullScreen =
|
2002-08-08 01:55:38 +00:00
|
|
|
{
|
|
|
|
toggle: function()
|
|
|
|
{
|
|
|
|
// show/hide all menubars, toolbars, and statusbars (except the full screen toolbar)
|
|
|
|
this.showXULChrome("toolbar", window.fullScreen);
|
|
|
|
this.showXULChrome("statusbar", window.fullScreen);
|
2005-08-20 21:38:36 +00:00
|
|
|
document.getElementById("fullScreenItem").setAttribute("checked", !window.fullScreen);
|
2002-08-08 01:55:38 +00:00
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-08 01:55:38 +00:00
|
|
|
showXULChrome: function(aTag, aShow)
|
|
|
|
{
|
|
|
|
var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
|
|
|
var els = document.getElementsByTagNameNS(XULNS, aTag);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-04-03 15:41:20 +00:00
|
|
|
var i, savedMode, savedIconSize;
|
2002-08-08 01:55:38 +00:00
|
|
|
for (i = 0; i < els.length; ++i) {
|
|
|
|
// XXX don't interfere with previously collapsed toolbars
|
|
|
|
if (els[i].getAttribute("fullscreentoolbar") == "true") {
|
2002-09-20 03:52:36 +00:00
|
|
|
if (!aShow) {
|
2004-07-30 06:25:41 +00:00
|
|
|
var toolbarMode = els[i].getAttribute("mode");
|
|
|
|
var iconSize = els[i].getAttribute("iconsize");
|
|
|
|
var contextMenu = els[i].getAttribute("context");
|
|
|
|
|
|
|
|
if (toolbarMode != "text") {
|
|
|
|
els[i].setAttribute("saved-mode", toolbarMode);
|
|
|
|
els[i].setAttribute("saved-iconsize", iconSize);
|
2003-07-05 03:36:24 +00:00
|
|
|
els[i].setAttribute("mode", "icons");
|
|
|
|
els[i].setAttribute("iconsize", "small");
|
|
|
|
}
|
2004-07-30 06:25:41 +00:00
|
|
|
|
|
|
|
// XXX See bug 202978: we disable the context menu
|
|
|
|
// to prevent customization while in fullscreen, which
|
|
|
|
// causes menu breakage.
|
|
|
|
els[i].setAttribute("saved-context", contextMenu);
|
|
|
|
els[i].removeAttribute("context");
|
2002-09-20 03:52:36 +00:00
|
|
|
}
|
|
|
|
else {
|
2004-07-30 06:25:41 +00:00
|
|
|
if (els[i].hasAttribute("saved-mode")) {
|
2005-04-03 15:41:20 +00:00
|
|
|
savedMode = els[i].getAttribute("saved-mode");
|
2004-07-30 06:25:41 +00:00
|
|
|
els[i].setAttribute("mode", savedMode);
|
|
|
|
els[i].removeAttribute("saved-mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (els[i].hasAttribute("saved-iconsize")) {
|
2005-04-03 15:41:20 +00:00
|
|
|
savedIconSize = els[i].getAttribute("saved-iconsize");
|
2004-07-30 06:25:41 +00:00
|
|
|
els[i].setAttribute("iconsize", savedIconSize);
|
|
|
|
els[i].removeAttribute("saved-iconsize");
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX see above.
|
|
|
|
if (els[i].hasAttribute("saved-context")) {
|
|
|
|
var savedContext = els[i].getAttribute("saved-context");
|
|
|
|
els[i].setAttribute("context", savedContext);
|
|
|
|
els[i].removeAttribute("saved-context");
|
|
|
|
}
|
2002-09-20 03:52:36 +00:00
|
|
|
}
|
2002-08-08 01:55:38 +00:00
|
|
|
} else {
|
|
|
|
// use moz-collapsed so it doesn't persist hidden/collapsed,
|
|
|
|
// so that new windows don't have missing toolbars
|
|
|
|
if (aShow)
|
|
|
|
els[i].removeAttribute("moz-collapsed");
|
|
|
|
else
|
|
|
|
els[i].setAttribute("moz-collapsed", "true");
|
|
|
|
}
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifndef XP_MACOSX
|
2002-08-08 01:55:38 +00:00
|
|
|
var controls = document.getElementsByAttribute("fullscreencontrol", "true");
|
|
|
|
for (i = 0; i < controls.length; ++i)
|
|
|
|
controls[i].hidden = aShow;
|
2004-11-30 08:23:02 +00:00
|
|
|
#endif
|
2004-07-30 06:25:41 +00:00
|
|
|
|
|
|
|
// XXXvladimir this was a fix for bug 174174, but I don't think it's necessary
|
|
|
|
// any more?
|
2003-07-05 03:36:24 +00:00
|
|
|
var toolbox = document.getElementById("navigator-toolbox");
|
2004-07-30 06:25:41 +00:00
|
|
|
if (!aShow) {
|
|
|
|
var toolboxMode = toolbox.getAttribute("mode");
|
|
|
|
var toolboxIconSize = toolbox.getAttribute("iconsize");
|
|
|
|
if (toolboxMode != "text") {
|
|
|
|
toolbox.setAttribute("saved-mode", toolboxMode);
|
|
|
|
toolbox.setAttribute("saved-iconsize", toolboxIconSize);
|
|
|
|
toolbox.setAttribute("mode", "icons");
|
|
|
|
toolbox.setAttribute("iconsize", "small");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (toolbox.hasAttribute("saved-mode")) {
|
2005-04-03 15:41:20 +00:00
|
|
|
savedMode = toolbox.getAttribute("saved-mode");
|
2004-07-30 06:25:41 +00:00
|
|
|
toolbox.setAttribute("mode", savedMode);
|
|
|
|
toolbox.removeAttribute("saved-mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toolbox.hasAttribute("saved-iconsize")) {
|
2005-04-03 15:41:20 +00:00
|
|
|
savedIconSize = toolbox.getAttribute("saved-iconsize");
|
2004-07-30 06:25:41 +00:00
|
|
|
toolbox.setAttribute("iconsize", savedIconSize);
|
|
|
|
toolbox.removeAttribute("saved-iconsize");
|
|
|
|
}
|
|
|
|
}
|
2003-07-05 03:36:24 +00:00
|
|
|
}
|
2002-10-18 10:05:47 +00:00
|
|
|
}
|
2002-08-08 01:55:38 +00:00
|
|
|
};
|
2002-08-09 01:41:39 +00:00
|
|
|
|
|
|
|
function nsBrowserStatusHandler()
|
|
|
|
{
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsBrowserStatusHandler.prototype =
|
|
|
|
{
|
|
|
|
// Stored Status, Link and Loading values
|
|
|
|
status : "",
|
|
|
|
defaultStatus : "",
|
|
|
|
jsStatus : "",
|
|
|
|
jsDefaultStatus : "",
|
|
|
|
overLink : "",
|
|
|
|
startTime : 0,
|
2002-10-13 02:22:40 +00:00
|
|
|
statusText: "",
|
2004-11-30 08:23:02 +00:00
|
|
|
lastURI: null,
|
2002-08-09 01:41:39 +00:00
|
|
|
|
|
|
|
statusTimeoutInEffect : false,
|
|
|
|
|
|
|
|
QueryInterface : function(aIID)
|
|
|
|
{
|
|
|
|
if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
|
|
|
|
aIID.equals(Components.interfaces.nsIXULBrowserWindow) ||
|
|
|
|
aIID.equals(Components.interfaces.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
},
|
|
|
|
|
|
|
|
init : function()
|
|
|
|
{
|
2005-02-27 17:59:38 +00:00
|
|
|
this.throbberElement = document.getElementById("navigator-throbber");
|
|
|
|
this.statusMeter = document.getElementById("statusbar-icon");
|
|
|
|
this.stopCommand = document.getElementById("Browser:Stop");
|
|
|
|
this.reloadCommand = document.getElementById("Browser:Reload");
|
|
|
|
this.reloadSkipCacheCommand = document.getElementById("Browser:ReloadSkipCache");
|
|
|
|
this.statusTextField = document.getElementById("statusbar-display");
|
|
|
|
this.securityButton = document.getElementById("security-button");
|
|
|
|
this.urlBar = document.getElementById("urlbar");
|
2005-09-18 21:31:34 +00:00
|
|
|
this.isImage = document.getElementById("isImage");
|
2002-08-09 01:41:39 +00:00
|
|
|
|
|
|
|
// Initialize the security button's state and tooltip text
|
2005-05-19 22:52:26 +00:00
|
|
|
var securityUI = getBrowser().securityUI;
|
|
|
|
this.onSecurityChange(null, null, securityUI.state);
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
destroy : function()
|
|
|
|
{
|
|
|
|
// XXXjag to avoid leaks :-/, see bug 60729
|
2005-02-27 17:59:38 +00:00
|
|
|
this.throbberElement = null;
|
|
|
|
this.statusMeter = null;
|
|
|
|
this.stopCommand = null;
|
|
|
|
this.reloadCommand = null;
|
|
|
|
this.reloadSkipCacheCommand = null;
|
|
|
|
this.statusTextField = null;
|
|
|
|
this.securityButton = null;
|
|
|
|
this.urlBar = null;
|
|
|
|
this.statusText = null;
|
|
|
|
this.lastURI = null;
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setJSStatus : function(status)
|
|
|
|
{
|
|
|
|
this.jsStatus = status;
|
|
|
|
this.updateStatusField();
|
|
|
|
},
|
|
|
|
|
|
|
|
setJSDefaultStatus : function(status)
|
|
|
|
{
|
|
|
|
this.jsDefaultStatus = status;
|
|
|
|
this.updateStatusField();
|
|
|
|
},
|
|
|
|
|
|
|
|
setDefaultStatus : function(status)
|
|
|
|
{
|
|
|
|
this.defaultStatus = status;
|
|
|
|
this.updateStatusField();
|
|
|
|
},
|
|
|
|
|
|
|
|
setOverLink : function(link, b)
|
|
|
|
{
|
|
|
|
this.overLink = link;
|
|
|
|
this.updateStatusField();
|
|
|
|
},
|
|
|
|
|
|
|
|
updateStatusField : function()
|
|
|
|
{
|
|
|
|
var text = this.overLink || this.status || this.jsStatus || this.jsDefaultStatus || this.defaultStatus;
|
|
|
|
|
|
|
|
// check the current value so we don't trigger an attribute change
|
|
|
|
// and cause needless (slow!) UI updates
|
2002-10-13 02:22:40 +00:00
|
|
|
if (this.statusText != text) {
|
2002-08-09 01:41:39 +00:00
|
|
|
this.statusTextField.label = text;
|
2002-10-13 02:22:40 +00:00
|
|
|
this.statusText = text;
|
|
|
|
}
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
2005-09-18 21:31:34 +00:00
|
|
|
|
|
|
|
mimeTypeIsTextBased : function(contentType)
|
|
|
|
{
|
|
|
|
return /^text\/|\+xml$/.test(contentType) ||
|
|
|
|
contentType == "application/x-javascript" ||
|
|
|
|
contentType == "application/xml" ||
|
|
|
|
contentType == "mozilla.application/cached-xul";
|
|
|
|
},
|
2002-08-09 01:41:39 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
onLinkIconAvailable : function(aBrowser)
|
2003-12-05 05:55:54 +00:00
|
|
|
{
|
2004-07-29 23:49:31 +00:00
|
|
|
if (gProxyFavIcon &&
|
|
|
|
gBrowser.mCurrentBrowser == aBrowser &&
|
2004-11-30 08:23:02 +00:00
|
|
|
gBrowser.userTypedValue === null)
|
|
|
|
{
|
2006-03-03 19:11:10 +00:00
|
|
|
// update the favicon in the URL bar
|
2005-06-14 08:04:09 +00:00
|
|
|
PageProxySetIcon(aBrowser.mIconURL);
|
2006-03-03 19:11:10 +00:00
|
|
|
|
|
|
|
#ifdef MOZ_PLACES
|
|
|
|
// Save this favicon in the favicon service
|
|
|
|
if (aBrowser.mIconURL) {
|
|
|
|
var faviconService = Components.classes["@mozilla.org/browser/favicon-service;1"].
|
|
|
|
getService(Components.interfaces.nsIFaviconService);
|
|
|
|
var uri = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService).newURI(aBrowser.mIconURL, null, null);
|
|
|
|
faviconService.setAndLoadFaviconForPage(gBrowser.currentURI, uri, false);
|
|
|
|
}
|
|
|
|
#endif
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onProgressChange : function (aWebProgress, aRequest,
|
|
|
|
aCurSelfProgress, aMaxSelfProgress,
|
|
|
|
aCurTotalProgress, aMaxTotalProgress)
|
|
|
|
{
|
|
|
|
if (aMaxTotalProgress > 0) {
|
|
|
|
// This is highly optimized. Don't touch this code unless
|
|
|
|
// you are intimately familiar with the cost of setting
|
|
|
|
// attrs on XUL elements. -- hyatt
|
|
|
|
var percentage = (aCurTotalProgress * 100) / aMaxTotalProgress;
|
|
|
|
this.statusMeter.value = percentage;
|
2005-06-14 10:15:58 +00:00
|
|
|
}
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus)
|
2005-06-14 10:15:58 +00:00
|
|
|
{
|
2002-08-09 01:41:39 +00:00
|
|
|
const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
|
|
|
|
const nsIChannel = Components.interfaces.nsIChannel;
|
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_START) {
|
2002-09-20 02:54:41 +00:00
|
|
|
// This (thanks to the filter) is a network start or the first
|
|
|
|
// stray request (the first request outside of the document load),
|
|
|
|
// initialize the throbber and his friends.
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
// Call start document load listeners (only if this is a network load)
|
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK &&
|
|
|
|
aRequest && aWebProgress.DOMWindow == content)
|
|
|
|
this.startDocumentLoad(aRequest);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
if (this.throbberElement) {
|
2002-09-20 02:54:41 +00:00
|
|
|
// Turn the throbber on.
|
|
|
|
this.throbberElement.setAttribute("busy", "true");
|
|
|
|
}
|
2002-08-09 01:41:39 +00:00
|
|
|
|
2002-10-09 07:37:55 +00:00
|
|
|
// Turn the status meter on.
|
2002-10-09 09:22:09 +00:00
|
|
|
this.statusMeter.value = 0; // be sure to clear the progress bar
|
2002-10-09 09:15:21 +00:00
|
|
|
if (gProgressCollapseTimer) {
|
2002-10-09 09:27:19 +00:00
|
|
|
window.clearTimeout(gProgressCollapseTimer);
|
2002-10-09 09:15:21 +00:00
|
|
|
gProgressCollapseTimer = null;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
this.statusMeter.parentNode.collapsed = false;
|
2002-10-09 07:37:55 +00:00
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
// XXX: This needs to be based on window activity...
|
2002-08-10 00:55:06 +00:00
|
|
|
this.stopCommand.removeAttribute("disabled");
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
else if (aStateFlags & nsIWebProgressListener.STATE_STOP) {
|
|
|
|
if (aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
|
2005-06-14 08:04:09 +00:00
|
|
|
if (aWebProgress.DOMWindow == content) {
|
|
|
|
if (aRequest)
|
2002-08-09 01:41:39 +00:00
|
|
|
this.endDocumentLoad(aRequest, aStatus);
|
2005-06-14 08:04:09 +00:00
|
|
|
var browser = gBrowser.mCurrentBrowser;
|
|
|
|
if (!gBrowser.mTabbedMode && !browser.mIconURL)
|
|
|
|
gBrowser.useDefaultIcon(gBrowser.mCurrentTab);
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2005-06-14 08:04:09 +00:00
|
|
|
if (browser.mIconURL)
|
|
|
|
BookmarksUtils.loadFavIcon(browser.currentURI.spec, browser.mIconURL);
|
2006-02-16 19:00:25 +00:00
|
|
|
#endif
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-20 02:54:41 +00:00
|
|
|
// This (thanks to the filter) is a network stop or the last
|
|
|
|
// request stop outside of loading the document, stop throbbers
|
|
|
|
// and progress bars and such
|
|
|
|
if (aRequest) {
|
|
|
|
var msg = "";
|
|
|
|
// Get the channel if the request is a channel
|
|
|
|
var channel;
|
|
|
|
try {
|
|
|
|
channel = aRequest.QueryInterface(nsIChannel);
|
|
|
|
}
|
|
|
|
catch(e) { };
|
2002-08-09 01:41:39 +00:00
|
|
|
if (channel) {
|
2004-11-30 08:23:02 +00:00
|
|
|
var location = channel.URI;
|
|
|
|
|
|
|
|
// For keyword URIs clear the user typed value since they will be changed into real URIs
|
|
|
|
if (location.scheme == "keyword" && aWebProgress.DOMWindow == content)
|
|
|
|
getBrowser().userTypedValue = null;
|
|
|
|
|
|
|
|
if (location.spec != "about:blank") {
|
2003-12-05 05:55:54 +00:00
|
|
|
const kErrorBindingAborted = 0x804B0002;
|
|
|
|
const kErrorNetTimeout = 0x804B000E;
|
2002-08-09 01:41:39 +00:00
|
|
|
switch (aStatus) {
|
|
|
|
case kErrorBindingAborted:
|
|
|
|
msg = gNavigatorBundle.getString("nv_stopped");
|
|
|
|
break;
|
|
|
|
case kErrorNetTimeout:
|
|
|
|
msg = gNavigatorBundle.getString("nv_timeout");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If msg is false then we did not have an error (channel may have
|
|
|
|
// been null, in the case of a stray image load).
|
|
|
|
if (!msg) {
|
|
|
|
msg = gNavigatorBundle.getString("nv_done");
|
|
|
|
}
|
|
|
|
this.status = "";
|
|
|
|
this.setDefaultStatus(msg);
|
2005-09-18 21:31:34 +00:00
|
|
|
|
|
|
|
// Disable menu entries for images, enable otherwise
|
|
|
|
if (content.document && this.mimeTypeIsTextBased(content.document.contentType))
|
|
|
|
this.isImage.removeAttribute('disabled');
|
|
|
|
else
|
|
|
|
this.isImage.setAttribute('disabled', 'true');
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Turn the progress meter and throbber off.
|
2004-07-07 03:04:09 +00:00
|
|
|
gProgressCollapseTimer = window.setTimeout(
|
2005-06-14 10:15:58 +00:00
|
|
|
function() {
|
|
|
|
gProgressMeterPanel.collapsed = true;
|
2004-07-07 03:04:09 +00:00
|
|
|
gProgressCollapseTimer = null;
|
|
|
|
}, 100);
|
2002-10-09 07:37:55 +00:00
|
|
|
|
2002-08-09 07:48:19 +00:00
|
|
|
if (this.throbberElement)
|
|
|
|
this.throbberElement.removeAttribute("busy");
|
2002-08-09 01:41:39 +00:00
|
|
|
|
|
|
|
this.stopCommand.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onLocationChange : function(aWebProgress, aRequest, aLocation)
|
|
|
|
{
|
2004-11-30 08:23:02 +00:00
|
|
|
// This code here does not compare uris exactly when determining
|
|
|
|
// whether or not the message should be hidden since the message
|
|
|
|
// may be prematurely hidden when an install is invoked by a click
|
|
|
|
// on a link that looks like this:
|
|
|
|
//
|
|
|
|
// <a href="#" onclick="return install();">Install Foo</a>
|
|
|
|
//
|
|
|
|
// - which fires a onLocationChange message to uri + '#'...
|
|
|
|
var selectedBrowser = getBrowser().selectedBrowser;
|
|
|
|
if (selectedBrowser.lastURI) {
|
|
|
|
var oldSpec = selectedBrowser.lastURI.spec;
|
|
|
|
var oldIndexOfHash = oldSpec.indexOf("#");
|
|
|
|
if (oldIndexOfHash != -1)
|
|
|
|
oldSpec = oldSpec.substr(0, oldIndexOfHash);
|
|
|
|
var newSpec = aLocation.spec;
|
|
|
|
var newIndexOfHash = newSpec.indexOf("#");
|
|
|
|
if (newIndexOfHash != -1)
|
|
|
|
newSpec = newSpec.substr(0, newSpec.indexOf("#"));
|
|
|
|
if (newSpec != oldSpec) {
|
2005-12-27 18:39:18 +00:00
|
|
|
getBrowser().hideMessage(null, "both");
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
selectedBrowser.lastURI = aLocation;
|
|
|
|
|
2005-09-18 21:31:34 +00:00
|
|
|
// Disable menu entries for images, enable otherwise
|
|
|
|
if (content.document && this.mimeTypeIsTextBased(content.document.contentType))
|
|
|
|
this.isImage.removeAttribute('disabled');
|
|
|
|
else
|
|
|
|
this.isImage.setAttribute('disabled', 'true');
|
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
this.setOverLink("", null);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
// We should probably not do this if the value has changed since the user
|
|
|
|
// searched
|
|
|
|
// Update urlbar only if a new page was loaded on the primary content area
|
|
|
|
// Do not update urlbar if there was a subframe navigation
|
|
|
|
|
2003-12-05 05:55:54 +00:00
|
|
|
var browser = getBrowser().selectedBrowser;
|
2004-11-30 08:23:02 +00:00
|
|
|
var findField = document.getElementById("find-field");
|
2005-04-20 22:04:03 +00:00
|
|
|
if (aWebProgress.DOMWindow == content) {
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-04-20 22:04:03 +00:00
|
|
|
var location = aLocation.spec;
|
|
|
|
|
|
|
|
if (location == "about:blank" || location == "") { //second condition is for new tabs, otherwise
|
|
|
|
location = ""; //reload function is enabled until tab is refreshed
|
|
|
|
this.reloadCommand.setAttribute("disabled", "true");
|
|
|
|
this.reloadSkipCacheCommand.setAttribute("disabled", "true");
|
|
|
|
} else {
|
|
|
|
this.reloadCommand.removeAttribute("disabled");
|
|
|
|
this.reloadSkipCacheCommand.removeAttribute("disabled");
|
|
|
|
}
|
|
|
|
|
2004-07-24 00:24:30 +00:00
|
|
|
// The document loaded correctly, clear the value if we should
|
2005-11-12 01:51:36 +00:00
|
|
|
if (browser.userTypedClear > 0 && aRequest)
|
2004-07-24 00:24:30 +00:00
|
|
|
browser.userTypedValue = null;
|
|
|
|
|
2005-09-20 20:07:56 +00:00
|
|
|
if (!gBrowser.mTabbedMode && aWebProgress.isLoadingDocument)
|
2005-06-14 08:04:09 +00:00
|
|
|
gBrowser.setIcon(gBrowser.mCurrentTab, null);
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (findField)
|
2005-06-14 10:15:58 +00:00
|
|
|
setTimeout(function() { findField.value = browser.findString; }, 0, findField, browser);
|
2004-07-29 23:49:31 +00:00
|
|
|
|
2002-09-20 03:52:36 +00:00
|
|
|
//XXXBlake don't we have to reinit this.urlBar, etc.
|
|
|
|
// when the toolbar changes?
|
2004-11-30 08:23:02 +00:00
|
|
|
if (gURLBar) {
|
|
|
|
var userTypedValue = browser.userTypedValue;
|
|
|
|
if (!userTypedValue) {
|
|
|
|
// If the url has "wyciwyg://" as the protocol, strip it off.
|
|
|
|
// Nobody wants to see it on the urlbar for dynamically generated
|
2005-06-14 10:15:58 +00:00
|
|
|
// pages.
|
2004-11-30 08:23:02 +00:00
|
|
|
if (!gURIFixup)
|
|
|
|
gURIFixup = Components.classes["@mozilla.org/docshell/urifixup;1"]
|
|
|
|
.getService(Components.interfaces.nsIURIFixup);
|
|
|
|
if (location && gURIFixup)
|
|
|
|
try {
|
|
|
|
var locationURI = gURIFixup.createExposableURI(aLocation);
|
|
|
|
location = locationURI.spec;
|
|
|
|
} catch (exception) {}
|
|
|
|
|
|
|
|
if (getBrowser().forceSyncURLBarUpdate) {
|
|
|
|
gURLBar.value = ""; // hack for bug 249322
|
|
|
|
gURLBar.value = location;
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("valid");
|
2004-11-30 08:23:02 +00:00
|
|
|
} else {
|
2005-06-14 10:15:58 +00:00
|
|
|
setTimeout(function(loc) {
|
2004-11-30 08:23:02 +00:00
|
|
|
gURLBar.value = ""; // hack for bug 249322
|
2005-06-14 10:15:58 +00:00
|
|
|
gURLBar.value = loc;
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("valid");
|
|
|
|
}, 0, location);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setting the urlBar value in some cases causes userTypedValue to
|
|
|
|
// become set because of oninput, so reset it to its old value.
|
|
|
|
browser.userTypedValue = userTypedValue;
|
2004-11-03 17:06:21 +00:00
|
|
|
} else {
|
2004-11-30 08:23:02 +00:00
|
|
|
gURLBar.value = userTypedValue;
|
2005-04-20 22:01:34 +00:00
|
|
|
SetPageProxyState("invalid");
|
2004-11-03 17:06:21 +00:00
|
|
|
}
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
UpdateBackForwardButtons();
|
2005-11-01 17:34:45 +00:00
|
|
|
if (findField && gFindBar.mFindMode != FIND_NORMAL) {
|
2004-11-30 08:23:02 +00:00
|
|
|
// Close the Find toolbar if we're in old-style TAF mode
|
2005-11-01 17:34:45 +00:00
|
|
|
gFindBar.closeFindBar();
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
//fix bug 253793 - turn off highlight when page changes
|
|
|
|
if (document.getElementById("highlight").checked)
|
|
|
|
document.getElementById("highlight").removeAttribute("checked");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
setTimeout(function () { FeedHandler.updateFeeds(); }, 0);
|
2004-11-30 08:23:02 +00:00
|
|
|
#ifdef ALTSS_ICON
|
|
|
|
setTimeout(function () { updatePageStyles(); }, 0);
|
|
|
|
#endif
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage)
|
|
|
|
{
|
|
|
|
this.status = aMessage;
|
|
|
|
this.updateStatusField();
|
|
|
|
},
|
|
|
|
|
|
|
|
onSecurityChange : function(aWebProgress, aRequest, aState)
|
|
|
|
{
|
|
|
|
const wpl = Components.interfaces.nsIWebProgressListener;
|
2004-11-30 08:23:02 +00:00
|
|
|
this.securityButton.removeAttribute("label");
|
2002-08-09 01:41:39 +00:00
|
|
|
|
|
|
|
switch (aState) {
|
|
|
|
case wpl.STATE_IS_SECURE | wpl.STATE_SECURE_HIGH:
|
2004-07-09 06:32:33 +00:00
|
|
|
this.securityButton.setAttribute("level", "high");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (this.urlBar)
|
|
|
|
this.urlBar.setAttribute("level", "high");
|
|
|
|
try {
|
|
|
|
this.securityButton.setAttribute("label",
|
|
|
|
gBrowser.contentWindow.location.host);
|
|
|
|
} catch(exception) {}
|
2002-08-09 01:41:39 +00:00
|
|
|
break;
|
|
|
|
case wpl.STATE_IS_SECURE | wpl.STATE_SECURE_LOW:
|
2004-07-09 06:32:33 +00:00
|
|
|
this.securityButton.setAttribute("level", "low");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (this.urlBar)
|
|
|
|
this.urlBar.setAttribute("level", "low");
|
|
|
|
try {
|
2005-06-14 10:15:58 +00:00
|
|
|
this.securityButton.setAttribute("label",
|
2004-11-30 08:23:02 +00:00
|
|
|
gBrowser.contentWindow.location.host);
|
2005-06-14 10:15:58 +00:00
|
|
|
} catch(exception) {}
|
2002-08-09 01:41:39 +00:00
|
|
|
break;
|
|
|
|
case wpl.STATE_IS_BROKEN:
|
2004-07-09 06:32:33 +00:00
|
|
|
this.securityButton.setAttribute("level", "broken");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (this.urlBar)
|
|
|
|
this.urlBar.setAttribute("level", "broken");
|
2002-08-09 01:41:39 +00:00
|
|
|
break;
|
|
|
|
case wpl.STATE_IS_INSECURE:
|
|
|
|
default:
|
2004-07-09 06:32:33 +00:00
|
|
|
this.securityButton.removeAttribute("level");
|
2004-11-30 08:23:02 +00:00
|
|
|
if (this.urlBar)
|
|
|
|
this.urlBar.removeAttribute("level");
|
2002-08-09 01:41:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
var securityUI = gBrowser.securityUI;
|
2005-05-20 02:09:09 +00:00
|
|
|
this.securityButton.setAttribute("tooltiptext", securityUI.tooltipText);
|
2005-09-13 22:50:54 +00:00
|
|
|
var lockIcon = document.getElementById("lock-icon");
|
|
|
|
if (lockIcon)
|
|
|
|
lockIcon.setAttribute("tooltiptext", securityUI.tooltipText);
|
2002-08-09 01:41:39 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
startDocumentLoad : function(aRequest)
|
|
|
|
{
|
2004-07-24 00:32:47 +00:00
|
|
|
// It's okay to clear what the user typed when we start
|
2005-08-28 18:49:03 +00:00
|
|
|
// loading a document. If the user types, this counter gets
|
|
|
|
// set to zero, if the document load ends without an
|
|
|
|
// onLocationChange, this counter gets decremented
|
|
|
|
// (so we keep it while switching tabs after failed loads)
|
|
|
|
getBrowser().userTypedClear++;
|
2002-08-09 01:41:39 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
// clear out feed data
|
|
|
|
gBrowser.mCurrentBrowser.feeds = null;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
const nsIChannel = Components.interfaces.nsIChannel;
|
|
|
|
var urlStr = aRequest.QueryInterface(nsIChannel).URI.spec;
|
|
|
|
var observerService = Components.classes["@mozilla.org/observer-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIObserverService);
|
|
|
|
try {
|
2005-01-28 16:06:56 +00:00
|
|
|
observerService.notifyObservers(content, "StartDocumentLoad", urlStr);
|
2002-08-09 01:41:39 +00:00
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
endDocumentLoad : function(aRequest, aStatus)
|
|
|
|
{
|
2005-08-28 18:49:03 +00:00
|
|
|
// The document is done loading, we no longer want the
|
|
|
|
// value cleared.
|
|
|
|
if (getBrowser().userTypedClear > 0)
|
|
|
|
getBrowser().userTypedClear--;
|
2004-07-24 00:32:47 +00:00
|
|
|
|
2002-08-09 01:41:39 +00:00
|
|
|
const nsIChannel = Components.interfaces.nsIChannel;
|
|
|
|
var urlStr = aRequest.QueryInterface(nsIChannel).originalURI.spec;
|
|
|
|
|
|
|
|
var observerService = Components.classes["@mozilla.org/observer-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIObserverService);
|
|
|
|
|
|
|
|
var notification = Components.isSuccessCode(aStatus) ? "EndDocumentLoad" : "FailDocumentLoad";
|
|
|
|
try {
|
2005-01-28 16:06:56 +00:00
|
|
|
observerService.notifyObservers(content, notification, urlStr);
|
2002-08-09 01:41:39 +00:00
|
|
|
} catch (e) {
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
setTimeout(function() { if (document.getElementById("highlight").checked) toggleHighlight(true); }, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function nsBrowserAccess()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsBrowserAccess.prototype =
|
|
|
|
{
|
|
|
|
QueryInterface : function(aIID)
|
|
|
|
{
|
|
|
|
if (aIID.equals(nsCI.nsIBrowserDOMWindow) ||
|
|
|
|
aIID.equals(nsCI.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
},
|
|
|
|
|
|
|
|
openURI : function(aURI, aOpener, aWhere, aContext)
|
|
|
|
{
|
|
|
|
var newWindow = null;
|
|
|
|
var referrer = null;
|
2005-07-07 09:45:47 +00:00
|
|
|
var isExternal = (aContext == nsCI.nsIBrowserDOMWindow.OPEN_EXTERNAL);
|
|
|
|
|
|
|
|
if (isExternal && aURI && aURI.schemeIs("chrome")) {
|
|
|
|
dump("use -chrome command-line option to load external chrome urls\n");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var loadflags = isExternal ?
|
|
|
|
nsCI.nsIWebNavigation.LOAD_FLAGS_FROM_EXTERNAL :
|
|
|
|
nsCI.nsIWebNavigation.LOAD_FLAGS_NONE;
|
2005-04-03 15:41:20 +00:00
|
|
|
var location;
|
2004-11-30 08:23:02 +00:00
|
|
|
if (aWhere == nsCI.nsIBrowserDOMWindow.OPEN_DEFAULTWINDOW) {
|
|
|
|
switch (aContext) {
|
|
|
|
case nsCI.nsIBrowserDOMWindow.OPEN_EXTERNAL :
|
|
|
|
aWhere = gPrefService.getIntPref("browser.link.open_external");
|
|
|
|
break;
|
|
|
|
default : // OPEN_NEW or an illegal value
|
|
|
|
aWhere = gPrefService.getIntPref("browser.link.open_newwindow");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var url = aURI ? aURI.spec : "about:blank";
|
|
|
|
switch(aWhere) {
|
|
|
|
case nsCI.nsIBrowserDOMWindow.OPEN_NEWWINDOW :
|
|
|
|
newWindow = openDialog(getBrowserURL(), "_blank", "all,dialog=no", url);
|
|
|
|
break;
|
|
|
|
case nsCI.nsIBrowserDOMWindow.OPEN_NEWTAB :
|
2006-01-20 23:04:26 +00:00
|
|
|
var loadInBackground = gPrefService.getBoolPref("browser.tabs.loadDivertedInBackground");
|
|
|
|
var newTab = gBrowser.loadOneTab("about:blank", null, null, null, loadInBackground);
|
2004-11-30 08:23:02 +00:00
|
|
|
newWindow = gBrowser.getBrowserForTab(newTab).docShell
|
|
|
|
.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsCI.nsIDOMWindow);
|
|
|
|
try {
|
|
|
|
if (aOpener) {
|
2005-05-20 17:41:10 +00:00
|
|
|
location = aOpener.location;
|
2005-06-14 10:15:58 +00:00
|
|
|
referrer =
|
2005-02-28 23:09:24 +00:00
|
|
|
Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(location, null, null);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
newWindow.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsCI.nsIWebNavigation)
|
2005-07-07 09:45:47 +00:00
|
|
|
.loadURI(url, loadflags, referrer, null, null);
|
2004-11-30 08:23:02 +00:00
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default : // OPEN_CURRENTWINDOW or an illegal value
|
|
|
|
try {
|
|
|
|
if (aOpener) {
|
2005-05-20 17:41:10 +00:00
|
|
|
newWindow = aOpener.top;
|
|
|
|
location = aOpener.location;
|
2005-06-14 10:15:58 +00:00
|
|
|
referrer =
|
2005-02-28 23:09:24 +00:00
|
|
|
Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService)
|
|
|
|
.newURI(location, null, null);
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
newWindow.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsIWebNavigation)
|
2005-07-07 09:45:47 +00:00
|
|
|
.loadURI(url, loadflags, referrer, null, null);
|
2004-11-30 08:23:02 +00:00
|
|
|
} else {
|
|
|
|
newWindow = gBrowser.selectedBrowser.docShell
|
|
|
|
.QueryInterface(nsCI.nsIInterfaceRequestor)
|
|
|
|
.getInterface(nsCI.nsIDOMWindow);
|
2005-07-07 09:45:47 +00:00
|
|
|
getWebNavigation().loadURI(url, loadflags, null, null, null);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
2005-03-10 18:29:20 +00:00
|
|
|
if(!gPrefService.getBoolPref("browser.tabs.loadDivertedInBackground"))
|
|
|
|
content.focus();
|
2004-11-30 08:23:02 +00:00
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newWindow;
|
2004-12-07 16:08:48 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
isTabContentWindow : function(aWindow)
|
|
|
|
{
|
|
|
|
var browsers = gBrowser.browsers;
|
|
|
|
for (var ctr = 0; ctr < browsers.length; ctr++)
|
|
|
|
if (browsers.item(ctr).contentWindow == aWindow)
|
|
|
|
return true;
|
|
|
|
return false;
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
function onViewToolbarsPopupShowing(aEvent)
|
|
|
|
{
|
|
|
|
var popup = aEvent.target;
|
2002-10-18 10:05:47 +00:00
|
|
|
var i;
|
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
// Empty the menu
|
2002-10-18 10:05:47 +00:00
|
|
|
for (i = popup.childNodes.length-1; i >= 0; --i) {
|
2002-09-27 04:06:56 +00:00
|
|
|
var deadItem = popup.childNodes[i];
|
|
|
|
if (deadItem.hasAttribute("toolbarindex"))
|
|
|
|
popup.removeChild(deadItem);
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
var firstMenuItem = popup.firstChild;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
var toolbox = document.getElementById("navigator-toolbox");
|
2002-10-18 10:05:47 +00:00
|
|
|
for (i = 0; i < toolbox.childNodes.length; ++i) {
|
2002-09-27 04:06:56 +00:00
|
|
|
var toolbar = toolbox.childNodes[i];
|
|
|
|
var toolbarName = toolbar.getAttribute("toolbarname");
|
2002-10-20 08:03:51 +00:00
|
|
|
var type = toolbar.getAttribute("type");
|
|
|
|
if (toolbarName && type != "menubar") {
|
2002-09-27 04:06:56 +00:00
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
menuItem.setAttribute("toolbarindex", i);
|
|
|
|
menuItem.setAttribute("type", "checkbox");
|
|
|
|
menuItem.setAttribute("label", toolbarName);
|
|
|
|
menuItem.setAttribute("accesskey", toolbar.getAttribute("accesskey"));
|
|
|
|
menuItem.setAttribute("checked", toolbar.getAttribute("collapsed") != "true");
|
2005-06-14 10:15:58 +00:00
|
|
|
popup.insertBefore(menuItem, firstMenuItem);
|
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
menuItem.addEventListener("command", onViewToolbarCommand, false);
|
|
|
|
}
|
|
|
|
toolbar = toolbar.nextSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onViewToolbarCommand(aEvent)
|
|
|
|
{
|
|
|
|
var toolbox = document.getElementById("navigator-toolbox");
|
|
|
|
var index = aEvent.originalTarget.getAttribute("toolbarindex");
|
|
|
|
var toolbar = toolbox.childNodes[index];
|
2003-08-10 04:28:02 +00:00
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
toolbar.collapsed = aEvent.originalTarget.getAttribute("checked") != "true";
|
|
|
|
document.persist(toolbar.id, "collapsed");
|
|
|
|
}
|
|
|
|
|
2004-05-23 10:25:30 +00:00
|
|
|
function displaySecurityInfo()
|
2002-08-09 01:41:39 +00:00
|
|
|
{
|
2005-09-21 01:12:29 +00:00
|
|
|
BrowserPageInfo(null, "securityTab");
|
2002-08-09 01:41:39 +00:00
|
|
|
}
|
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
function nsBrowserContentListener(toplevelWindow, contentWindow)
|
|
|
|
{
|
|
|
|
// this one is not as easy as you would hope.
|
|
|
|
// need to convert toplevelWindow to an XPConnected object, instead
|
|
|
|
// of a DOM-based object, to be able to QI() it to nsIXULWindow
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
this.init(toplevelWindow, contentWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* implements nsIURIContentListener */
|
|
|
|
|
|
|
|
nsBrowserContentListener.prototype =
|
|
|
|
{
|
|
|
|
init: function(toplevelWindow, contentWindow)
|
|
|
|
{
|
2002-10-13 23:48:03 +00:00
|
|
|
const nsIWebBrowserChrome = Components.interfaces.nsIWebBrowserChrome;
|
2002-08-10 23:36:50 +00:00
|
|
|
this.toplevelWindow = toplevelWindow;
|
|
|
|
this.contentWindow = contentWindow;
|
|
|
|
|
|
|
|
// hook up the whole parent chain thing
|
|
|
|
var windowDocShell = this.convertWindowToDocShell(toplevelWindow);
|
2005-02-22 19:56:11 +00:00
|
|
|
if (windowDocShell) {
|
|
|
|
windowDocshell
|
|
|
|
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Components.interfaces.nsIURIContentListener)
|
|
|
|
.parentContentListener = this;
|
|
|
|
}
|
2002-08-10 23:36:50 +00:00
|
|
|
var registerWindow = false;
|
2005-06-14 10:15:58 +00:00
|
|
|
try {
|
2002-08-10 23:36:50 +00:00
|
|
|
var treeItem = contentWindow.docShell.QueryInterface(Components.interfaces.nsIDocShellTreeItem);
|
|
|
|
var treeOwner = treeItem.treeOwner;
|
|
|
|
var interfaceRequestor = treeOwner.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
|
|
|
|
var webBrowserChrome = interfaceRequestor.getInterface(nsIWebBrowserChrome);
|
|
|
|
if (webBrowserChrome)
|
|
|
|
{
|
|
|
|
var chromeFlags = webBrowserChrome.chromeFlags;
|
|
|
|
var res = chromeFlags & nsIWebBrowserChrome.CHROME_ALL;
|
|
|
|
var res2 = chromeFlags & nsIWebBrowserChrome.CHROME_DEFAULT;
|
|
|
|
if ( res == nsIWebBrowserChrome.CHROME_ALL || res2 == nsIWebBrowserChrome.CHROME_DEFAULT)
|
2005-06-14 10:15:58 +00:00
|
|
|
{
|
2002-08-10 23:36:50 +00:00
|
|
|
registerWindow = true;
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
} catch (ex) {}
|
2002-08-10 23:36:50 +00:00
|
|
|
|
|
|
|
// register ourselves
|
|
|
|
if (registerWindow)
|
|
|
|
{
|
|
|
|
var uriLoader = Components.classes["@mozilla.org/uriloader;1"].getService(Components.interfaces.nsIURILoader);
|
|
|
|
uriLoader.registerContentListener(this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
close: function()
|
|
|
|
{
|
|
|
|
this.contentWindow = null;
|
|
|
|
var uriLoader = Components.classes["@mozilla.org/uriloader;1"].getService(Components.interfaces.nsIURILoader);
|
|
|
|
|
|
|
|
uriLoader.unRegisterContentListener(this);
|
|
|
|
},
|
|
|
|
QueryInterface: function(iid)
|
|
|
|
{
|
2002-11-05 00:29:14 +00:00
|
|
|
if (iid.equals(Components.interfaces.nsIURIContentListener) ||
|
|
|
|
iid.equals(Components.interfaces.nsISupportsWeakReference) ||
|
|
|
|
iid.equals(Components.interfaces.nsISupports))
|
|
|
|
return this;
|
2002-08-10 23:36:50 +00:00
|
|
|
throw Components.results.NS_NOINTERFACE;
|
|
|
|
},
|
|
|
|
onStartURIOpen: function(uri)
|
|
|
|
{
|
|
|
|
// ignore and don't abort
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
doContent: function(contentType, isContentPreferred, request, contentHandler)
|
|
|
|
{
|
|
|
|
// forward the doContent to our content area webshell
|
|
|
|
var docShell = this.contentWindow.docShell;
|
|
|
|
var contentListener;
|
|
|
|
try {
|
|
|
|
contentListener =
|
|
|
|
docShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Components.interfaces.nsIURIContentListener);
|
|
|
|
} catch (ex) {
|
|
|
|
dump(ex);
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
if (!contentListener) return false;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
return contentListener.doContent(contentType, isContentPreferred, request, contentHandler);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
isPreferred: function(contentType, desiredContentType)
|
|
|
|
{
|
|
|
|
// seems like we should be getting this from helper apps or something
|
|
|
|
switch(contentType) {
|
|
|
|
case "text/html":
|
|
|
|
case "text/xul":
|
|
|
|
case "text/rdf":
|
|
|
|
case "text/xml":
|
|
|
|
case "text/css":
|
|
|
|
case "image/gif":
|
|
|
|
case "image/jpeg":
|
|
|
|
case "image/png":
|
|
|
|
case "text/plain":
|
|
|
|
case "application/http-index-format":
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
canHandleContent: function(contentType, isContentPreferred, desiredContentType)
|
|
|
|
{
|
|
|
|
var docShell = this.contentWindow.docShell;
|
|
|
|
var contentListener;
|
|
|
|
try {
|
|
|
|
contentListener =
|
|
|
|
docShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsIURIContentListener);
|
|
|
|
} catch (ex) {
|
|
|
|
dump(ex);
|
|
|
|
}
|
|
|
|
if (!contentListener) return false;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-08-10 23:36:50 +00:00
|
|
|
return contentListener.canHandleContent(contentType, isContentPreferred, desiredContentType);
|
|
|
|
},
|
|
|
|
convertWindowToDocShell: function(win) {
|
|
|
|
// don't know how to do this
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
loadCookie: null,
|
|
|
|
parentContentListener: null
|
|
|
|
}
|
2002-08-09 01:41:39 +00:00
|
|
|
|
2003-08-03 01:58:52 +00:00
|
|
|
// |forceOpen| is a bool that indicates that the sidebar should be forced open. In other words
|
|
|
|
// the toggle won't be allowed to close the sidebar.
|
|
|
|
function toggleSidebar(aCommandID, forceOpen) {
|
2003-10-29 08:01:27 +00:00
|
|
|
|
2002-09-28 22:55:58 +00:00
|
|
|
var sidebarBox = document.getElementById("sidebar-box");
|
2002-09-30 04:03:00 +00:00
|
|
|
if (!aCommandID)
|
|
|
|
aCommandID = sidebarBox.getAttribute("sidebarcommand");
|
|
|
|
|
|
|
|
var elt = document.getElementById(aCommandID);
|
2002-09-28 01:49:18 +00:00
|
|
|
var sidebar = document.getElementById("sidebar");
|
2002-09-28 22:55:58 +00:00
|
|
|
var sidebarTitle = document.getElementById("sidebar-title");
|
2002-09-28 01:49:18 +00:00
|
|
|
var sidebarSplitter = document.getElementById("sidebar-splitter");
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (!forceOpen && elt.getAttribute("checked") == "true") {
|
|
|
|
elt.removeAttribute("checked");
|
|
|
|
sidebarBox.setAttribute("sidebarcommand", "");
|
|
|
|
sidebarTitle.setAttribute("value", "");
|
|
|
|
sidebarBox.hidden = true;
|
|
|
|
sidebarSplitter.hidden = true;
|
2005-01-28 16:06:56 +00:00
|
|
|
content.focus();
|
2002-09-28 01:49:18 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-30 01:58:19 +00:00
|
|
|
var elts = document.getElementsByAttribute("group", "sidebar");
|
|
|
|
for (var i = 0; i < elts.length; ++i)
|
|
|
|
elts[i].removeAttribute("checked");
|
|
|
|
|
|
|
|
elt.setAttribute("checked", "true");;
|
2002-09-28 01:49:18 +00:00
|
|
|
|
2002-09-28 22:55:58 +00:00
|
|
|
if (sidebarBox.hidden) {
|
|
|
|
sidebarBox.hidden = false;
|
|
|
|
sidebarSplitter.hidden = false;
|
2002-09-28 01:49:18 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-09-30 01:58:19 +00:00
|
|
|
var url = elt.getAttribute("sidebarurl");
|
|
|
|
var title = elt.getAttribute("sidebartitle");
|
2002-09-28 22:55:58 +00:00
|
|
|
if (!title)
|
2002-09-30 01:58:19 +00:00
|
|
|
title = elt.getAttribute("label");
|
2002-09-28 01:49:18 +00:00
|
|
|
sidebar.setAttribute("src", url);
|
2002-11-05 00:29:14 +00:00
|
|
|
sidebarBox.setAttribute("src", url);
|
2002-09-30 01:58:19 +00:00
|
|
|
sidebarBox.setAttribute("sidebarcommand", elt.id);
|
2002-09-28 22:55:58 +00:00
|
|
|
sidebarTitle.setAttribute("value", title);
|
2004-05-23 20:56:38 +00:00
|
|
|
if (aCommandID != "viewWebPanelsSidebar") { // no searchbox there
|
|
|
|
// if the sidebar we want is already constructed, focus the searchbox
|
|
|
|
if ((aCommandID == "viewBookmarksSidebar" && sidebar.contentDocument.getElementById("bookmarksPanel"))
|
|
|
|
|| (aCommandID == "viewHistorySidebar" && sidebar.contentDocument.getElementById("history-panel")))
|
|
|
|
sidebar.contentDocument.getElementById("search-box").focus();
|
|
|
|
// otherwiese, attach an onload handler
|
|
|
|
else
|
|
|
|
sidebar.addEventListener("load", asyncFocusSearchBox, true);
|
|
|
|
}
|
2002-09-28 01:49:18 +00:00
|
|
|
}
|
|
|
|
|
2004-05-23 20:56:38 +00:00
|
|
|
function asyncFocusSearchBox(event)
|
|
|
|
{
|
|
|
|
var sidebar = document.getElementById("sidebar");
|
|
|
|
var searchBox = sidebar.contentDocument.getElementById("search-box");
|
2005-01-03 00:52:33 +00:00
|
|
|
if (searchBox)
|
|
|
|
searchBox.focus();
|
2004-05-23 20:56:38 +00:00
|
|
|
sidebar.removeEventListener("load", asyncFocusSearchBox, true);
|
|
|
|
}
|
|
|
|
|
2003-12-16 00:37:01 +00:00
|
|
|
var gHomeButton = {
|
|
|
|
prefDomain: "browser.startup.homepage",
|
|
|
|
observe: function (aSubject, aTopic, aPrefName)
|
|
|
|
{
|
|
|
|
if (aTopic != "nsPref:changed" || aPrefName != this.prefDomain)
|
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-16 00:37:01 +00:00
|
|
|
this.updateTooltip();
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-16 00:37:01 +00:00
|
|
|
updateTooltip: function ()
|
|
|
|
{
|
|
|
|
var homeButton = document.getElementById("home-button");
|
|
|
|
if (homeButton) {
|
|
|
|
var homePage = this.getHomePage();
|
|
|
|
homePage = homePage.replace(/\|/g,', ');
|
|
|
|
homeButton.setAttribute("tooltiptext", homePage);
|
|
|
|
}
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-16 00:37:01 +00:00
|
|
|
getHomePage: function ()
|
|
|
|
{
|
|
|
|
var url;
|
|
|
|
try {
|
|
|
|
url = gPrefService.getComplexValue(this.prefDomain,
|
|
|
|
Components.interfaces.nsIPrefLocalizedString).data;
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// use this if we can't find the pref
|
|
|
|
if (!url) {
|
|
|
|
var navigatorRegionBundle = document.getElementById("bundle_browser_region");
|
|
|
|
url = navigatorRegionBundle.getString("homePageDefault");
|
|
|
|
}
|
|
|
|
|
|
|
|
return url;
|
2002-09-29 01:23:02 +00:00
|
|
|
}
|
2003-12-16 00:37:01 +00:00
|
|
|
};
|
2002-09-29 20:30:20 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
function nsContextMenu( xulMenu ) {
|
2005-06-14 09:44:51 +00:00
|
|
|
this.target = null;
|
|
|
|
this.menu = null;
|
|
|
|
this.onTextInput = false;
|
|
|
|
this.onKeywordField = false;
|
|
|
|
this.onImage = false;
|
2005-07-28 13:47:59 +00:00
|
|
|
this.onLoadedImage = false;
|
2005-06-14 09:44:51 +00:00
|
|
|
this.onLink = false;
|
|
|
|
this.onMailtoLink = false;
|
|
|
|
this.onSaveableLink = false;
|
|
|
|
this.onMetaDataItem = false;
|
|
|
|
this.onMathML = false;
|
|
|
|
this.link = false;
|
2005-08-12 06:55:54 +00:00
|
|
|
this.linkURL = "";
|
|
|
|
this.linkURI = null;
|
|
|
|
this.linkProtocol = null;
|
2005-06-14 09:44:51 +00:00
|
|
|
this.inFrame = false;
|
|
|
|
this.hasBGImage = false;
|
|
|
|
this.isTextSelected = false;
|
|
|
|
this.isContentSelected = false;
|
|
|
|
this.inDirList = false;
|
|
|
|
this.shouldDisplay = true;
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// Initialize new menu.
|
|
|
|
this.initMenu( xulMenu );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prototype for nsContextMenu "class."
|
|
|
|
nsContextMenu.prototype = {
|
|
|
|
// onDestroy is a no-op at this point.
|
|
|
|
onDestroy : function () {
|
|
|
|
},
|
|
|
|
// Initialize context menu.
|
|
|
|
initMenu : function ( popup ) {
|
|
|
|
// Save menu.
|
|
|
|
this.menu = popup;
|
|
|
|
|
|
|
|
// Get contextual info.
|
2005-12-05 18:18:11 +00:00
|
|
|
this.setTarget( document.popupNode, document.popupEvent );
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
this.isTextSelected = this.isTextSelection();
|
2005-06-14 09:44:51 +00:00
|
|
|
this.isContentSelected = this.isContentSelection();
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// Initialize (disable/remove) menu items.
|
|
|
|
this.initItems();
|
|
|
|
},
|
|
|
|
initItems : function () {
|
|
|
|
this.initOpenItems();
|
|
|
|
this.initNavigationItems();
|
|
|
|
this.initViewItems();
|
|
|
|
this.initMiscItems();
|
2005-12-05 18:18:11 +00:00
|
|
|
this.initSpellingItems();
|
2002-10-13 06:52:56 +00:00
|
|
|
this.initSaveItems();
|
|
|
|
this.initClipboardItems();
|
|
|
|
this.initMetadataItems();
|
|
|
|
},
|
|
|
|
initOpenItems : function () {
|
|
|
|
this.showItem( "context-openlink", this.onSaveableLink || ( this.inDirList && this.onLink ) );
|
|
|
|
this.showItem( "context-openlinkintab", this.onSaveableLink || ( this.inDirList && this.onLink ) );
|
|
|
|
|
|
|
|
this.showItem( "context-sep-open", this.onSaveableLink || ( this.inDirList && this.onLink ) );
|
|
|
|
},
|
|
|
|
initNavigationItems : function () {
|
|
|
|
// Back determined by canGoBack broadcaster.
|
|
|
|
this.setItemAttrFromNode( "context-back", "disabled", "canGoBack" );
|
|
|
|
|
|
|
|
// Forward determined by canGoForward broadcaster.
|
|
|
|
this.setItemAttrFromNode( "context-forward", "disabled", "canGoForward" );
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-back", !( this.isContentSelected || this.onLink || this.onImage || this.onTextInput ) );
|
|
|
|
this.showItem( "context-forward", !( this.isContentSelected || this.onLink || this.onImage || this.onTextInput ) );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-reload", !( this.isContentSelected || this.onLink || this.onImage || this.onTextInput ) );
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-stop", !( this.isContentSelected || this.onLink || this.onImage || this.onTextInput ) );
|
|
|
|
this.showItem( "context-sep-stop", !( this.isContentSelected || this.onLink || this.onTextInput || this.onImage ) );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// XXX: Stop is determined in navigator.js; the canStop broadcaster is broken
|
|
|
|
//this.setItemAttrFromNode( "context-stop", "disabled", "canStop" );
|
|
|
|
},
|
|
|
|
initSaveItems : function () {
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-savepage", !( this.inDirList || this.isContentSelected || this.onTextInput || this.onLink || this.onImage ));
|
|
|
|
this.showItem( "context-sendpage", !( this.inDirList || this.isContentSelected || this.onTextInput || this.onLink || this.onImage ));
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
// Save+Send link depends on whether we're in a link.
|
2002-10-13 06:52:56 +00:00
|
|
|
this.showItem( "context-savelink", this.onSaveableLink );
|
2005-08-12 06:55:54 +00:00
|
|
|
this.showItem( "context-sendlink", this.onSaveableLink );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
// Save+Send image depends on whether we're on an image.
|
2005-07-28 13:47:59 +00:00
|
|
|
this.showItem( "context-saveimage", this.onLoadedImage );
|
2002-10-13 06:52:56 +00:00
|
|
|
this.showItem( "context-sendimage", this.onImage );
|
|
|
|
},
|
|
|
|
initViewItems : function () {
|
|
|
|
// View source is always OK, unless in directory listing.
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-viewpartialsource-selection", this.isContentSelected );
|
|
|
|
this.showItem( "context-viewpartialsource-mathml", this.onMathML && !this.isContentSelected );
|
|
|
|
this.showItem( "context-viewsource", !( this.inDirList || this.onImage || this.isContentSelected || this.onLink || this.onTextInput ) );
|
|
|
|
this.showItem( "context-viewinfo", !( this.inDirList || this.onImage || this.isContentSelected || this.onLink || this.onTextInput ) );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-sep-properties", !( this.inDirList || this.isContentSelected || this.onTextInput ) );
|
2005-06-23 02:25:06 +00:00
|
|
|
// Set as Desktop background depends on whether an image was clicked on,
|
|
|
|
// and only works if we have a shell service.
|
|
|
|
var haveSetDesktopBackground = false;
|
2004-07-15 22:51:19 +00:00
|
|
|
#ifdef HAVE_SHELL_SERVICE
|
2005-06-23 02:25:06 +00:00
|
|
|
// Only enable Set as Desktop Background if we can get the shell service.
|
2004-07-15 22:51:19 +00:00
|
|
|
var shell = getShellService();
|
|
|
|
if (shell)
|
2005-06-23 02:25:06 +00:00
|
|
|
haveSetDesktopBackground = true;
|
2004-07-15 22:51:19 +00:00
|
|
|
#endif
|
2005-07-28 13:47:59 +00:00
|
|
|
this.showItem( "context-setDesktopBackground", haveSetDesktopBackground && this.onLoadedImage );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
if ( haveSetDesktopBackground && this.onLoadedImage )
|
|
|
|
this.setItemAttr( "context-setDesktopBackground", "disabled", this.disableSetDesktopBackground());
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// View Image depends on whether an image was clicked on.
|
2005-06-14 09:34:49 +00:00
|
|
|
this.showItem( "context-viewimage", this.onImage && !this.onStandaloneImage );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// View background image depends on whether there is one.
|
2005-06-14 10:15:58 +00:00
|
|
|
this.showItem( "context-viewbgimage", !( this.inDirList || this.onImage || this.isContentSelected || this.onLink || this.onTextInput ) );
|
|
|
|
this.showItem( "context-sep-viewbgimage", !( this.inDirList || this.onImage || this.isContentSelected || this.onLink || this.onTextInput ) );
|
2002-10-13 06:52:56 +00:00
|
|
|
this.setItemAttr( "context-viewbgimage", "disabled", this.hasBGImage ? null : "true");
|
|
|
|
},
|
|
|
|
initMiscItems : function () {
|
|
|
|
// Use "Bookmark This Link" if on a link.
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-bookmarkpage", !( this.isContentSelected || this.onTextInput || this.onLink || this.onImage ) );
|
2002-10-13 06:52:56 +00:00
|
|
|
this.showItem( "context-bookmarklink", this.onLink && !this.onMailtoLink );
|
|
|
|
this.showItem( "context-searchselect", this.isTextSelected );
|
2004-04-10 05:04:20 +00:00
|
|
|
this.showItem( "context-keywordfield", this.onTextInput && this.onKeywordField );
|
2002-10-13 06:52:56 +00:00
|
|
|
this.showItem( "frame", this.inFrame );
|
|
|
|
this.showItem( "frame-sep", this.inFrame );
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
// BiDi UI
|
2005-01-26 01:40:30 +00:00
|
|
|
this.showItem( "context-sep-bidi", gBidiUI);
|
|
|
|
this.showItem( "context-bidi-text-direction-toggle", this.onTextInput && gBidiUI);
|
|
|
|
this.showItem( "context-bidi-page-direction-toggle", !this.onTextInput && gBidiUI);
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
if (this.onImage) {
|
|
|
|
var blockImage = document.getElementById("context-blockimage");
|
2003-07-28 14:52:41 +00:00
|
|
|
|
2005-02-28 23:09:24 +00:00
|
|
|
var uri = this.target.QueryInterface(Components.interfaces.nsIImageLoadingContent).currentURI;
|
2003-07-28 14:52:41 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
var hostLabel;
|
|
|
|
// this throws if the image URI doesn't have a host (eg, data: image URIs)
|
2005-07-23 02:59:56 +00:00
|
|
|
// see bug 293758 for details
|
2005-06-14 10:15:58 +00:00
|
|
|
try {
|
|
|
|
hostLabel = uri.host;
|
|
|
|
} catch (ex) { }
|
|
|
|
|
|
|
|
if (hostLabel) {
|
|
|
|
var shortenedUriHost = hostLabel.replace(/^www\./i,"");
|
|
|
|
if (shortenedUriHost.length > 15)
|
|
|
|
shortenedUriHost = shortenedUriHost.substr(0,15) + "...";
|
|
|
|
blockImage.label = gNavigatorBundle.getFormattedString("blockImages", [shortenedUriHost]);
|
|
|
|
|
|
|
|
if (this.isImageBlocked())
|
|
|
|
blockImage.setAttribute("checked", "true");
|
|
|
|
else
|
|
|
|
blockImage.removeAttribute("checked");
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
// Only show the block image item if the image can be blocked
|
|
|
|
this.showItem( "context-blockimage", this.onImage && hostLabel);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2005-12-05 18:18:11 +00:00
|
|
|
initSpellingItems : function () {
|
|
|
|
var canSpell = InlineSpellCheckerUI.canSpellCheck;
|
|
|
|
var onMisspelling = InlineSpellCheckerUI.overMisspelling;
|
|
|
|
this.showItem("spell-check-enabled", canSpell);
|
|
|
|
this.showItem("spell-separator", canSpell);
|
|
|
|
if (canSpell)
|
|
|
|
document.getElementById("spell-check-enabled").setAttribute("checked",
|
|
|
|
InlineSpellCheckerUI.enabled);
|
|
|
|
this.showItem("spell-add-to-dictionary", onMisspelling);
|
|
|
|
|
|
|
|
// suggestion list
|
|
|
|
this.showItem("spell-suggestions-separator", onMisspelling);
|
|
|
|
if (onMisspelling) {
|
|
|
|
var menu = document.getElementById("contentAreaContextMenu");
|
|
|
|
var suggestionsSeparator = document.getElementById("spell-suggestions-separator");
|
|
|
|
var numsug = InlineSpellCheckerUI.addSuggestionsToMenu(menu, suggestionsSeparator, 5);
|
|
|
|
this.showItem("spell-no-suggestions", numsug == 0);
|
|
|
|
} else {
|
|
|
|
this.showItem("spell-no-suggestions", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// dictionary list
|
|
|
|
this.showItem("spell-dictionaries", InlineSpellCheckerUI.enabled);
|
|
|
|
if (canSpell) {
|
|
|
|
var dictMenu = document.getElementById("spell-dictionaries-menu");
|
|
|
|
var dictSep = document.getElementById("spell-language-separator");
|
|
|
|
InlineSpellCheckerUI.addDictionaryListToMenu(dictMenu, dictSep);
|
|
|
|
}
|
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
initClipboardItems : function () {
|
|
|
|
|
|
|
|
// Copy depends on whether there is selected text.
|
|
|
|
// Enabling this context menu item is now done through the global
|
|
|
|
// command updating system
|
|
|
|
// this.setItemAttr( "context-copy", "disabled", !this.isTextSelected() );
|
|
|
|
|
|
|
|
goUpdateGlobalEditMenuItems();
|
|
|
|
|
2003-03-04 06:42:17 +00:00
|
|
|
this.showItem( "context-undo", this.onTextInput );
|
|
|
|
this.showItem( "context-sep-undo", this.onTextInput );
|
|
|
|
this.showItem( "context-cut", this.onTextInput );
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-copy", this.isContentSelected || this.onTextInput );
|
2003-03-04 06:42:17 +00:00
|
|
|
this.showItem( "context-paste", this.onTextInput );
|
|
|
|
this.showItem( "context-delete", this.onTextInput );
|
|
|
|
this.showItem( "context-sep-paste", this.onTextInput );
|
2004-07-17 20:53:48 +00:00
|
|
|
this.showItem( "context-selectall", !( this.onLink || this.onImage ) );
|
2005-06-14 09:44:51 +00:00
|
|
|
this.showItem( "context-sep-selectall", this.isContentSelected );
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// XXX dr
|
|
|
|
// ------
|
|
|
|
// nsDocumentViewer.cpp has code to determine whether we're
|
|
|
|
// on a link or an image. we really ought to be using that...
|
|
|
|
|
|
|
|
// Copy email link depends on whether we're on an email link.
|
|
|
|
this.showItem( "context-copyemail", this.onMailtoLink );
|
|
|
|
|
|
|
|
// Copy link location depends on whether we're on a link.
|
|
|
|
this.showItem( "context-copylink", this.onLink );
|
|
|
|
this.showItem( "context-sep-copylink", this.onLink && this.onImage);
|
|
|
|
|
2005-04-21 20:53:03 +00:00
|
|
|
#ifdef CONTEXT_COPY_IMAGE_CONTENTS
|
2004-02-17 04:11:54 +00:00
|
|
|
// Copy image contents depends on whether we're on an image.
|
|
|
|
this.showItem( "context-copyimage-contents", this.onImage );
|
|
|
|
#endif
|
2002-10-13 06:52:56 +00:00
|
|
|
// Copy image location depends on whether we're on an image.
|
|
|
|
this.showItem( "context-copyimage", this.onImage );
|
|
|
|
this.showItem( "context-sep-copyimage", this.onImage );
|
|
|
|
},
|
|
|
|
initMetadataItems : function () {
|
|
|
|
// Show if user clicked on something which has metadata.
|
|
|
|
this.showItem( "context-metadata", this.onMetaDataItem );
|
|
|
|
},
|
2005-12-05 18:18:11 +00:00
|
|
|
// called when the menu is going away
|
|
|
|
hiding : function() {
|
|
|
|
InlineSpellCheckerUI.clearSuggestionsFromMenu();
|
|
|
|
InlineSpellCheckerUI.clearDictionaryListFromMenu();
|
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
// Set various context menu attributes based on the state of the world.
|
2005-12-05 18:18:11 +00:00
|
|
|
setTarget : function ( node, event ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
const xulNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
|
|
|
if ( node.namespaceURI == xulNS ) {
|
|
|
|
this.shouldDisplay = false;
|
|
|
|
return;
|
|
|
|
}
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Initialize contextual info.
|
2005-08-12 06:55:54 +00:00
|
|
|
this.onImage = false;
|
|
|
|
this.onLoadedImage = false;
|
2005-06-14 09:34:49 +00:00
|
|
|
this.onStandaloneImage = false;
|
2005-08-12 06:55:54 +00:00
|
|
|
this.onMetaDataItem = false;
|
|
|
|
this.onTextInput = false;
|
|
|
|
this.onKeywordField = false;
|
|
|
|
this.imageURL = "";
|
|
|
|
this.onLink = false;
|
|
|
|
this.linkURL = "";
|
|
|
|
this.linkURI = null;
|
|
|
|
this.linkProtocol = "";
|
|
|
|
this.onMathML = false;
|
|
|
|
this.inFrame = false;
|
|
|
|
this.hasBGImage = false;
|
|
|
|
this.bgImageURL = "";
|
2005-12-05 18:18:11 +00:00
|
|
|
InlineSpellCheckerUI.uninit();
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
// Remember the node that was clicked.
|
|
|
|
this.target = node;
|
2005-08-12 06:55:54 +00:00
|
|
|
|
|
|
|
// Remember the URL of the document containing the node
|
|
|
|
// for referrer header and for security checks.
|
|
|
|
this.docURL = node.ownerDocument.location.href;
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
// First, do checks for nodes that never have children.
|
2002-10-13 06:52:56 +00:00
|
|
|
if ( this.target.nodeType == Node.ELEMENT_NODE ) {
|
2005-08-12 06:55:54 +00:00
|
|
|
// See if the user clicked on an image.
|
2005-07-28 13:47:59 +00:00
|
|
|
if ( this.target instanceof Components.interfaces.nsIImageLoadingContent && this.target.currentURI ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
this.onImage = true;
|
2005-08-12 06:55:54 +00:00
|
|
|
this.onMetaDataItem = true;
|
|
|
|
|
2005-07-28 13:47:59 +00:00
|
|
|
var request = this.target.getRequest( Components.interfaces.nsIImageLoadingContent.CURRENT_REQUEST );
|
|
|
|
if (request && (request.imageStatus & request.STATUS_SIZE_AVAILABLE))
|
|
|
|
this.onLoadedImage = true;
|
2005-04-20 21:57:01 +00:00
|
|
|
this.imageURL = this.target.currentURI.spec;
|
2005-06-14 09:34:49 +00:00
|
|
|
|
|
|
|
if ( this.target.ownerDocument instanceof ImageDocument)
|
|
|
|
this.onStandaloneImage = true;
|
2005-07-28 13:47:59 +00:00
|
|
|
} else if ( this.target instanceof HTMLInputElement ) {
|
2005-04-20 21:57:01 +00:00
|
|
|
this.onTextInput = this.isTargetATextBox(this.target);
|
2005-12-05 18:18:11 +00:00
|
|
|
// allow spellchecking UI on all writable text boxes except passwords
|
|
|
|
if (this.onTextInput && ! this.target.readOnly && this.target.type != "password") {
|
|
|
|
InlineSpellCheckerUI.init(this.target);
|
|
|
|
InlineSpellCheckerUI.initFromEvent(event);
|
|
|
|
}
|
2005-04-20 21:57:01 +00:00
|
|
|
this.onKeywordField = this.isTargetAKeywordField(this.target);
|
2005-06-30 02:47:04 +00:00
|
|
|
} else if ( this.target instanceof HTMLTextAreaElement ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
this.onTextInput = true;
|
2005-12-05 18:18:11 +00:00
|
|
|
if (! this.target.readOnly) {
|
|
|
|
InlineSpellCheckerUI.init(this.target);
|
|
|
|
InlineSpellCheckerUI.initFromEvent(event);
|
|
|
|
}
|
2005-06-30 02:47:04 +00:00
|
|
|
} else if ( this.target instanceof HTMLHtmlElement ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
// pages with multiple <body>s are lame. we'll teach them a lesson.
|
|
|
|
var bodyElt = this.target.ownerDocument.getElementsByTagName("body")[0];
|
|
|
|
if ( bodyElt ) {
|
|
|
|
var computedURL = this.getComputedURL( bodyElt, "background-image" );
|
|
|
|
if ( computedURL ) {
|
|
|
|
this.hasBGImage = true;
|
2002-10-13 23:52:36 +00:00
|
|
|
this.bgImageURL = makeURLAbsolute( bodyElt.baseURI,
|
|
|
|
computedURL );
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
2005-01-28 16:06:56 +00:00
|
|
|
} else if ( "HTTPIndex" in content &&
|
|
|
|
content.HTTPIndex instanceof Components.interfaces.nsIHTTPIndex ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
this.inDirList = true;
|
|
|
|
// Bubble outward till we get to an element with URL attribute
|
|
|
|
// (which should be the href).
|
|
|
|
var root = this.target;
|
|
|
|
while ( root && !this.link ) {
|
|
|
|
if ( root.tagName == "tree" ) {
|
|
|
|
// Hit root of tree; must have clicked in empty space;
|
|
|
|
// thus, no link.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( root.getAttribute( "URL" ) ) {
|
|
|
|
// Build pseudo link object so link-related functions work.
|
|
|
|
this.onLink = true;
|
|
|
|
this.link = { href : root.getAttribute("URL"),
|
|
|
|
getAttribute: function (attr) {
|
|
|
|
if (attr == "title") {
|
|
|
|
return root.firstChild.firstChild.getAttribute("label");
|
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// If element is a directory, then you can't save it.
|
|
|
|
if ( root.getAttribute( "container" ) == "true" ) {
|
|
|
|
this.onSaveableLink = false;
|
|
|
|
} else {
|
|
|
|
this.onSaveableLink = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
root = root.parentNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
// Second, bubble out, looking for items of interest that can have childen.
|
|
|
|
// Always pick the innermost link, background image, etc.
|
|
|
|
|
2004-12-02 21:20:28 +00:00
|
|
|
const XMLNS = "http://www.w3.org/XML/1998/namespace";
|
2002-10-13 06:52:56 +00:00
|
|
|
var elem = this.target;
|
|
|
|
while ( elem ) {
|
|
|
|
if ( elem.nodeType == Node.ELEMENT_NODE ) {
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Link?
|
2005-06-14 10:15:58 +00:00
|
|
|
if ( !this.onLink &&
|
2005-08-12 06:55:54 +00:00
|
|
|
( (elem instanceof HTMLAnchorElement && elem.href) ||
|
|
|
|
elem instanceof HTMLAreaElement ||
|
|
|
|
elem instanceof HTMLLinkElement ||
|
|
|
|
elem.getAttributeNS( "http://www.w3.org/1999/xlink", "type") == "simple" ) ) {
|
|
|
|
|
|
|
|
// Target is a link or a descendant of a link.
|
2002-10-13 06:52:56 +00:00
|
|
|
this.onLink = true;
|
|
|
|
this.onMetaDataItem = true;
|
2006-01-04 19:11:14 +00:00
|
|
|
|
|
|
|
// xxxmpc: this is kind of a hack to work around a Gecko bug (see bug 266932)
|
|
|
|
// we're going to walk up the DOM looking for a parent link node,
|
|
|
|
// this shouldn't be necessary, but we're matching the existing behaviour for left click
|
|
|
|
var realLink = elem;
|
|
|
|
var parent = elem.parentNode;
|
|
|
|
while (parent) {
|
|
|
|
try {
|
|
|
|
if ( (parent instanceof HTMLAnchorElement && elem.href) ||
|
|
|
|
parent instanceof HTMLAreaElement ||
|
|
|
|
parent instanceof HTMLLinkElement ||
|
|
|
|
parent.getAttributeNS( "http://www.w3.org/1999/xlink", "type") == "simple")
|
|
|
|
realLink = parent;
|
|
|
|
} catch (e) {}
|
|
|
|
parent = parent.parentNode;
|
|
|
|
}
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Remember corresponding element.
|
2006-01-04 19:11:14 +00:00
|
|
|
this.link = realLink;
|
2005-08-12 06:55:54 +00:00
|
|
|
this.linkURL = this.getLinkURL();
|
|
|
|
this.linkURI = this.getLinkURI();
|
|
|
|
this.linkProtocol = this.getLinkProtocol();
|
|
|
|
this.onMailtoLink = (this.linkProtocol == "mailto");
|
2002-10-13 06:52:56 +00:00
|
|
|
this.onSaveableLink = this.isLinkSaveable( this.link );
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Metadata item?
|
|
|
|
if ( !this.onMetaDataItem ) {
|
2005-08-12 06:55:54 +00:00
|
|
|
// We display metadata on anything which fits
|
|
|
|
// the below test, as well as for links and images
|
|
|
|
// (which set this.onMetaDataItem to true elsewhere)
|
2005-06-30 02:47:04 +00:00
|
|
|
if ( ( elem instanceof HTMLQuoteElement && elem.cite) ||
|
|
|
|
( elem instanceof HTMLTableElement && elem.summary) ||
|
|
|
|
( elem instanceof HTMLModElement &&
|
|
|
|
( elem.cite || elem.dateTime ) ) ||
|
|
|
|
( elem instanceof HTMLElement &&
|
|
|
|
( elem.title || elem.lang ) ) ||
|
2004-12-02 21:20:28 +00:00
|
|
|
elem.getAttributeNS(XMLNS, "lang") ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
this.onMetaDataItem = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
// Background image? Don't bother if we've already found a
|
2002-10-13 06:52:56 +00:00
|
|
|
// background image further down the hierarchy. Otherwise,
|
|
|
|
// we look for the computed background-image style.
|
|
|
|
if ( !this.hasBGImage ) {
|
|
|
|
var bgImgUrl = this.getComputedURL( elem, "background-image" );
|
|
|
|
if ( bgImgUrl ) {
|
|
|
|
this.hasBGImage = true;
|
2002-10-13 23:52:36 +00:00
|
|
|
this.bgImageURL = makeURLAbsolute( elem.baseURI,
|
|
|
|
bgImgUrl );
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
elem = elem.parentNode;
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
2005-08-12 06:55:54 +00:00
|
|
|
|
|
|
|
// See if the user clicked on MathML
|
|
|
|
const NS_MathML = "http://www.w3.org/1998/Math/MathML";
|
|
|
|
if ((this.target.nodeType == Node.TEXT_NODE &&
|
|
|
|
this.target.parentNode.namespaceURI == NS_MathML)
|
|
|
|
|| (this.target.namespaceURI == NS_MathML))
|
|
|
|
this.onMathML = true;
|
|
|
|
|
|
|
|
// See if the user clicked in a frame.
|
|
|
|
if ( this.target.ownerDocument != window.content.document ) {
|
|
|
|
this.inFrame = true;
|
|
|
|
}
|
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Returns the computed style attribute for the given element.
|
|
|
|
getComputedStyle: function( elem, prop ) {
|
|
|
|
return elem.ownerDocument.defaultView.getComputedStyle( elem, '' ).getPropertyValue( prop );
|
|
|
|
},
|
|
|
|
// Returns a "url"-type computed style attribute value, with the url() stripped.
|
|
|
|
getComputedURL: function( elem, prop ) {
|
|
|
|
var url = elem.ownerDocument.defaultView.getComputedStyle( elem, '' ).getPropertyCSSValue( prop );
|
|
|
|
return ( url.primitiveType == CSSPrimitiveValue.CSS_URI ) ? url.getStringValue() : null;
|
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
// Returns true if clicked-on link targets a resource that can be saved.
|
2002-10-13 06:52:56 +00:00
|
|
|
isLinkSaveable : function ( link ) {
|
|
|
|
// We don't do the Right Thing for news/snews yet, so turn them off
|
|
|
|
// until we do.
|
2005-08-12 06:55:54 +00:00
|
|
|
return this.linkProtocol && !(
|
|
|
|
this.linkProtocol == "mailto" ||
|
|
|
|
this.linkProtocol == "javascript" ||
|
|
|
|
this.linkProtocol == "news" ||
|
|
|
|
this.linkProtocol == "snews" );
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Open linked-to URL in a new window.
|
|
|
|
openLink : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewWindowWith(this.linkURL, this.docURL, null);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Open linked-to URL in a new tab.
|
|
|
|
openLinkInTab : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewTabWith(this.linkURL, this.docURL, null, null);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Open frame in a new tab.
|
|
|
|
openFrameInTab : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewTabWith(this.target.ownerDocument.location.href, null, null, null);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Reload clicked-in frame.
|
|
|
|
reloadFrame : function () {
|
|
|
|
this.target.ownerDocument.location.reload();
|
|
|
|
},
|
|
|
|
// Open clicked-in frame in its own window.
|
|
|
|
openFrame : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewWindowWith(this.target.ownerDocument.location.href, null, null);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
// Open clicked-in frame in the same window.
|
2002-10-13 06:52:56 +00:00
|
|
|
showOnlyThisFrame : function () {
|
2004-04-20 09:45:12 +00:00
|
|
|
window.loadURI(this.target.ownerDocument.location.href, null, null);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// View Partial Source
|
|
|
|
viewPartialSource : function ( context ) {
|
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
|
|
|
if (focusedWindow == window)
|
2005-01-28 16:06:56 +00:00
|
|
|
focusedWindow = content;
|
2002-10-13 06:52:56 +00:00
|
|
|
var docCharset = null;
|
|
|
|
if (focusedWindow)
|
|
|
|
docCharset = "charset=" + focusedWindow.document.characterSet;
|
|
|
|
|
|
|
|
// "View Selection Source" and others such as "View MathML Source"
|
|
|
|
// are mutually exclusive, with the precedence given to the selection
|
|
|
|
// when there is one
|
|
|
|
var reference = null;
|
|
|
|
if (context == "selection")
|
2005-05-20 17:41:10 +00:00
|
|
|
reference = focusedWindow.getSelection();
|
2002-10-13 06:52:56 +00:00
|
|
|
else if (context == "mathml")
|
|
|
|
reference = this.target;
|
|
|
|
else
|
|
|
|
throw "not reached";
|
|
|
|
|
|
|
|
var docUrl = null; // unused (and play nice for fragments generated via XSLT too)
|
2003-03-01 08:07:13 +00:00
|
|
|
window.openDialog("chrome://global/content/viewPartialSource.xul",
|
2002-10-13 06:52:56 +00:00
|
|
|
"_blank", "scrollbars,resizable,chrome,dialog=no",
|
|
|
|
docUrl, docCharset, reference, context);
|
|
|
|
},
|
|
|
|
// Open new "view source" window with the frame's URL.
|
|
|
|
viewFrameSource : function () {
|
|
|
|
BrowserViewSourceOfDocument(this.target.ownerDocument);
|
|
|
|
},
|
|
|
|
viewInfo : function () {
|
|
|
|
BrowserPageInfo();
|
|
|
|
},
|
|
|
|
viewFrameInfo : function () {
|
|
|
|
BrowserPageInfo(this.target.ownerDocument);
|
|
|
|
},
|
|
|
|
// Change current window to the URL of the image.
|
2004-06-23 22:54:12 +00:00
|
|
|
viewImage : function (e) {
|
2005-08-12 06:55:54 +00:00
|
|
|
urlSecurityCheck( this.imageURL, this.docURL );
|
2004-06-23 22:54:12 +00:00
|
|
|
openUILink( this.imageURL, e );
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Change current window to the URL of the background image.
|
2004-06-23 22:54:12 +00:00
|
|
|
viewBGImage : function (e) {
|
2005-08-12 06:55:54 +00:00
|
|
|
urlSecurityCheck( this.bgImageURL, this.docURL );
|
2004-06-23 22:54:12 +00:00
|
|
|
openUILink( this.bgImageURL, e );
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
disableSetDesktopBackground: function() {
|
|
|
|
// Disable the Set as Desktop Background menu item if we're still trying
|
|
|
|
// to load the image or the load failed.
|
2005-08-22 03:18:45 +00:00
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
const nsIImageLoadingContent = Components.interfaces.nsIImageLoadingContent;
|
2005-08-22 03:18:45 +00:00
|
|
|
if (!(this.target instanceof nsIImageLoadingContent))
|
|
|
|
return true;
|
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
if (("complete" in this.target) && !this.target.complete)
|
|
|
|
return true;
|
2005-08-22 03:18:45 +00:00
|
|
|
|
|
|
|
if (this.target.currentURI.schemeIs("javascript"))
|
2005-08-12 06:55:54 +00:00
|
|
|
return true;
|
2005-08-22 03:18:45 +00:00
|
|
|
|
|
|
|
var request = this.target.QueryInterface(nsIImageLoadingContent)
|
|
|
|
.getRequest(nsIImageLoadingContent.CURRENT_REQUEST);
|
|
|
|
if (!request)
|
|
|
|
return true;
|
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
return false;
|
|
|
|
},
|
2005-06-23 02:25:06 +00:00
|
|
|
setDesktopBackground: function() {
|
2005-08-12 06:55:54 +00:00
|
|
|
// Paranoia: check disableSetDesktopBackground again, in case the
|
|
|
|
// image changed since the context menu was initiated.
|
|
|
|
if (this.disableSetDesktopBackground())
|
|
|
|
return;
|
|
|
|
|
2005-08-22 03:18:45 +00:00
|
|
|
urlSecurityCheck(this.target.currentURI.spec, this.docURL);
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2004-02-10 04:05:34 +00:00
|
|
|
// Confirm since it's annoying if you hit this accidentally.
|
2005-06-23 02:25:06 +00:00
|
|
|
const kDesktopBackgroundURL =
|
|
|
|
"chrome://browser/content/setDesktopBackground.xul";
|
|
|
|
#ifdef XP_MACOSX
|
2005-08-12 06:55:54 +00:00
|
|
|
// On Mac, the Set Desktop Background window is not modal.
|
|
|
|
// Don't open more than one Set Desktop Background window.
|
2005-06-23 02:25:06 +00:00
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
|
|
|
var dbWin = wm.getMostRecentWindow("Shell:SetDesktopBackground");
|
|
|
|
if (dbWin) {
|
|
|
|
dbWin.gSetBackground.init(this.target);
|
|
|
|
dbWin.focus();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
openDialog(kDesktopBackgroundURL, "",
|
|
|
|
"centerscreen,chrome,dialog=no,dependent,resizable=no",
|
|
|
|
this.target);
|
|
|
|
}
|
|
|
|
#else
|
2005-08-12 06:55:54 +00:00
|
|
|
// On non-Mac platforms, the Set Wallpaper dialog is modal.
|
2005-06-23 02:25:06 +00:00
|
|
|
openDialog(kDesktopBackgroundURL, "",
|
2004-02-16 04:10:37 +00:00
|
|
|
"centerscreen,chrome,dialog,modal,dependent",
|
|
|
|
this.target);
|
2005-06-23 02:25:06 +00:00
|
|
|
#endif
|
2005-06-14 10:15:58 +00:00
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
// Save URL of clicked-on frame.
|
|
|
|
saveFrame : function () {
|
|
|
|
saveDocument( this.target.ownerDocument );
|
|
|
|
},
|
|
|
|
// Save URL of clicked-on link.
|
|
|
|
saveLink : function () {
|
2005-08-13 17:36:09 +00:00
|
|
|
urlSecurityCheck(this.linkURL, this.docURL);
|
2005-12-21 18:28:46 +00:00
|
|
|
saveURL( this.linkURL, this.linkText(), null, true, false,
|
|
|
|
makeURI(this.docURL, this.target.ownerDocument.characterSet) );
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2003-08-08 21:23:34 +00:00
|
|
|
sendLink : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
MailIntegration.sendMessage( this.linkURL, "" ); // we don't know the title of the link so pass in an empty string
|
2003-08-08 21:23:34 +00:00
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
// Save URL of clicked-on image.
|
|
|
|
saveImage : function () {
|
2005-08-12 06:55:54 +00:00
|
|
|
urlSecurityCheck(this.imageURL, this.docURL);
|
2005-06-28 14:41:11 +00:00
|
|
|
saveImageURL( this.imageURL, null, "SaveImageTitle", false,
|
2005-08-12 06:55:54 +00:00
|
|
|
false, makeURI(this.docURL) );
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2003-08-08 21:23:34 +00:00
|
|
|
sendImage : function () {
|
2004-03-07 04:42:17 +00:00
|
|
|
MailIntegration.sendMessage(this.imageURL, "");
|
2003-08-08 21:23:34 +00:00
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
toggleImageBlocking : function (aBlock) {
|
2003-03-25 19:05:08 +00:00
|
|
|
var nsIPermissionManager = Components.interfaces.nsIPermissionManager;
|
2002-10-13 06:52:56 +00:00
|
|
|
var permissionmanager =
|
|
|
|
Components.classes["@mozilla.org/permissionmanager;1"]
|
2005-02-28 23:09:24 +00:00
|
|
|
.getService(nsIPermissionManager);
|
|
|
|
|
|
|
|
var uri = this.target.QueryInterface(Components.interfaces.nsIImageLoadingContent).currentURI;
|
|
|
|
|
2003-07-09 00:23:42 +00:00
|
|
|
permissionmanager.add(uri, "image",
|
2003-03-25 19:05:08 +00:00
|
|
|
aBlock ? nsIPermissionManager.DENY_ACTION : nsIPermissionManager.ALLOW_ACTION);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
isImageBlocked : function() {
|
2003-03-25 19:05:08 +00:00
|
|
|
var nsIPermissionManager = Components.interfaces.nsIPermissionManager;
|
|
|
|
var permissionmanager =
|
|
|
|
Components.classes["@mozilla.org/permissionmanager;1"]
|
|
|
|
.getService(Components.interfaces.nsIPermissionManager);
|
2005-02-28 23:09:24 +00:00
|
|
|
|
|
|
|
var uri = this.target.QueryInterface(Components.interfaces.nsIImageLoadingContent).currentURI;
|
|
|
|
|
2003-08-13 06:04:25 +00:00
|
|
|
return permissionmanager.testPermission(uri, "image") == nsIPermissionManager.DENY_ACTION;
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Generate email address and put it on clipboard.
|
|
|
|
copyEmail : function () {
|
|
|
|
// Copy the comma-separated list of email addresses only.
|
|
|
|
// There are other ways of embedding email addresses in a mailto:
|
|
|
|
// link, but such complex parsing is beyond us.
|
2005-08-12 06:55:54 +00:00
|
|
|
var url = this.linkURL;
|
2002-10-13 06:52:56 +00:00
|
|
|
var qmark = url.indexOf( "?" );
|
|
|
|
var addresses;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
if ( qmark > 7 ) { // 7 == length of "mailto:"
|
|
|
|
addresses = url.substring( 7, qmark );
|
|
|
|
} else {
|
|
|
|
addresses = url.substr( 7 );
|
|
|
|
}
|
|
|
|
|
2004-06-01 14:40:34 +00:00
|
|
|
// Let's try to unescape it using a character set
|
|
|
|
// in case the address is not ASCII.
|
|
|
|
try {
|
2005-05-20 17:41:10 +00:00
|
|
|
var characterSet = this.target.ownerDocument.characterSet;
|
2004-06-01 14:40:34 +00:00
|
|
|
const textToSubURI = Components.classes["@mozilla.org/intl/texttosuburi;1"]
|
|
|
|
.getService(Components.interfaces.nsITextToSubURI);
|
2005-01-09 17:34:37 +00:00
|
|
|
addresses = textToSubURI.unEscapeURIForUI(characterSet, addresses);
|
2004-06-01 14:40:34 +00:00
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
var clipboard = this.getService( "@mozilla.org/widget/clipboardhelper;1",
|
|
|
|
Components.interfaces.nsIClipboardHelper );
|
|
|
|
clipboard.copyString(addresses);
|
2005-06-14 10:15:58 +00:00
|
|
|
},
|
2002-10-13 06:52:56 +00:00
|
|
|
addBookmark : function() {
|
|
|
|
var docshell = document.getElementById( "content" ).webNavigation;
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2002-10-13 06:52:56 +00:00
|
|
|
BookmarksUtils.addBookmark( docshell.currentURI.spec,
|
|
|
|
docshell.document.title,
|
2005-02-17 00:17:12 +00:00
|
|
|
docshell.document.charset,
|
|
|
|
BookmarksUtils.getDescriptionFromDocument(docshell.document));
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
addBookmarkForFrame : function() {
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2002-10-13 06:52:56 +00:00
|
|
|
var doc = this.target.ownerDocument;
|
|
|
|
var uri = doc.location.href;
|
|
|
|
var title = doc.title;
|
2005-02-17 00:17:12 +00:00
|
|
|
var description = BookmarksUtils.getDescriptionFromDocument(doc);
|
2002-10-13 06:52:56 +00:00
|
|
|
if ( !title )
|
|
|
|
title = uri;
|
2005-02-17 00:17:12 +00:00
|
|
|
BookmarksUtils.addBookmark(uri, title, doc.charset, description);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
|
|
|
// Open Metadata window for node
|
|
|
|
showMetadata : function () {
|
2003-10-17 18:00:38 +00:00
|
|
|
window.openDialog( "chrome://browser/content/metaData.xul",
|
2002-10-13 06:52:56 +00:00
|
|
|
"_blank",
|
|
|
|
"scrollbars,resizable,chrome,dialog=no",
|
|
|
|
this.target);
|
|
|
|
},
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
// Utilities //
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
// Create instance of component given contractId and iid (as string).
|
|
|
|
createInstance : function ( contractId, iidName ) {
|
|
|
|
var iid = Components.interfaces[ iidName ];
|
|
|
|
return Components.classes[ contractId ].createInstance( iid );
|
|
|
|
},
|
|
|
|
// Get service given contractId and iid (as string).
|
|
|
|
getService : function ( contractId, iidName ) {
|
|
|
|
var iid = Components.interfaces[ iidName ];
|
|
|
|
return Components.classes[ contractId ].getService( iid );
|
|
|
|
},
|
|
|
|
// Show/hide one item (specified via name or the item element itself).
|
|
|
|
showItem : function ( itemOrId, show ) {
|
|
|
|
var item = itemOrId.constructor == String ? document.getElementById(itemOrId) : itemOrId;
|
2005-06-14 10:15:58 +00:00
|
|
|
if (item)
|
2002-10-13 06:52:56 +00:00
|
|
|
item.hidden = !show;
|
|
|
|
},
|
|
|
|
// Set given attribute of specified context-menu item. If the
|
|
|
|
// value is null, then it removes the attribute (which works
|
|
|
|
// nicely for the disabled attribute).
|
|
|
|
setItemAttr : function ( id, attr, val ) {
|
|
|
|
var elem = document.getElementById( id );
|
|
|
|
if ( elem ) {
|
|
|
|
if ( val == null ) {
|
|
|
|
// null indicates attr should be removed.
|
|
|
|
elem.removeAttribute( attr );
|
|
|
|
} else {
|
|
|
|
// Set attr=val.
|
|
|
|
elem.setAttribute( attr, val );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Set context menu attribute according to like attribute of another node
|
|
|
|
// (such as a broadcaster).
|
|
|
|
setItemAttrFromNode : function ( item_id, attr, other_id ) {
|
|
|
|
var elem = document.getElementById( other_id );
|
|
|
|
if ( elem && elem.getAttribute( attr ) == "true" ) {
|
|
|
|
this.setItemAttr( item_id, attr, "true" );
|
|
|
|
} else {
|
|
|
|
this.setItemAttr( item_id, attr, null );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Temporary workaround for DOM api not yet implemented by XUL nodes.
|
|
|
|
cloneNode : function ( item ) {
|
|
|
|
// Create another element like the one we're cloning.
|
|
|
|
var node = document.createElement( item.tagName );
|
|
|
|
|
|
|
|
// Copy attributes from argument item to the new one.
|
|
|
|
var attrs = item.attributes;
|
|
|
|
for ( var i = 0; i < attrs.length; i++ ) {
|
|
|
|
var attr = attrs.item( i );
|
|
|
|
node.setAttribute( attr.nodeName, attr.nodeValue );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Voila!
|
|
|
|
return node;
|
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
// Generate fully qualified URL for clicked-on link.
|
|
|
|
getLinkURL : function () {
|
|
|
|
var href = this.link.href;
|
|
|
|
|
|
|
|
if (href) {
|
|
|
|
return href;
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
2005-08-12 06:55:54 +00:00
|
|
|
|
|
|
|
var href = this.link.getAttributeNS("http://www.w3.org/1999/xlink",
|
2004-10-18 18:59:30 +00:00
|
|
|
"href");
|
2005-08-12 06:55:54 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
if (!href || !href.match(/\S/)) {
|
|
|
|
throw "Empty href"; // Without this we try to save as the current doc, for example, HTML case also throws if empty
|
|
|
|
}
|
2005-08-12 06:55:54 +00:00
|
|
|
href = makeURLAbsolute(this.link.baseURI, href);
|
2002-10-13 06:52:56 +00:00
|
|
|
return href;
|
|
|
|
},
|
2005-08-12 06:55:54 +00:00
|
|
|
|
|
|
|
getLinkURI : function () {
|
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
|
|
|
|
try {
|
|
|
|
return ioService.newURI(this.linkURL, null, null);
|
|
|
|
} catch (ex) {
|
|
|
|
// e.g. empty URL string
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getLinkProtocol : function () {
|
|
|
|
if (this.linkURI) {
|
|
|
|
return this.linkURI.scheme; // can be |undefined|
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
// Get text of link.
|
|
|
|
linkText : function () {
|
|
|
|
var text = gatherTextUnder( this.link );
|
|
|
|
if (!text || !text.match(/\S/)) {
|
|
|
|
text = this.link.getAttribute("title");
|
|
|
|
if (!text || !text.match(/\S/)) {
|
|
|
|
text = this.link.getAttribute("alt");
|
|
|
|
if (!text || !text.match(/\S/)) {
|
2005-08-12 06:55:54 +00:00
|
|
|
text = this.linkURL;
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
},
|
|
|
|
|
2005-08-12 06:55:54 +00:00
|
|
|
// Get selected object and convert it to a string to get
|
|
|
|
// selected text. Only display the first 15 chars.
|
2002-10-13 06:52:56 +00:00
|
|
|
isTextSelection : function() {
|
|
|
|
var result = false;
|
2003-10-30 10:32:59 +00:00
|
|
|
var selection = this.searchSelected(16);
|
2002-10-13 06:52:56 +00:00
|
|
|
|
|
|
|
var searchSelectText;
|
2004-11-30 08:23:02 +00:00
|
|
|
if (selection) {
|
2002-10-13 06:52:56 +00:00
|
|
|
searchSelectText = selection.toString();
|
|
|
|
if (searchSelectText.length > 15)
|
|
|
|
searchSelectText = searchSelectText.substr(0,15) + "...";
|
|
|
|
result = true;
|
|
|
|
|
|
|
|
// format "Search for <selection>" string to show in menu
|
2002-11-02 21:14:22 +00:00
|
|
|
searchSelectText = gNavigatorBundle.getFormattedString("searchText", [searchSelectText]);
|
2002-10-13 06:52:56 +00:00
|
|
|
this.setItemAttr("context-searchselect", "label", searchSelectText);
|
2005-06-14 10:15:58 +00:00
|
|
|
}
|
2002-10-13 06:52:56 +00:00
|
|
|
return result;
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-06-14 09:44:51 +00:00
|
|
|
// Returns true if anything is selected.
|
|
|
|
isContentSelection : function() {
|
2005-08-24 22:15:53 +00:00
|
|
|
return !document.commandDispatcher.focusedWindow.getSelection().isCollapsed;
|
2005-06-14 09:44:51 +00:00
|
|
|
},
|
|
|
|
|
2003-10-30 10:32:59 +00:00
|
|
|
searchSelected : function( charlen ) {
|
2002-10-13 06:52:56 +00:00
|
|
|
var focusedWindow = document.commandDispatcher.focusedWindow;
|
2005-05-20 17:41:10 +00:00
|
|
|
var searchStr = focusedWindow.getSelection();
|
2002-10-13 06:52:56 +00:00
|
|
|
searchStr = searchStr.toString();
|
2003-10-30 10:32:59 +00:00
|
|
|
// searching for more than 150 chars makes no sense
|
|
|
|
if (!charlen)
|
|
|
|
charlen = 150;
|
|
|
|
if (charlen < searchStr.length) {
|
|
|
|
// only use the first charlen important chars. see bug 221361
|
|
|
|
var pattern = new RegExp("^(?:\\s*.){0," + charlen + "}");
|
|
|
|
pattern.test(searchStr);
|
|
|
|
searchStr = RegExp.lastMatch;
|
|
|
|
}
|
2005-10-21 23:01:24 +00:00
|
|
|
searchStr = searchStr.replace(/^\s+/, "");
|
|
|
|
searchStr = searchStr.replace(/\s+$/, "");
|
2003-10-30 10:32:59 +00:00
|
|
|
searchStr = searchStr.replace(/\s+/g, " ");
|
2002-10-13 06:52:56 +00:00
|
|
|
return searchStr;
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-13 06:52:56 +00:00
|
|
|
toString : function () {
|
|
|
|
return "contextMenu.target = " + this.target + "\n" +
|
|
|
|
"contextMenu.onImage = " + this.onImage + "\n" +
|
|
|
|
"contextMenu.onLink = " + this.onLink + "\n" +
|
|
|
|
"contextMenu.link = " + this.link + "\n" +
|
|
|
|
"contextMenu.inFrame = " + this.inFrame + "\n" +
|
|
|
|
"contextMenu.hasBGImage = " + this.hasBGImage + "\n";
|
|
|
|
},
|
|
|
|
isTargetATextBox : function ( node )
|
|
|
|
{
|
2005-06-30 02:47:04 +00:00
|
|
|
if (node instanceof HTMLInputElement)
|
|
|
|
return (node.type == "text" || node.type == "password")
|
2002-10-13 06:52:56 +00:00
|
|
|
|
2005-06-30 02:47:04 +00:00
|
|
|
return (node instanceof HTMLTextAreaElement);
|
2002-10-13 06:52:56 +00:00
|
|
|
},
|
2004-04-10 05:04:20 +00:00
|
|
|
isTargetAKeywordField : function ( node )
|
|
|
|
{
|
|
|
|
var form = node.form;
|
|
|
|
if (!form)
|
|
|
|
return false;
|
|
|
|
var method = form.method.toUpperCase();
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
// These are the following types of forms we can create keywords for:
|
|
|
|
//
|
|
|
|
// method encoding type can create keyword
|
|
|
|
// GET * YES
|
|
|
|
// * YES
|
|
|
|
// POST YES
|
|
|
|
// POST application/x-www-form-urlencoded YES
|
|
|
|
// POST text/plain NO (a little tricky to do)
|
|
|
|
// POST multipart/form-data NO
|
2004-11-30 08:23:02 +00:00
|
|
|
// POST everything else YES
|
2005-06-14 10:15:58 +00:00
|
|
|
return (method == "GET" || method == "") ||
|
2004-11-30 08:23:02 +00:00
|
|
|
(form.enctype != "text/plain") && (form.enctype != "multipart/form-data");
|
2004-04-10 05:04:20 +00:00
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
// Determines whether or not the separator with the specified ID should be
|
2002-10-13 06:52:56 +00:00
|
|
|
// shown or not by determining if there are any non-hidden items between it
|
2005-06-14 10:15:58 +00:00
|
|
|
// and the previous separator.
|
2002-10-13 06:52:56 +00:00
|
|
|
shouldShowSeparator : function ( aSeparatorID )
|
|
|
|
{
|
|
|
|
var separator = document.getElementById(aSeparatorID);
|
|
|
|
if (separator) {
|
|
|
|
var sibling = separator.previousSibling;
|
|
|
|
while (sibling && sibling.localName != "menuseparator") {
|
|
|
|
if (sibling.getAttribute("hidden") != "true")
|
|
|
|
return true;
|
|
|
|
sibling = sibling.previousSibling;
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
return false;
|
2002-10-13 06:52:56 +00:00
|
|
|
}
|
|
|
|
}
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2003-08-03 01:58:52 +00:00
|
|
|
var gWebPanelURI;
|
2003-08-04 03:40:27 +00:00
|
|
|
function openWebPanel(aTitle, aURI)
|
2003-08-03 01:58:52 +00:00
|
|
|
{
|
|
|
|
// Ensure that the web panels sidebar is open.
|
|
|
|
toggleSidebar('viewWebPanelsSidebar', true);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-04 03:40:27 +00:00
|
|
|
// Set the title of the panel.
|
|
|
|
document.getElementById("sidebar-title").value = aTitle;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-03 01:58:52 +00:00
|
|
|
// Tell the Web Panels sidebar to load the bookmark.
|
|
|
|
var sidebar = document.getElementById("sidebar");
|
2005-01-09 01:41:03 +00:00
|
|
|
if (sidebar.docShell && sidebar.contentDocument && sidebar.contentDocument.getElementById('web-panels-browser')) {
|
2003-08-03 01:58:52 +00:00
|
|
|
sidebar.contentWindow.loadWebPanel(aURI);
|
|
|
|
if (gWebPanelURI) {
|
|
|
|
gWebPanelURI = "";
|
|
|
|
sidebar.removeEventListener("load", asyncOpenWebPanel, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// The panel is still being constructed. Attach an onload handler.
|
|
|
|
if (!gWebPanelURI)
|
|
|
|
sidebar.addEventListener("load", asyncOpenWebPanel, true);
|
|
|
|
gWebPanelURI = aURI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function asyncOpenWebPanel(event)
|
|
|
|
{
|
|
|
|
var sidebar = document.getElementById("sidebar");
|
2003-08-04 03:40:27 +00:00
|
|
|
if (gWebPanelURI && sidebar.contentDocument && sidebar.contentDocument.getElementById('web-panels-browser'))
|
2003-08-03 01:58:52 +00:00
|
|
|
sidebar.contentWindow.loadWebPanel(gWebPanelURI);
|
|
|
|
gWebPanelURI = "";
|
|
|
|
sidebar.removeEventListener("load", asyncOpenWebPanel, true);
|
|
|
|
}
|
|
|
|
|
2002-10-13 16:35:19 +00:00
|
|
|
/*
|
|
|
|
* - [ Dependencies ] ---------------------------------------------------------
|
|
|
|
* utilityOverlay.js:
|
|
|
|
* - gatherTextUnder
|
|
|
|
*/
|
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
// Called whenever the user clicks in the content area,
|
|
|
|
// except when left-clicking on links (special case)
|
|
|
|
// should always return true for click to go through
|
2005-06-14 10:15:58 +00:00
|
|
|
function contentAreaClick(event, fieldNormalClicks)
|
2002-10-13 23:52:36 +00:00
|
|
|
{
|
2004-10-22 07:32:08 +00:00
|
|
|
if (!event.isTrusted) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
var target = event.target;
|
|
|
|
var linkNode;
|
|
|
|
|
2005-06-30 02:47:04 +00:00
|
|
|
if (target instanceof HTMLAnchorElement ||
|
|
|
|
target instanceof HTMLAreaElement ||
|
|
|
|
target instanceof HTMLLinkElement) {
|
|
|
|
if (target.hasAttribute("href"))
|
|
|
|
linkNode = target;
|
2006-01-04 19:11:14 +00:00
|
|
|
|
|
|
|
// xxxmpc: this is kind of a hack to work around a Gecko bug (see bug 266932)
|
|
|
|
// we're going to walk up the DOM looking for a parent link node,
|
|
|
|
// this shouldn't be necessary, but we're matching the existing behaviour for left click
|
|
|
|
var parent = target.parentNode;
|
|
|
|
while (parent) {
|
|
|
|
if (parent instanceof HTMLAnchorElement ||
|
|
|
|
parent instanceof HTMLAreaElement ||
|
|
|
|
parent instanceof HTMLLinkElement) {
|
|
|
|
if (parent.hasAttribute("href"))
|
|
|
|
linkNode = parent;
|
|
|
|
}
|
|
|
|
parent = parent.parentNode;
|
|
|
|
}
|
2002-10-13 23:52:36 +00:00
|
|
|
}
|
2005-06-30 02:47:04 +00:00
|
|
|
else {
|
2005-07-07 09:22:37 +00:00
|
|
|
linkNode = event.originalTarget;
|
2005-07-06 17:42:07 +00:00
|
|
|
while (linkNode && !(linkNode instanceof HTMLAnchorElement))
|
|
|
|
linkNode = linkNode.parentNode;
|
2005-06-30 02:47:04 +00:00
|
|
|
// <a> cannot be nested. So if we find an anchor without an
|
|
|
|
// href, there is no useful <a> around the target
|
|
|
|
if (linkNode && !linkNode.hasAttribute("href"))
|
|
|
|
linkNode = null;
|
2002-10-13 23:52:36 +00:00
|
|
|
}
|
2005-04-03 15:41:20 +00:00
|
|
|
var wrapper = null;
|
2002-10-13 23:52:36 +00:00
|
|
|
if (linkNode) {
|
2005-05-20 17:41:10 +00:00
|
|
|
wrapper = linkNode;
|
2003-08-09 06:47:32 +00:00
|
|
|
if (event.button == 0 && !event.ctrlKey && !event.shiftKey &&
|
|
|
|
!event.altKey && !event.metaKey) {
|
|
|
|
// A Web panel's links should target the main content area. Do this
|
|
|
|
// if no modifier keys are down and if there's no target or the target equals
|
|
|
|
// _main (the IE convention) or _content (the Mozilla convention).
|
2005-08-10 20:21:44 +00:00
|
|
|
// XXX Now that markLinkVisited is gone, we may not need to field _main and
|
|
|
|
// _content here.
|
2005-03-16 02:37:21 +00:00
|
|
|
target = wrapper.getAttribute("target");
|
2005-05-20 17:41:10 +00:00
|
|
|
var docWrapper = wrapper.ownerDocument;
|
|
|
|
var locWrapper = docWrapper.location;
|
2005-06-14 10:15:58 +00:00
|
|
|
if (fieldNormalClicks &&
|
|
|
|
(!target || target == "_content" || target == "_main"))
|
2003-08-09 06:47:32 +00:00
|
|
|
// IE uses _main, SeaMonkey uses _content, we support both
|
|
|
|
{
|
2005-06-14 10:15:58 +00:00
|
|
|
if (!wrapper.href)
|
2005-03-16 02:37:21 +00:00
|
|
|
return true;
|
2005-06-14 10:15:58 +00:00
|
|
|
if (wrapper.getAttribute("onclick"))
|
2005-03-16 02:37:21 +00:00
|
|
|
return true;
|
|
|
|
// javascript links should be executed in the current browser
|
|
|
|
if (wrapper.href.substr(0, 11) === "javascript:")
|
|
|
|
return true;
|
2005-06-24 02:00:14 +00:00
|
|
|
// data links should be executed in the current browser
|
|
|
|
if (wrapper.href.substr(0, 5) === "data:")
|
|
|
|
return true;
|
2005-03-16 02:37:21 +00:00
|
|
|
|
|
|
|
if (!webPanelSecurityCheck(locWrapper.href, wrapper.href))
|
|
|
|
return false;
|
|
|
|
|
2004-04-20 09:45:12 +00:00
|
|
|
var postData = { };
|
2004-10-18 18:59:30 +00:00
|
|
|
var url = getShortcutOrURI(wrapper.href, postData);
|
2003-08-09 06:47:32 +00:00
|
|
|
if (!url)
|
2003-08-09 09:07:46 +00:00
|
|
|
return true;
|
2004-04-20 09:45:12 +00:00
|
|
|
loadURI(url, null, postData.value);
|
2003-08-09 06:47:32 +00:00
|
|
|
event.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (linkNode.getAttribute("rel") == "sidebar") {
|
|
|
|
// This is the Opera convention for a special link that - when clicked - allows
|
|
|
|
// you to add a sidebar panel. We support the Opera convention here. The link's
|
|
|
|
// title attribute contains the title that should be used for the sidebar panel.
|
2005-02-17 00:17:12 +00:00
|
|
|
var dialogArgs = {
|
|
|
|
name: wrapper.getAttribute("title"),
|
|
|
|
url: wrapper.href,
|
|
|
|
bWebPanel: true
|
|
|
|
}
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2003-08-09 06:47:32 +00:00
|
|
|
openDialog("chrome://browser/content/bookmarks/addBookmark2.xul", "",
|
2005-04-21 09:29:59 +00:00
|
|
|
BROWSER_ADD_BM_FEATURES, dialogArgs);
|
2003-08-09 06:47:32 +00:00
|
|
|
event.preventDefault();
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME");
|
|
|
|
#endif
|
2003-08-02 07:48:07 +00:00
|
|
|
return false;
|
2003-08-09 06:47:32 +00:00
|
|
|
}
|
|
|
|
else if (target == "_search") {
|
|
|
|
// Used in WinIE as a way of transiently loading pages in a sidebar. We
|
|
|
|
// mimic that WinIE functionality here and also load the page transiently.
|
2005-04-20 18:49:09 +00:00
|
|
|
|
|
|
|
// javascript links targeting the sidebar shouldn't be allowed
|
|
|
|
// we copied this from IE, and IE blocks this completely
|
|
|
|
if (wrapper.href.substr(0, 11) === "javascript:")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// data: URIs are just as dangerous
|
|
|
|
if (wrapper.href.substr(0, 5) === "data:")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!webPanelSecurityCheck(locWrapper.href, wrapper.href))
|
|
|
|
return false;
|
|
|
|
|
2004-10-18 18:59:30 +00:00
|
|
|
openWebPanel(gNavigatorBundle.getString("webPanels"), wrapper.href);
|
2003-08-09 06:47:32 +00:00
|
|
|
event.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2003-08-02 07:48:07 +00:00
|
|
|
}
|
2004-10-18 18:59:30 +00:00
|
|
|
else {
|
|
|
|
handleLinkClick(event, wrapper.href, linkNode);
|
|
|
|
}
|
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// Try simple XLink
|
2006-01-31 20:11:16 +00:00
|
|
|
var href, realHref, baseURI;
|
2002-10-13 23:52:36 +00:00
|
|
|
linkNode = target;
|
|
|
|
while (linkNode) {
|
|
|
|
if (linkNode.nodeType == Node.ELEMENT_NODE) {
|
2005-05-20 17:41:10 +00:00
|
|
|
wrapper = linkNode;
|
2004-10-18 18:59:30 +00:00
|
|
|
|
2006-01-04 19:11:14 +00:00
|
|
|
realHref = wrapper.getAttributeNS("http://www.w3.org/1999/xlink", "href");
|
2006-01-31 20:11:16 +00:00
|
|
|
if (realHref) {
|
2006-01-04 19:11:14 +00:00
|
|
|
href = realHref;
|
2006-01-31 20:11:16 +00:00
|
|
|
baseURI = wrapper.baseURI
|
|
|
|
}
|
2002-10-13 23:52:36 +00:00
|
|
|
}
|
|
|
|
linkNode = linkNode.parentNode;
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
if (href) {
|
2004-10-18 18:59:30 +00:00
|
|
|
href = makeURLAbsolute(baseURI, href);
|
2002-10-13 23:52:36 +00:00
|
|
|
handleLinkClick(event, href, null);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2002-10-19 19:38:57 +00:00
|
|
|
if (event.button == 1 &&
|
2005-07-06 17:42:07 +00:00
|
|
|
!event.getPreventDefault() &&
|
2002-10-13 23:52:36 +00:00
|
|
|
gPrefService.getBoolPref("middlemouse.contentLoadURL")) {
|
2004-06-23 22:54:12 +00:00
|
|
|
middleMousePaste(event);
|
2002-10-13 23:52:36 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleLinkClick(event, href, linkNode)
|
|
|
|
{
|
2005-08-12 06:55:54 +00:00
|
|
|
var docURL = event.target.ownerDocument.location.href;
|
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
switch (event.button) {
|
2003-08-05 09:31:32 +00:00
|
|
|
case 0:
|
|
|
|
#ifdef XP_MACOSX
|
2004-06-23 22:54:12 +00:00
|
|
|
if (event.metaKey) { // Cmd
|
2003-08-05 09:31:32 +00:00
|
|
|
#else
|
2002-10-21 03:51:49 +00:00
|
|
|
if (event.ctrlKey) {
|
2003-08-05 09:31:32 +00:00
|
|
|
#endif
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewTabWith(href, docURL, null, event);
|
2002-10-21 03:51:49 +00:00
|
|
|
event.preventBubble();
|
|
|
|
return true;
|
2005-06-14 10:15:58 +00:00
|
|
|
}
|
2002-10-21 03:51:49 +00:00
|
|
|
// if left button clicked
|
2002-10-19 19:38:57 +00:00
|
|
|
if (event.shiftKey) {
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewWindowWith(href, docURL, null);
|
2002-10-19 19:38:57 +00:00
|
|
|
event.preventBubble();
|
|
|
|
return true;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-19 19:38:57 +00:00
|
|
|
if (event.altKey) {
|
2005-12-21 18:28:46 +00:00
|
|
|
saveURL(href, linkNode ? gatherTextUnder(linkNode) : "", null, true,
|
|
|
|
true, makeURI(docURL, event.target.ownerDocument.characterSet));
|
2002-10-13 16:35:19 +00:00
|
|
|
return true;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
return false;
|
|
|
|
case 1: // if middle button clicked
|
2002-10-19 19:38:57 +00:00
|
|
|
var tab;
|
|
|
|
try {
|
|
|
|
tab = gPrefService.getBoolPref("browser.tabs.opentabfor.middleclick")
|
|
|
|
}
|
|
|
|
catch(ex) {
|
|
|
|
tab = true;
|
|
|
|
}
|
|
|
|
if (tab)
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewTabWith(href, docURL, null, event);
|
2002-10-19 19:38:57 +00:00
|
|
|
else
|
2005-08-12 06:55:54 +00:00
|
|
|
openNewWindowWith(href, docURL, null);
|
2002-10-19 19:38:57 +00:00
|
|
|
event.preventBubble();
|
|
|
|
return true;
|
2002-10-13 16:35:19 +00:00
|
|
|
}
|
2002-10-13 23:52:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2002-11-16 17:14:12 +00:00
|
|
|
function middleMousePaste(event)
|
2002-10-13 23:52:36 +00:00
|
|
|
{
|
|
|
|
var url = readFromClipboard();
|
|
|
|
if (!url)
|
2004-06-23 22:54:12 +00:00
|
|
|
return;
|
2004-04-20 09:45:12 +00:00
|
|
|
var postData = { };
|
|
|
|
url = getShortcutOrURI(url, postData);
|
2002-10-13 23:52:36 +00:00
|
|
|
if (!url)
|
2004-06-23 22:54:12 +00:00
|
|
|
return;
|
2004-03-17 01:51:49 +00:00
|
|
|
|
2005-07-05 23:08:30 +00:00
|
|
|
try {
|
|
|
|
addToUrlbarHistory(url);
|
|
|
|
} catch (ex) {
|
|
|
|
// Things may go wrong when adding url to session history,
|
|
|
|
// but don't let that interfere with the loading of the url.
|
|
|
|
}
|
|
|
|
|
2004-06-23 22:54:12 +00:00
|
|
|
openUILink(url,
|
|
|
|
event,
|
|
|
|
true /* ignore the fact this is a middle click */);
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
event.preventBubble();
|
|
|
|
}
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2005-06-14 10:15:58 +00:00
|
|
|
function makeURLAbsolute( base, url )
|
2002-10-13 23:52:36 +00:00
|
|
|
{
|
|
|
|
// Construct nsIURL.
|
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService);
|
|
|
|
var baseURI = ioService.newURI(base, null, null);
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2002-10-13 23:52:36 +00:00
|
|
|
return ioService.newURI(baseURI.resolve(url), null, null).spec;
|
|
|
|
}
|
2002-10-13 16:35:19 +00:00
|
|
|
|
2002-12-07 20:44:19 +00:00
|
|
|
/*
|
|
|
|
* Note that most of this routine has been moved into C++ in order to
|
|
|
|
* be available for all <browser> tags as well as gecko embedding. See
|
|
|
|
* mozilla/content/base/src/nsContentAreaDragDrop.cpp.
|
|
|
|
*
|
|
|
|
* Do not add any new fuctionality here other than what is needed for
|
|
|
|
* a standalone product.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var contentAreaDNDObserver = {
|
|
|
|
onDrop: function (aEvent, aXferData, aDragSession)
|
|
|
|
{
|
|
|
|
var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
|
|
|
|
|
2004-08-26 07:47:38 +00:00
|
|
|
// valid urls don't contain spaces ' '; if we have a space it
|
|
|
|
// isn't a valid url, or if it's a javascript: or data: url,
|
|
|
|
// bail out
|
|
|
|
if (!url || !url.length || url.indexOf(" ", 0) != -1 ||
|
|
|
|
/^\s*(javascript|data):/.test(url))
|
2002-12-07 20:44:19 +00:00
|
|
|
return;
|
|
|
|
|
2005-03-17 17:40:55 +00:00
|
|
|
getBrowser().dragDropSecurityCheck(aEvent, aDragSession, url);
|
2005-03-16 00:40:21 +00:00
|
|
|
|
2006-01-06 21:08:48 +00:00
|
|
|
switch (document.documentElement.getAttribute('windowtype')) {
|
2002-12-07 20:44:19 +00:00
|
|
|
case "navigator:browser":
|
2004-04-20 09:45:12 +00:00
|
|
|
var postData = { };
|
|
|
|
var uri = getShortcutOrURI(url, postData);
|
|
|
|
loadURI(uri, null, postData.value);
|
2002-12-07 20:44:19 +00:00
|
|
|
break;
|
|
|
|
case "navigator:view-source":
|
|
|
|
viewSource(url);
|
|
|
|
break;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-12-07 20:44:19 +00:00
|
|
|
// keep the event from being handled by the dragDrop listeners
|
2005-06-14 10:15:58 +00:00
|
|
|
// built-in to gecko if they happen to be above us.
|
2002-12-07 20:44:19 +00:00
|
|
|
aEvent.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
getSupportedFlavours: function ()
|
|
|
|
{
|
|
|
|
var flavourSet = new FlavourSet();
|
|
|
|
flavourSet.appendFlavour("text/x-moz-url");
|
|
|
|
flavourSet.appendFlavour("text/unicode");
|
|
|
|
flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
|
|
|
|
return flavourSet;
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2002-12-07 20:44:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// For extensions
|
|
|
|
function getBrowser()
|
2002-10-13 16:39:47 +00:00
|
|
|
{
|
2002-12-07 20:44:19 +00:00
|
|
|
if (!gBrowser)
|
|
|
|
gBrowser = document.getElementById("content");
|
|
|
|
return gBrowser;
|
|
|
|
}
|
|
|
|
|
|
|
|
function MultiplexHandler(event)
|
|
|
|
{ try {
|
2002-10-13 16:39:47 +00:00
|
|
|
var node = event.target;
|
|
|
|
var name = node.getAttribute('name');
|
|
|
|
|
|
|
|
if (name == 'detectorGroup') {
|
2002-12-07 20:44:19 +00:00
|
|
|
SetForcedDetector(true);
|
|
|
|
SelectDetector(event, false);
|
2002-10-13 16:39:47 +00:00
|
|
|
} else if (name == 'charsetGroup') {
|
|
|
|
var charset = node.getAttribute('id');
|
|
|
|
charset = charset.substring('charset.'.length, charset.length)
|
|
|
|
SetForcedCharset(charset);
|
|
|
|
SetDefaultCharacterSet(charset);
|
|
|
|
} else if (name == 'charsetCustomize') {
|
|
|
|
//do nothing - please remove this else statement, once the charset prefs moves to the pref window
|
|
|
|
} else {
|
|
|
|
SetForcedCharset(node.getAttribute('id'));
|
|
|
|
SetDefaultCharacterSet(node.getAttribute('id'));
|
|
|
|
}
|
2002-12-07 20:44:19 +00:00
|
|
|
} catch(ex) { alert(ex); }
|
2002-10-13 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetDefaultCharacterSet(charset)
|
|
|
|
{
|
|
|
|
BrowserSetDefaultCharacterSet(charset);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SelectDetector(event, doReload)
|
|
|
|
{
|
|
|
|
var uri = event.target.getAttribute("id");
|
|
|
|
var prefvalue = uri.substring('chardet.'.length, uri.length);
|
|
|
|
if ("off" == prefvalue) { // "off" is special value to turn off the detectors
|
|
|
|
prefvalue = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2002-12-07 20:44:19 +00:00
|
|
|
var pref = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
var str = Components.classes["@mozilla.org/supports-string;1"]
|
|
|
|
.createInstance(Components.interfaces.nsISupportsString);
|
|
|
|
|
2002-10-13 16:39:47 +00:00
|
|
|
str.data = prefvalue;
|
2002-12-07 20:44:19 +00:00
|
|
|
pref.setComplexValue("intl.charset.detector",
|
2002-10-13 17:23:14 +00:00
|
|
|
Components.interfaces.nsISupportsString, str);
|
2005-01-28 16:06:56 +00:00
|
|
|
if (doReload) window.content.location.reload();
|
2002-10-13 16:39:47 +00:00
|
|
|
}
|
|
|
|
catch (ex) {
|
2002-12-07 20:44:19 +00:00
|
|
|
dump("Failed to set the intl.charset.detector preference.\n");
|
2002-10-13 16:39:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-07 20:44:19 +00:00
|
|
|
function SetForcedDetector(doReload)
|
|
|
|
{
|
|
|
|
BrowserSetForcedDetector(doReload);
|
2002-10-13 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetForcedCharset(charset)
|
|
|
|
{
|
|
|
|
BrowserSetForcedCharacterSet(charset);
|
|
|
|
}
|
|
|
|
|
2002-12-07 20:44:19 +00:00
|
|
|
function BrowserSetDefaultCharacterSet(aCharset)
|
|
|
|
{
|
|
|
|
// no longer needed; set when setting Force; see bug 79608
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserSetForcedCharacterSet(aCharset)
|
|
|
|
{
|
|
|
|
var docCharset = getBrowser().docShell.QueryInterface(
|
|
|
|
Components.interfaces.nsIDocCharset);
|
|
|
|
docCharset.charset = aCharset;
|
|
|
|
BrowserReloadWithFlags(nsIWebNavigation.LOAD_FLAGS_CHARSET_CHANGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserSetForcedDetector(doReload)
|
|
|
|
{
|
|
|
|
getBrowser().documentCharsetInfo.forcedDetector = true;
|
|
|
|
if (doReload)
|
|
|
|
BrowserReloadWithFlags(nsIWebNavigation.LOAD_FLAGS_CHARSET_CHANGE);
|
|
|
|
}
|
|
|
|
|
2002-10-13 16:39:47 +00:00
|
|
|
function UpdateCurrentCharset()
|
|
|
|
{
|
|
|
|
var menuitem = null;
|
|
|
|
|
|
|
|
// exctract the charset from DOM
|
|
|
|
var wnd = document.commandDispatcher.focusedWindow;
|
2005-01-28 16:06:56 +00:00
|
|
|
if ((window == wnd) || (wnd == null)) wnd = window.content;
|
2002-10-13 16:39:47 +00:00
|
|
|
menuitem = document.getElementById('charset.' + wnd.document.characterSet);
|
|
|
|
|
|
|
|
if (menuitem) {
|
|
|
|
// uncheck previously checked item to workaround Mac checkmark problem
|
|
|
|
// bug 98625
|
|
|
|
if (gPrevCharset) {
|
|
|
|
var pref_item = document.getElementById('charset.' + gPrevCharset);
|
|
|
|
if (pref_item)
|
|
|
|
pref_item.setAttribute('checked', 'false');
|
|
|
|
}
|
|
|
|
menuitem.setAttribute('checked', 'true');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function UpdateCharsetDetector()
|
|
|
|
{
|
|
|
|
var prefvalue;
|
|
|
|
|
|
|
|
try {
|
2002-12-07 20:44:19 +00:00
|
|
|
var pref = Components.classes["@mozilla.org/preferences-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
|
|
prefvalue = pref.getComplexValue("intl.charset.detector",
|
2002-10-13 16:39:47 +00:00
|
|
|
Components.interfaces.nsIPrefLocalizedString).data;
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
prefvalue = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefvalue == "") prefvalue = "off";
|
|
|
|
dump("intl.charset.detector = "+ prefvalue + "\n");
|
|
|
|
|
|
|
|
prefvalue = 'chardet.' + prefvalue;
|
|
|
|
var menuitem = document.getElementById(prefvalue);
|
|
|
|
|
|
|
|
if (menuitem) {
|
|
|
|
menuitem.setAttribute('checked', 'true');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function UpdateMenus(event)
|
|
|
|
{
|
|
|
|
// use setTimeout workaround to delay checkmark the menu
|
|
|
|
// when onmenucomplete is ready then use it instead of oncreate
|
|
|
|
// see bug 78290 for the detail
|
|
|
|
UpdateCurrentCharset();
|
2004-07-07 03:04:09 +00:00
|
|
|
setTimeout(UpdateCurrentCharset, 0);
|
2002-10-13 16:39:47 +00:00
|
|
|
UpdateCharsetDetector();
|
2004-07-07 03:04:09 +00:00
|
|
|
setTimeout(UpdateCharsetDetector, 0);
|
2002-10-13 16:39:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function CreateMenu(node)
|
|
|
|
{
|
|
|
|
var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
observerService.notifyObservers(null, "charsetmenu-selected", node);
|
|
|
|
}
|
|
|
|
|
|
|
|
function charsetLoadListener (event)
|
|
|
|
{
|
2005-01-28 16:06:56 +00:00
|
|
|
var charset = window.content.document.characterSet;
|
2002-10-13 16:39:47 +00:00
|
|
|
|
|
|
|
if (charset.length > 0 && (charset != gLastBrowserCharset)) {
|
|
|
|
if (!gCharsetMenu)
|
2002-12-07 20:44:19 +00:00
|
|
|
gCharsetMenu = Components.classes['@mozilla.org/rdf/datasource;1?name=charset-menu'].getService().QueryInterface(Components.interfaces.nsICurrentCharsetListener);
|
2002-10-13 16:39:47 +00:00
|
|
|
gCharsetMenu.SetCurrentCharset(charset);
|
|
|
|
gPrevCharset = gLastBrowserCharset;
|
|
|
|
gLastBrowserCharset = charset;
|
|
|
|
}
|
|
|
|
}
|
2003-08-05 10:16:09 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
/* Begin Page Style Functions */
|
2003-08-10 08:04:58 +00:00
|
|
|
function getStyleSheetArray(frame)
|
|
|
|
{
|
|
|
|
var styleSheets = frame.document.styleSheets;
|
|
|
|
var styleSheetsArray = new Array(styleSheets.length);
|
|
|
|
for (var i = 0; i < styleSheets.length; i++) {
|
|
|
|
styleSheetsArray[i] = styleSheets[i];
|
|
|
|
}
|
|
|
|
return styleSheetsArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getAllStyleSheets(frameset)
|
|
|
|
{
|
|
|
|
var styleSheetsArray = getStyleSheetArray(frameset);
|
|
|
|
for (var i = 0; i < frameset.frames.length; i++) {
|
|
|
|
var frameSheets = getAllStyleSheets(frameset.frames[i]);
|
|
|
|
styleSheetsArray = styleSheetsArray.concat(frameSheets);
|
|
|
|
}
|
|
|
|
return styleSheetsArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
function stylesheetFillPopup(menuPopup)
|
|
|
|
{
|
2004-11-30 08:23:02 +00:00
|
|
|
var noStyle = menuPopup.firstChild;
|
|
|
|
var persistentOnly = noStyle.nextSibling;
|
|
|
|
var sep = persistentOnly.nextSibling;
|
2003-08-10 08:04:58 +00:00
|
|
|
while (sep.nextSibling)
|
|
|
|
menuPopup.removeChild(sep.nextSibling);
|
|
|
|
|
2005-01-28 16:06:56 +00:00
|
|
|
var styleSheets = getAllStyleSheets(window.content);
|
2003-08-10 08:04:58 +00:00
|
|
|
var currentStyleSheets = [];
|
2004-11-30 08:23:02 +00:00
|
|
|
var styleDisabled = getMarkupDocumentViewer().authorStyleDisabled;
|
2003-08-10 08:04:58 +00:00
|
|
|
var haveAltSheets = false;
|
2004-11-30 08:23:02 +00:00
|
|
|
var altStyleSelected = false;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-10 08:04:58 +00:00
|
|
|
for (var i = 0; i < styleSheets.length; ++i) {
|
|
|
|
var currentStyleSheet = styleSheets[i];
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-10 08:04:58 +00:00
|
|
|
// Skip any stylesheets that don't match the screen media type.
|
|
|
|
var media = currentStyleSheet.media.mediaText.toLowerCase();
|
|
|
|
if (media && (media.indexOf("screen") == -1) && (media.indexOf("all") == -1))
|
|
|
|
continue;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-10 08:04:58 +00:00
|
|
|
if (currentStyleSheet.title) {
|
|
|
|
if (!currentStyleSheet.disabled)
|
2004-11-30 08:23:02 +00:00
|
|
|
altStyleSelected = true;
|
2003-08-10 08:04:58 +00:00
|
|
|
|
|
|
|
haveAltSheets = true;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-08-10 08:04:58 +00:00
|
|
|
var lastWithSameTitle = null;
|
|
|
|
if (currentStyleSheet.title in currentStyleSheets)
|
|
|
|
lastWithSameTitle = currentStyleSheets[currentStyleSheet.title];
|
|
|
|
|
|
|
|
if (!lastWithSameTitle) {
|
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
menuItem.setAttribute("type", "radio");
|
|
|
|
menuItem.setAttribute("label", currentStyleSheet.title);
|
|
|
|
menuItem.setAttribute("data", currentStyleSheet.title);
|
2004-11-30 08:23:02 +00:00
|
|
|
menuItem.setAttribute("checked", !currentStyleSheet.disabled && !styleDisabled);
|
2003-08-10 08:04:58 +00:00
|
|
|
menuPopup.appendChild(menuItem);
|
|
|
|
currentStyleSheets[currentStyleSheet.title] = menuItem;
|
|
|
|
} else {
|
|
|
|
if (currentStyleSheet.disabled)
|
|
|
|
lastWithSameTitle.removeAttribute("checked");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
noStyle.setAttribute("checked", styleDisabled);
|
|
|
|
persistentOnly.setAttribute("checked", !altStyleSelected && !styleDisabled);
|
2005-01-28 16:06:56 +00:00
|
|
|
persistentOnly.hidden = (window.content.document.preferredStylesheetSet) ? true : false;
|
2004-11-30 08:23:02 +00:00
|
|
|
sep.hidden = (noStyle.hidden && persistentOnly.hidden) || !haveAltSheets;
|
|
|
|
return true;
|
2003-08-10 08:04:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function stylesheetInFrame(frame, title) {
|
|
|
|
var docStyleSheets = frame.document.styleSheets;
|
|
|
|
|
|
|
|
for (var i = 0; i < docStyleSheets.length; ++i) {
|
|
|
|
if (docStyleSheets[i].title == title)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function stylesheetSwitchFrame(frame, title) {
|
|
|
|
var docStyleSheets = frame.document.styleSheets;
|
|
|
|
|
|
|
|
for (var i = 0; i < docStyleSheets.length; ++i) {
|
|
|
|
var docStyleSheet = docStyleSheets[i];
|
|
|
|
|
|
|
|
if (title == "_nostyle")
|
|
|
|
docStyleSheet.disabled = true;
|
|
|
|
else if (docStyleSheet.title)
|
|
|
|
docStyleSheet.disabled = (docStyleSheet.title != title);
|
|
|
|
else if (docStyleSheet.disabled)
|
|
|
|
docStyleSheet.disabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function stylesheetSwitchAll(frameset, title) {
|
|
|
|
if (!title || title == "_nostyle" || stylesheetInFrame(frameset, title)) {
|
|
|
|
stylesheetSwitchFrame(frameset, title);
|
|
|
|
}
|
|
|
|
for (var i = 0; i < frameset.frames.length; i++) {
|
|
|
|
stylesheetSwitchAll(frameset.frames[i], title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
function setStyleDisabled(disabled) {
|
|
|
|
getMarkupDocumentViewer().authorStyleDisabled = disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ALTSS_ICON
|
2005-11-12 01:51:36 +00:00
|
|
|
function updatePageStyles(evt) {
|
2004-11-30 08:23:02 +00:00
|
|
|
if (!gPageStyleButton)
|
|
|
|
gPageStyleButton = document.getElementById("page-theme-button");
|
2003-08-10 08:04:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var hasAltSS = false;
|
2005-01-28 16:06:56 +00:00
|
|
|
var stylesheets = window.content.document.styleSheets;
|
|
|
|
var preferredSheet = window.content.document.preferredStylesheetSet;
|
2003-08-10 08:04:58 +00:00
|
|
|
for (var i = 0; i < stylesheets.length; ++i) {
|
|
|
|
var currentStyleSheet = stylesheets[i];
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (currentStyleSheet.title && currentStyleSheet.title != preferredSheet) {
|
2003-08-10 08:04:58 +00:00
|
|
|
// Skip any stylesheets that don't match the screen media type.
|
|
|
|
var media = currentStyleSheet.media.mediaText.toLowerCase();
|
|
|
|
if (media && (media.indexOf("screen") == -1) && (media.indexOf("all") == -1))
|
|
|
|
continue;
|
2004-11-30 08:23:02 +00:00
|
|
|
hasAltSS = true;
|
2003-08-10 08:04:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
if (hasAltSS) {
|
|
|
|
gPageStyleButton.setAttribute("themes", "true");
|
|
|
|
// FIXME: Do a first-time explanation of page styles here perhaps?
|
2003-08-10 08:13:47 +00:00
|
|
|
// Avoid for now since Firebird's default home page has an alt sheet.
|
2003-08-10 08:04:58 +00:00
|
|
|
}
|
|
|
|
else
|
2004-11-30 08:23:02 +00:00
|
|
|
gPageStyleButton.removeAttribute("themes");
|
2003-08-10 08:04:58 +00:00
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
#endif
|
|
|
|
/* End of the Page Style functions */
|
2003-08-10 08:04:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
var BrowserOffline = {
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// BrowserOffline Public Methods
|
|
|
|
init: function ()
|
|
|
|
{
|
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
os.addObserver(this, "network:offline-status-changed", false);
|
|
|
|
|
|
|
|
if (!this._uiElement)
|
|
|
|
this._uiElement = document.getElementById("goOfflineMenuitem");
|
|
|
|
|
|
|
|
// set the initial state
|
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
|
|
|
|
var isOffline = false;
|
|
|
|
try {
|
|
|
|
isOffline = gPrefService.getBoolPref("browser.offline");
|
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
ioService.offline = isOffline;
|
|
|
|
|
|
|
|
this._updateOfflineUI(isOffline);
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
uninit: function ()
|
|
|
|
{
|
2004-02-25 00:27:13 +00:00
|
|
|
try {
|
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
os.removeObserver(this, "network:offline-status-changed");
|
|
|
|
} catch (ex) {
|
|
|
|
}
|
2003-12-02 00:29:22 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
toggleOfflineStatus: function ()
|
|
|
|
{
|
2003-12-02 00:59:33 +00:00
|
|
|
if (!this._canGoOffline()) {
|
|
|
|
this._updateOfflineUI(false);
|
2003-12-02 00:29:22 +00:00
|
|
|
return;
|
2003-12-02 00:59:33 +00:00
|
|
|
}
|
2003-12-02 00:29:22 +00:00
|
|
|
|
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
|
|
|
|
ioService.offline = !ioService.offline;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
gPrefService.setBoolPref("browser.offline", ioService.offline);
|
|
|
|
},
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsIObserver
|
2005-06-14 10:15:58 +00:00
|
|
|
observe: function (aSubject, aTopic, aState)
|
2003-12-02 00:29:22 +00:00
|
|
|
{
|
|
|
|
if (aTopic != "network:offline-status-changed")
|
|
|
|
return;
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
this._updateOfflineUI(aState == "offline");
|
|
|
|
},
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// BrowserOffline Implementation Methods
|
|
|
|
_canGoOffline: function ()
|
|
|
|
{
|
|
|
|
var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
if (os) {
|
|
|
|
try {
|
|
|
|
var cancelGoOffline = Components.classes["@mozilla.org/supports-PRBool;1"].createInstance(Components.interfaces.nsISupportsPRBool);
|
|
|
|
os.notifyObservers(cancelGoOffline, "offline-requested", null);
|
2005-06-14 10:15:58 +00:00
|
|
|
|
|
|
|
// Something aborted the quit process.
|
2003-12-02 00:29:22 +00:00
|
|
|
if (cancelGoOffline.data)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_uiElement: null,
|
|
|
|
_updateOfflineUI: function (aOffline)
|
|
|
|
{
|
|
|
|
var offlineLocked = gPrefService.prefIsLocked("network.online");
|
2005-06-14 10:15:58 +00:00
|
|
|
if (offlineLocked)
|
2003-12-02 00:29:22 +00:00
|
|
|
this._uiElement.setAttribute("disabled", "true");
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2003-12-02 00:29:22 +00:00
|
|
|
this._uiElement.setAttribute("checked", aOffline);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2004-02-19 21:52:31 +00:00
|
|
|
function WindowIsClosing()
|
|
|
|
{
|
|
|
|
var browser = getBrowser();
|
|
|
|
var cn = browser.tabContainer.childNodes;
|
|
|
|
var numtabs = cn.length;
|
2004-11-30 08:23:02 +00:00
|
|
|
var reallyClose = browser.warnAboutClosingTabs(true);
|
2004-02-19 21:52:31 +00:00
|
|
|
|
|
|
|
for (var i = 0; reallyClose && i < numtabs; ++i) {
|
|
|
|
var ds = browser.getBrowserForTab(cn[i]).docShell;
|
|
|
|
|
|
|
|
if (ds.contentViewer && !ds.contentViewer.permitUnload())
|
|
|
|
reallyClose = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reallyClose)
|
|
|
|
return closeWindow(false);
|
|
|
|
|
|
|
|
return reallyClose;
|
|
|
|
}
|
2004-03-07 04:42:17 +00:00
|
|
|
|
|
|
|
var MailIntegration = {
|
2006-01-16 22:52:03 +00:00
|
|
|
sendLinkForContent: function () {
|
2005-05-20 17:41:10 +00:00
|
|
|
this.sendMessage(window.content.location.href,
|
2005-06-14 10:15:58 +00:00
|
|
|
window.content.document.title);
|
2004-03-07 04:42:17 +00:00
|
|
|
},
|
|
|
|
|
2006-01-16 22:52:03 +00:00
|
|
|
sendMessage: function (aBody, aSubject) {
|
2004-03-07 04:42:17 +00:00
|
|
|
// generate a mailto url based on the url and the url's title
|
2006-01-16 22:52:03 +00:00
|
|
|
var mailtoUrl = "mailto:";
|
|
|
|
if (aBody) {
|
|
|
|
mailtoUrl += "?body=" + encodeURIComponent(aBody);
|
|
|
|
mailtoUrl += "&subject=" + encodeURIComponent(aSubject);
|
|
|
|
}
|
2004-03-07 04:42:17 +00:00
|
|
|
|
2006-01-16 22:52:03 +00:00
|
|
|
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIIOService);
|
2004-03-07 04:42:17 +00:00
|
|
|
var uri = ioService.newURI(mailtoUrl, null, null);
|
|
|
|
|
2006-01-16 22:52:03 +00:00
|
|
|
// now pass this uri to the operating system
|
2005-06-14 10:15:58 +00:00
|
|
|
this._launchExternalUrl(uri);
|
2004-03-07 04:42:17 +00:00
|
|
|
},
|
|
|
|
|
2006-01-16 22:52:03 +00:00
|
|
|
// a generic method which can be used to pass arbitrary urls to the operating
|
|
|
|
// system.
|
2004-03-07 04:42:17 +00:00
|
|
|
// aURL --> a nsIURI which represents the url to launch
|
2006-01-16 22:52:03 +00:00
|
|
|
_launchExternalUrl: function (aURL) {
|
|
|
|
var extProtocolSvc =
|
|
|
|
Components.classes["@mozilla.org/uriloader/external-protocol-service;1"]
|
|
|
|
.getService(Components.interfaces.nsIExternalProtocolService);
|
2004-03-07 04:42:17 +00:00
|
|
|
if (extProtocolSvc)
|
|
|
|
extProtocolSvc.loadUrl(aURL);
|
|
|
|
}
|
2004-03-08 14:27:43 +00:00
|
|
|
};
|
2004-04-10 05:04:20 +00:00
|
|
|
|
|
|
|
function BrowserOpenExtensions(aOpenMode)
|
|
|
|
{
|
|
|
|
const EMTYPE = "Extension:Manager";
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-04-10 05:04:20 +00:00
|
|
|
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
|
|
|
|
.getService(Components.interfaces.nsIWindowMediator);
|
|
|
|
var needToOpen = true;
|
2004-05-11 06:58:58 +00:00
|
|
|
var windowType = EMTYPE + "-" + aOpenMode;
|
|
|
|
var windows = wm.getEnumerator(windowType);
|
2004-04-10 05:04:20 +00:00
|
|
|
while (windows.hasMoreElements()) {
|
|
|
|
var theEM = windows.getNext().QueryInterface(Components.interfaces.nsIDOMWindowInternal);
|
2004-05-11 06:58:58 +00:00
|
|
|
if (theEM.document.documentElement.getAttribute("windowtype") == windowType) {
|
2004-04-10 05:04:20 +00:00
|
|
|
theEM.focus();
|
|
|
|
needToOpen = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needToOpen) {
|
2004-05-11 06:58:58 +00:00
|
|
|
const EMURL = "chrome://mozapps/content/extensions/extensions.xul?type=" + aOpenMode;
|
2004-04-10 05:04:20 +00:00
|
|
|
const EMFEATURES = "chrome,dialog=no,resizable";
|
2004-05-13 04:39:03 +00:00
|
|
|
window.openDialog(EMURL, "", EMFEATURES);
|
2004-04-10 05:04:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-28 22:42:44 +00:00
|
|
|
function escapeNameValuePair(aName, aValue, aIsFormUrlEncoded)
|
|
|
|
{
|
|
|
|
if (aIsFormUrlEncoded)
|
|
|
|
return escape(aName + "=" + aValue);
|
|
|
|
else
|
|
|
|
return escape(aName) + "=" + escape(aValue);
|
|
|
|
}
|
|
|
|
|
2004-04-10 05:04:20 +00:00
|
|
|
function AddKeywordForSearchField()
|
|
|
|
{
|
|
|
|
var node = document.popupNode;
|
2005-09-28 22:42:44 +00:00
|
|
|
|
|
|
|
var docURI = makeURI(node.ownerDocument.URL,
|
|
|
|
node.ownerDocument.characterSet);
|
|
|
|
|
|
|
|
var formURI = makeURI(node.form.getAttribute("action"),
|
|
|
|
node.ownerDocument.characterSet,
|
|
|
|
docURI);
|
|
|
|
|
|
|
|
var spec = formURI.spec;
|
|
|
|
|
|
|
|
var isURLEncoded =
|
|
|
|
(node.form.method.toUpperCase() == "POST"
|
|
|
|
&& (node.form.enctype == "application/x-www-form-urlencoded" ||
|
|
|
|
node.form.enctype == ""));
|
|
|
|
|
|
|
|
var el, type;
|
|
|
|
var formData = [];
|
|
|
|
|
|
|
|
for (var i=0; i < node.form.elements.length; i++) {
|
|
|
|
el = node.form.elements[i];
|
|
|
|
|
|
|
|
if (!el.type) // happens with fieldsets
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (el == node) {
|
|
|
|
formData.push((isURLEncoded) ? escapeNameValuePair(el.name, "%s", true) :
|
|
|
|
// Don't escape "%s", just append
|
|
|
|
escapeNameValuePair(el.name, "", false) + "%s");
|
|
|
|
continue;
|
2004-04-20 09:45:12 +00:00
|
|
|
}
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2005-09-28 22:42:44 +00:00
|
|
|
type = el.type.toLowerCase();
|
|
|
|
|
|
|
|
if ((type == "text" || type == "hidden" || type == "textarea") ||
|
|
|
|
((type == "checkbox" || type == "radio") && el.checked)) {
|
|
|
|
formData.push(escapeNameValuePair(el.name, el.value, isURLEncoded));
|
|
|
|
} else if (el instanceof HTMLSelectElement && el.selectedIndex >= 0) {
|
|
|
|
for (var j=0; j < el.options.length; j++) {
|
|
|
|
if (el.options[j].selected)
|
|
|
|
formData.push(escapeNameValuePair(el.name, el.options[j].value,
|
|
|
|
isURLEncoded));
|
|
|
|
}
|
2004-04-20 09:45:12 +00:00
|
|
|
}
|
2004-04-10 05:04:20 +00:00
|
|
|
}
|
2005-09-28 22:42:44 +00:00
|
|
|
|
|
|
|
var postData;
|
|
|
|
|
|
|
|
if (isURLEncoded)
|
|
|
|
postData = formData.join("&");
|
|
|
|
else
|
|
|
|
spec += "?" + formData.join("&");
|
|
|
|
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2005-02-17 00:17:12 +00:00
|
|
|
var dialogArgs = {
|
|
|
|
name: "",
|
|
|
|
url: spec,
|
|
|
|
charset: node.ownerDocument.characterSet,
|
|
|
|
bWebPanel: false,
|
|
|
|
keyword: "",
|
|
|
|
bNeedKeyword: true,
|
|
|
|
postData: postData,
|
|
|
|
description: BookmarksUtils.getDescriptionFromDocument(node.ownerDocument)
|
|
|
|
}
|
2005-02-19 06:16:18 +00:00
|
|
|
openDialog("chrome://browser/content/bookmarks/addBookmark2.xul", "",
|
2005-04-21 09:29:59 +00:00
|
|
|
BROWSER_ADD_BM_FEATURES, dialogArgs);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2004-04-10 05:04:20 +00:00
|
|
|
}
|
|
|
|
|
2005-08-08 15:52:59 +00:00
|
|
|
function SwitchDocumentDirection(aWindow) {
|
|
|
|
aWindow.document.dir = (aWindow.document.dir == "ltr" ? "rtl" : "ltr");
|
2004-11-30 08:23:02 +00:00
|
|
|
for (var run = 0; run < aWindow.frames.length; run++)
|
2005-08-08 15:52:59 +00:00
|
|
|
SwitchDocumentDirection(aWindow.frames[run]);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function missingPluginInstaller(){
|
|
|
|
}
|
|
|
|
|
2005-08-22 23:44:55 +00:00
|
|
|
function getPluginInfo(pluginElement)
|
|
|
|
{
|
2004-11-30 08:23:02 +00:00
|
|
|
var tagMimetype;
|
|
|
|
var pluginsPage;
|
2005-08-22 23:44:55 +00:00
|
|
|
if (pluginElement instanceof HTMLAppletElement) {
|
2004-11-30 08:23:02 +00:00
|
|
|
tagMimetype = "application/x-java-vm";
|
|
|
|
} else {
|
2005-08-22 23:44:55 +00:00
|
|
|
if (pluginElement instanceof HTMLObjectElement) {
|
|
|
|
pluginsPage = pluginElement.getAttribute("codebase");
|
|
|
|
} else {
|
|
|
|
pluginsPage = pluginElement.getAttribute("pluginspage");
|
|
|
|
}
|
2005-11-19 02:29:00 +00:00
|
|
|
|
|
|
|
// only attempt if a pluginsPage is defined.
|
|
|
|
if (pluginsPage) {
|
|
|
|
var doc = pluginElement.ownerDocument;
|
|
|
|
var docShell = findChildShell(doc, gBrowser.selectedBrowser.docShell, null);
|
|
|
|
try {
|
|
|
|
pluginsPage = makeURI(pluginsPage, doc.characterSet, docShell.currentURI).spec;
|
|
|
|
} catch (ex) {
|
|
|
|
pluginsPage = "";
|
|
|
|
}
|
2005-09-16 23:10:06 +00:00
|
|
|
}
|
2005-08-22 23:44:55 +00:00
|
|
|
|
2005-09-21 19:14:30 +00:00
|
|
|
tagMimetype = pluginElement.QueryInterface(Components.interfaces.nsIObjectLoadingContent)
|
|
|
|
.actualType;
|
2005-08-22 23:44:55 +00:00
|
|
|
|
|
|
|
if (tagMimetype == "") {
|
|
|
|
tagMimetype = pluginElement.type;
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
|
2005-08-22 23:44:55 +00:00
|
|
|
return {mimetype: tagMimetype, pluginsPage: pluginsPage};
|
|
|
|
}
|
|
|
|
|
|
|
|
missingPluginInstaller.prototype.installSinglePlugin = function(aEvent){
|
|
|
|
var tabbrowser = getBrowser();
|
|
|
|
var missingPluginsArray = new Object;
|
|
|
|
|
|
|
|
var pluginInfo = getPluginInfo(aEvent.target);
|
|
|
|
missingPluginsArray[pluginInfo.mimetype] = pluginInfo;
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
if (missingPluginsArray) {
|
|
|
|
window.openDialog("chrome://mozapps/content/plugins/pluginInstallerWizard.xul",
|
|
|
|
"PFSWindow", "modal,chrome,resizable=yes", {plugins: missingPluginsArray, tab: tabbrowser.mCurrentTab});
|
2005-06-14 10:15:58 +00:00
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
aEvent.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
missingPluginInstaller.prototype.newMissingPlugin = function(aEvent){
|
2005-12-29 14:15:33 +00:00
|
|
|
// Since we are expecting also untrusted events, make sure
|
|
|
|
// that the target is a plugin
|
|
|
|
if (!(aEvent.target instanceof Components.interfaces.nsIObjectLoadingContent))
|
|
|
|
return;
|
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
// For broken non-object plugin tags, register a click handler so
|
|
|
|
// that the user can click the plugin replacement to get the new
|
|
|
|
// plugin. Object tags can, and often do, deal with that themselves,
|
|
|
|
// so don't stomp on the page developers toes.
|
|
|
|
|
2005-06-30 02:47:04 +00:00
|
|
|
if (!(aEvent.target instanceof HTMLObjectElement)) {
|
2004-11-30 08:23:02 +00:00
|
|
|
aEvent.target.addEventListener("click",
|
|
|
|
gMissingPluginInstaller.installSinglePlugin,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var tabbrowser = getBrowser();
|
|
|
|
const browsers = tabbrowser.mPanelContainer.childNodes;
|
|
|
|
|
2005-08-15 15:46:51 +00:00
|
|
|
var window = aEvent.target.ownerDocument.defaultView;
|
2004-11-30 08:23:02 +00:00
|
|
|
// walk up till the toplevel window
|
|
|
|
while (window.parent != window)
|
|
|
|
window = window.parent;
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
for (; i < browsers.length; i++) {
|
|
|
|
if (tabbrowser.getBrowserAtIndex(i).contentWindow == window)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
var tab = tabbrowser.mTabContainer.childNodes[i];
|
2005-04-20 18:31:12 +00:00
|
|
|
if (!tab.missingPlugins)
|
|
|
|
tab.missingPlugins = new Object();
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-08-22 23:44:55 +00:00
|
|
|
var pluginInfo = getPluginInfo(aEvent.target);
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-08-22 23:44:55 +00:00
|
|
|
tab.missingPlugins[pluginInfo.mimetype] = pluginInfo;
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
var browser = tabbrowser.getBrowserAtIndex(i);
|
|
|
|
var iconURL = "chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png";
|
2005-06-14 10:15:58 +00:00
|
|
|
|
2004-11-30 08:23:02 +00:00
|
|
|
var bundle_browser = document.getElementById("bundle_browser");
|
|
|
|
var messageString = bundle_browser.getString("missingpluginsMessage.title");
|
|
|
|
var buttonString = bundle_browser.getString("missingpluginsMessage.button.label");
|
2005-07-13 18:18:47 +00:00
|
|
|
var buttonAccesskeyString = bundle_browser.getString("missingpluginsMessage.button.accesskey");
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-07-20 19:47:09 +00:00
|
|
|
tabbrowser.showMessage(browser, iconURL, messageString, buttonString,"",
|
|
|
|
"missing-plugin", null, "top", true, buttonAccesskeyString);
|
2004-11-30 08:23:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
missingPluginInstaller.prototype.observe = function(aSubject, aTopic, aData){
|
|
|
|
switch (aTopic) {
|
|
|
|
case "missing-plugin":
|
|
|
|
// get the urls of missing plugins
|
|
|
|
var tabbrowser = getBrowser();
|
2005-04-20 18:31:12 +00:00
|
|
|
var missingPluginsArray = tabbrowser.mCurrentTab.missingPlugins;
|
2004-11-30 08:23:02 +00:00
|
|
|
|
|
|
|
if (missingPluginsArray) {
|
|
|
|
window.openDialog("chrome://mozapps/content/plugins/pluginInstallerWizard.xul",
|
|
|
|
"PFSWindow", "modal,chrome,resizable=yes", {plugins: missingPluginsArray, tab: tabbrowser.mCurrentTab});
|
2005-02-07 16:20:16 +00:00
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
|
2005-02-07 16:20:16 +00:00
|
|
|
break;
|
2004-07-29 23:49:31 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-30 08:23:02 +00:00
|
|
|
var gMissingPluginInstaller = new missingPluginInstaller();
|
2005-08-12 00:34:19 +00:00
|
|
|
|
2005-08-09 04:53:19 +00:00
|
|
|
function convertFromUnicode(charset, str)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
var unicodeConverter = Components
|
|
|
|
.classes["@mozilla.org/intl/scriptableunicodeconverter"]
|
|
|
|
.createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
|
|
|
|
unicodeConverter.charset = charset;
|
|
|
|
str = unicodeConverter.ConvertFromUnicode(str);
|
|
|
|
return str + unicodeConverter.Finish();
|
|
|
|
} catch(ex) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2005-08-12 00:34:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The Feed Handler object manages discovery of RSS/ATOM feeds in web pages
|
2005-08-26 18:22:08 +00:00
|
|
|
* and shows UI when they are discovered.
|
2005-08-12 00:34:19 +00:00
|
|
|
*/
|
|
|
|
var FeedHandler = {
|
|
|
|
/**
|
2005-08-26 18:22:08 +00:00
|
|
|
* Initialize the Feed Handler
|
2005-08-12 00:34:19 +00:00
|
|
|
*/
|
|
|
|
init: function() {
|
|
|
|
gBrowser.addEventListener("DOMLinkAdded",
|
|
|
|
function (event) { FeedHandler.onLinkAdded(event); },
|
|
|
|
false);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the user clicks on the Feed icon in the location bar.
|
|
|
|
* Builds a menu of unique feeds associated with the page, and if there
|
|
|
|
* is only one, shows the feed inline in the browser window.
|
|
|
|
* @param event
|
|
|
|
* The popupshowing event from the feed list menupopup
|
|
|
|
* @returns true if the menu should be shown, false if there was only
|
|
|
|
* one feed and the feed should be shown inline in the browser
|
|
|
|
* window (do not show the menupopup).
|
|
|
|
*/
|
|
|
|
buildFeedList: function(event) {
|
|
|
|
var menuPopup = event.target;
|
|
|
|
var feeds = gBrowser.selectedBrowser.feeds;
|
|
|
|
if (feeds == null) {
|
|
|
|
// XXX hack -- menu opening depends on setting of an "open"
|
|
|
|
// attribute, and the menu refuses to open if that attribute is
|
|
|
|
// set (because it thinks it's already open). onpopupshowing gets
|
|
|
|
// called after the attribute is unset, and it doesn't get unset
|
|
|
|
// if we return false. so we unset it here; otherwise, the menu
|
|
|
|
// refuses to work past this point.
|
|
|
|
menuPopup.parentNode.removeAttribute("open");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (menuPopup.firstChild)
|
|
|
|
menuPopup.removeChild(menuPopup.firstChild);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to generate a list of unique feeds from the list of feeds
|
|
|
|
* supplied by the web page. It is fairly common for a site to supply
|
|
|
|
* feeds in multiple formats but with divergent |title| attributes so
|
|
|
|
* we need to make a rough pass at trying to not show a menu when there
|
2005-08-26 18:22:08 +00:00
|
|
|
* is in fact only one feed. If this is the case, by default select
|
|
|
|
* the ATOM feed if one is supplied, otherwise pick the first one.
|
2005-08-12 00:34:19 +00:00
|
|
|
* @param feeds
|
|
|
|
* An array of Feed info JS Objects representing the list of
|
|
|
|
* feeds advertised by the web page
|
2005-08-26 18:22:08 +00:00
|
|
|
* @returns An array of what should be mostly unique feeds.
|
2005-08-12 00:34:19 +00:00
|
|
|
*/
|
|
|
|
function harvestFeeds(feeds) {
|
|
|
|
var feedHash = { };
|
|
|
|
for (var i = 0; i < feeds.length; ++i) {
|
|
|
|
var feed = feeds[i];
|
|
|
|
if (!(feed.type in feedHash))
|
|
|
|
feedHash[feed.type] = [];
|
|
|
|
feedHash[feed.type].push(feed);
|
|
|
|
}
|
|
|
|
var mismatch = false;
|
|
|
|
var count = 0;
|
|
|
|
var defaultType = null;
|
|
|
|
for (var type in feedHash) {
|
|
|
|
// The default type is whichever is listed first on the web page.
|
2005-08-26 18:22:08 +00:00
|
|
|
// Nothing fancy, just something that works.
|
2005-08-12 00:34:19 +00:00
|
|
|
if (!defaultType) {
|
|
|
|
defaultType = type;
|
|
|
|
count = feedHash[type].length;
|
|
|
|
}
|
|
|
|
if (feedHash[type].length != count) {
|
|
|
|
mismatch = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
count = feedHash[type].length;
|
|
|
|
}
|
|
|
|
// There are more feeds of one type than another - this implies the
|
|
|
|
// content developer is supplying multiple channels, let's not do
|
|
|
|
// anything fancier than this and just return the full set.
|
|
|
|
if (mismatch)
|
|
|
|
return feeds;
|
|
|
|
|
2005-08-26 18:22:08 +00:00
|
|
|
// Look for an atom feed by default, fall back to whichever was listed
|
|
|
|
// first if there is no atom feed supplied.
|
|
|
|
const ATOMTYPE = "application/atom+xml";
|
|
|
|
return ATOMTYPE in feedHash ? feedHash[ATOMTYPE] : feedHash[defaultType];
|
2005-08-12 00:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of unique feeds, and if there's only one unique entry,
|
|
|
|
// show the feed in the browser rather than displaying a menu.
|
|
|
|
var feeds = harvestFeeds(feeds);
|
|
|
|
if (feeds.length == 1) {
|
2005-08-26 18:22:08 +00:00
|
|
|
this.addLiveBookmark(feeds[0].href);
|
2005-08-12 00:34:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the menu showing the available feed choices for viewing.
|
|
|
|
for (var i = 0; i < feeds.length; ++i) {
|
|
|
|
var feedInfo = feeds[i];
|
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
var baseTitle = feedInfo.title || feedInfo.href;
|
|
|
|
var labelStr = gNavigatorBundle.getFormattedString("feedShowFeed", [baseTitle]);
|
|
|
|
menuItem.setAttribute("label", labelStr);
|
|
|
|
menuItem.setAttribute("feed", feedInfo.href);
|
|
|
|
menuItem.setAttribute("tooltiptext", feedInfo.href);
|
|
|
|
menuPopup.appendChild(menuItem);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
2005-08-26 18:22:08 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
/**
|
2005-08-28 03:59:45 +00:00
|
|
|
* Locate the shell that has a specified document loaded in it.
|
2005-08-26 18:22:08 +00:00
|
|
|
* @param doc
|
2005-08-28 03:59:45 +00:00
|
|
|
* The document to find a shell for.
|
|
|
|
* @returns The doc shell that contains the specified document.
|
2005-08-12 00:34:19 +00:00
|
|
|
*/
|
2005-08-28 03:59:45 +00:00
|
|
|
_getContentShell: function(doc) {
|
2005-08-26 18:22:08 +00:00
|
|
|
var browsers = getBrowser().browsers;
|
|
|
|
for (var i = 0; i < browsers.length; i++) {
|
2005-08-28 03:59:45 +00:00
|
|
|
var shell = findChildShell(doc, browsers[i].docShell, null);
|
2005-08-26 18:22:08 +00:00
|
|
|
if (shell)
|
|
|
|
return { shell: shell, browser: browsers[i] };
|
|
|
|
}
|
|
|
|
return null;
|
2005-08-12 00:34:19 +00:00
|
|
|
},
|
2005-08-26 18:22:08 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
/**
|
2005-08-26 18:22:08 +00:00
|
|
|
* Adds a Live Bookmark to a feed
|
2005-08-12 00:34:19 +00:00
|
|
|
* @param url
|
2005-08-26 18:22:08 +00:00
|
|
|
* The URL of the feed being bookmarked
|
|
|
|
*/
|
|
|
|
addLiveBookmark: function(url) {
|
|
|
|
var doc = gBrowser.selectedBrowser.contentDocument;
|
|
|
|
var title = doc.title;
|
2006-02-16 19:00:25 +00:00
|
|
|
#ifndef MOZ_PLACES
|
2005-08-26 18:22:08 +00:00
|
|
|
var description = BookmarksUtils.getDescriptionFromDocument(doc);
|
|
|
|
BookmarksUtils.addLivemark(doc.baseURI, url, title, description);
|
2006-02-16 19:00:25 +00:00
|
|
|
#else
|
|
|
|
dump("*** IMPLEMENT ME\n");
|
|
|
|
#endif
|
2005-08-12 00:34:19 +00:00
|
|
|
},
|
2005-08-26 18:22:08 +00:00
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
/**
|
|
|
|
* Update the browser UI to show whether or not feeds are available when
|
|
|
|
* a page is loaded or the user switches tabs to a page that has feeds.
|
|
|
|
*/
|
|
|
|
updateFeeds: function() {
|
2005-09-26 17:24:29 +00:00
|
|
|
var feedButton = document.getElementById("feed-button");
|
|
|
|
if (!feedButton)
|
|
|
|
return;
|
2005-08-12 00:34:19 +00:00
|
|
|
|
|
|
|
var feeds = gBrowser.mCurrentBrowser.feeds;
|
|
|
|
if (!feeds || feeds.length == 0) {
|
2005-09-26 17:24:29 +00:00
|
|
|
if (feedButton.hasAttribute("feeds"))
|
|
|
|
feedButton.removeAttribute("feeds");
|
|
|
|
feedButton.setAttribute("tooltiptext",
|
|
|
|
gNavigatorBundle.getString("feedNoFeeds"));
|
2005-08-12 00:34:19 +00:00
|
|
|
} else {
|
2005-09-26 17:24:29 +00:00
|
|
|
feedButton.setAttribute("feeds", "true");
|
|
|
|
feedButton.setAttribute("tooltiptext",
|
|
|
|
gNavigatorBundle.getString("feedHasFeeds"));
|
2005-08-12 00:34:19 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A new <link> tag has been discovered - check to see if it advertises
|
|
|
|
* an RSS feed.
|
|
|
|
*/
|
|
|
|
onLinkAdded: function(event) {
|
|
|
|
// XXX this event listener can/should probably be combined with the onLinkAdded
|
|
|
|
// listener in tabbrowser.xml, which only listens for favicons and then passes
|
|
|
|
// them to onLinkIconAvailable in the ProgressListener. We could extend the
|
|
|
|
// progress listener to have a generic onLinkAvailable and have tabbrowser pass
|
|
|
|
// along all events. It should give us the browser for the tab, as well as
|
|
|
|
// the actual event.
|
|
|
|
|
|
|
|
var erel = event.target.rel;
|
|
|
|
var etype = event.target.type;
|
|
|
|
var etitle = event.target.title;
|
2005-08-25 18:15:10 +00:00
|
|
|
const alternateRelRegex = /(^|\s)alternate($|\s)/i;
|
|
|
|
const rssTitleRegex = /(^|\s)rss($|\s)/i;
|
2005-08-12 00:34:19 +00:00
|
|
|
|
2005-08-25 18:15:10 +00:00
|
|
|
if (!alternateRelRegex.test(erel) ||
|
|
|
|
!etype)
|
2005-08-12 00:34:19 +00:00
|
|
|
return;
|
|
|
|
|
2005-08-25 18:15:10 +00:00
|
|
|
etype = etype.replace(/^\s+/, "");
|
|
|
|
etype = etype.replace(/\s+$/, "");
|
2005-09-28 19:08:16 +00:00
|
|
|
etype = etype.replace(/\s*;.*/, "");
|
2005-08-25 18:15:10 +00:00
|
|
|
etype = etype.toLowerCase();
|
|
|
|
|
2005-08-12 00:34:19 +00:00
|
|
|
if (etype == "application/rss+xml" ||
|
|
|
|
etype == "application/atom+xml" ||
|
2005-08-25 18:15:10 +00:00
|
|
|
(etype == "text/xml" ||
|
|
|
|
etype == "application/xml" ||
|
|
|
|
etype == "application/rdf+xml") &&
|
|
|
|
rssTitleRegex.test(etitle))
|
2005-08-12 00:34:19 +00:00
|
|
|
{
|
2005-08-17 16:17:43 +00:00
|
|
|
const targetDoc = event.target.ownerDocument;
|
2005-08-12 00:34:19 +00:00
|
|
|
|
|
|
|
// find which tab this is for, and set the attribute on the browser
|
|
|
|
// should there be a getTabForDocument method on tabbedbrowser?
|
2005-08-25 16:40:42 +00:00
|
|
|
var shellInfo = this._getContentShell(targetDoc);
|
2005-08-12 00:34:19 +00:00
|
|
|
var browserForLink = shellInfo.browser;
|
|
|
|
if (!browserForLink) {
|
|
|
|
// ??? this really shouldn't happen..
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var feeds = [];
|
|
|
|
if (browserForLink.feeds != null)
|
|
|
|
feeds = browserForLink.feeds;
|
|
|
|
var wrapper = event.target;
|
|
|
|
feeds.push({ href: wrapper.href,
|
2005-09-28 19:08:16 +00:00
|
|
|
type: etype,
|
2005-08-12 00:34:19 +00:00
|
|
|
title: wrapper.title});
|
|
|
|
browserForLink.feeds = feeds;
|
2005-09-26 17:24:29 +00:00
|
|
|
if (browserForLink == gBrowser || browserForLink == gBrowser.mCurrentBrowser) {
|
|
|
|
var feedButton = document.getElementById("feed-button");
|
2005-10-03 03:25:44 +00:00
|
|
|
if (feedButton) {
|
2005-09-26 17:24:29 +00:00
|
|
|
feedButton.setAttribute("feeds", "true");
|
2005-10-03 03:25:44 +00:00
|
|
|
feedButton.setAttribute("tooltiptext",
|
|
|
|
gNavigatorBundle.getString("feedHasFeeds"));
|
|
|
|
}
|
2005-09-26 17:24:29 +00:00
|
|
|
}
|
2005-08-12 00:34:19 +00:00
|
|
|
}
|
2005-08-15 22:45:23 +00:00
|
|
|
}
|
2005-08-12 00:34:19 +00:00
|
|
|
};
|
2006-02-24 21:41:34 +00:00
|
|
|
|
|
|
|
#ifdef MOZ_PLACES
|
|
|
|
var PlacesBrowserShim = {
|
|
|
|
_bms: null, // Bookmark Service
|
|
|
|
_lms: null, // Livemark Service
|
|
|
|
_hist: null, // History Service
|
|
|
|
_ios: null, // IO Service, useful for making nsIURI objects
|
|
|
|
_strings: null, // Localization string bundle
|
|
|
|
|
|
|
|
// XXXben: these should die
|
|
|
|
_currentURI: null, // URI of the bookmark being modified
|
|
|
|
|
|
|
|
init: function PBS_init() {
|
|
|
|
this._bms =
|
|
|
|
Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
|
|
|
|
getService(Ci.nsINavBookmarksService);
|
|
|
|
|
|
|
|
this._lms =
|
|
|
|
Cc["@mozilla.org/browser/livemark-service;1"].
|
|
|
|
getService(Ci.nsILivemarkService);
|
|
|
|
|
|
|
|
this._hist =
|
|
|
|
Cc["@mozilla.org/browser/nav-history-service;1"].
|
|
|
|
getService(Ci.nsINavHistoryService);
|
|
|
|
|
|
|
|
this._ios =
|
|
|
|
Cc["@mozilla.org/network/io-service;1"].
|
|
|
|
getService(Ci.nsIIOService);
|
|
|
|
|
|
|
|
this._strings = document.getElementById("placeBundle");
|
|
|
|
|
|
|
|
// Override the old addLivemark function
|
|
|
|
//BookmarksUtils.addLivemark = function(a,b,c,d) {PlacesBrowserShim.addLivemark(a,b,c,d);};
|
|
|
|
|
|
|
|
// XXXben - wrong
|
|
|
|
var addBookmarkCmd = document.getElementById("Browser:AddBookmarkAs");
|
|
|
|
addBookmarkCmd.setAttribute("oncommand", "PlacesBrowserShim.addBookmark()");
|
|
|
|
|
|
|
|
this._registerEventHandlers();
|
|
|
|
|
|
|
|
window.controllers.appendController(PlacesController);
|
|
|
|
|
|
|
|
PlacesController.topWindow = window;
|
|
|
|
PlacesController.tm = PlacesTransactionManager;
|
|
|
|
},
|
|
|
|
|
|
|
|
addBookmark: function PBS_addBookmark() {
|
|
|
|
var selectedBrowser = getBrowser().selectedBrowser;
|
|
|
|
this._bookmarkURI(this._bms.bookmarksRoot, selectedBrowser.currentURI,
|
|
|
|
selectedBrowser.contentTitle);
|
|
|
|
},
|
|
|
|
|
|
|
|
_bookmarkURI: function PBS__bookmarkURI(folder, uri, title) {
|
|
|
|
this._bms.insertItem(folder, uri, -1);
|
|
|
|
this._bms.setItemTitle(uri, title);
|
|
|
|
},
|
|
|
|
|
|
|
|
showHistory: function PBS_showHistory() {
|
|
|
|
this._showPlacesView("chrome://browser/content/places/places.xul?history");
|
|
|
|
},
|
|
|
|
|
|
|
|
showBookmarks: function PBS_showBookmarks() {
|
|
|
|
this._showPlacesView("chrome://browser/content/places/places.xul?bookmarks");
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method shows the given URI string in whatever form we've decided
|
|
|
|
* is appropriate for the "Places" UI. (It is intended to be used only for
|
|
|
|
* displaying the Places chrome.)
|
|
|
|
*/
|
|
|
|
_showPlacesView: function PBS__showPlacesView(uriString) {
|
|
|
|
var tab = getBrowser().addTab(uriString);
|
|
|
|
getBrowser().selectedTab = tab;
|
|
|
|
},
|
|
|
|
|
|
|
|
addLivemark: function PBS_addLivemark(url, feedURL, title, description) {
|
|
|
|
// XXXas TODO -- put in nice confirmation dialog.
|
|
|
|
this._lms.createLivemark(this._bms.toolbarRoot,
|
|
|
|
title,
|
|
|
|
this._makeURI(url),
|
|
|
|
this._makeURI(feedURL),
|
|
|
|
-1);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes an nsIURI object from a string containing a URI.
|
|
|
|
*/
|
|
|
|
_makeURI: function PBS__makeURI(urlString) {
|
|
|
|
ASSERT(urlString, "_makeURI called with an empty or undefined string parameter");
|
|
|
|
return this._ios.newURI(urlString, null, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the URI that the visible browser tab is rendering.
|
|
|
|
*
|
2006-03-07 00:52:35 +00:00
|
|
|
* @returns an nsIURI object representing the URI currently being shown
|
2006-02-24 21:41:34 +00:00
|
|
|
*/
|
|
|
|
_getCurrentLocation: function PBS__getCurrentLocation() {
|
|
|
|
return getBrowser().selectedBrowser.webNavigation.currentURI;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method updates the state of navigation buttons (i.e. bookmark, feeds)
|
|
|
|
* which depend on the location and contents of the current page.
|
|
|
|
*/
|
|
|
|
_updateControlStates: function PBS__updateControlStates() {
|
|
|
|
var bookmarkButton = document.getElementById("places-bookmark");
|
|
|
|
if (bookmarkButton) {
|
2006-03-07 00:52:35 +00:00
|
|
|
if (this._bms.isBookmarked(this._getCurrentLocation())) {
|
2006-02-24 21:41:34 +00:00
|
|
|
bookmarkButton.label = this._strings.getString("locationStatusBookmarked");
|
2006-03-07 00:52:35 +00:00
|
|
|
bookmarkButton.setAttribute("bookmarked", "true");
|
|
|
|
} else {
|
2006-02-24 21:41:34 +00:00
|
|
|
bookmarkButton.label = this._strings.getString("locationStatusNotBookmarked");
|
2006-03-07 00:52:35 +00:00
|
|
|
bookmarkButton.setAttribute("bookmarked", "false");
|
|
|
|
}
|
2006-02-24 21:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var feedButton = document.getElementById("places-subscribe");
|
|
|
|
if (feedButton) {
|
|
|
|
if (gBrowser.selectedBrowser.feeds)
|
|
|
|
feedButton.removeAttribute("disabled");
|
|
|
|
else
|
|
|
|
feedButton.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the event handlers that Places needs to update its state.
|
|
|
|
*/
|
|
|
|
_registerEventHandlers: function PBS_registerEventHandlers() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
function onPageShow(e){
|
|
|
|
self.onPageShow(e);
|
|
|
|
}
|
|
|
|
// XXXben comment out until we figure out what's up with tboxes.
|
|
|
|
//getBrowser().addEventListener("pageshow", onPageShow, true);
|
|
|
|
|
|
|
|
function onTabSwitch(e) {
|
|
|
|
self.onTabSwitch(e);
|
|
|
|
}
|
|
|
|
getBrowser().mTabBox.addEventListener("select", onTabSwitch, true);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method should be called when the location currently being
|
|
|
|
* rendered by a browser changes (loading new page or forward/back).
|
|
|
|
*/
|
|
|
|
onPageShow: function PBS_onPageShow(e) {
|
|
|
|
if (e.target && e.target.nodeName == "#document") {
|
|
|
|
this._updateControlStates();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method should be called when the user switches active tabs.
|
|
|
|
*/
|
|
|
|
onTabSwitch: function PBS_onTabSwitch(e) {
|
|
|
|
if (e.target == null || e.target.localName != "tabs")
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._updateControlStates();
|
|
|
|
},
|
2006-03-07 00:52:35 +00:00
|
|
|
|
2006-02-24 21:41:34 +00:00
|
|
|
/**
|
|
|
|
* This method should be called when the bookmark button is clicked.
|
|
|
|
*/
|
|
|
|
onBookmarkButtonClick: function PBS_onBookmarkButtonClick() {
|
|
|
|
this._currentURI = this._getCurrentLocation();
|
|
|
|
if (this._bms.isBookmarked(this._currentURI)) {
|
|
|
|
this.showBookmarkProperties();
|
|
|
|
} else {
|
|
|
|
this._bms.insertItem(this._bms.bookmarksRoot, this._currentURI, -1);
|
|
|
|
this._updateControlStates();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method shows the bookmark properties dialog. If bookmarkURI
|
|
|
|
* is undefined, the dialog with display properties for the URI of the
|
|
|
|
* most recently displayed page; if it is set to an nsIURI object, it
|
|
|
|
* will display properties for the bookmark identified by that URI.
|
|
|
|
* The URI used should already have been bookmarked using _bookmarkURI().
|
|
|
|
*/
|
|
|
|
showBookmarkProperties: function PBS_showBookmarkProperties(bookmarkURI) {
|
|
|
|
if (bookmarkURI) {
|
|
|
|
this._currentURI = bookmarkURI;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(this._bms.isBookmarked(this._currentURI), "showBookmarkProperties() was called on a URI that hadn't been bookmarked: " + this._currentURI.spec);
|
|
|
|
|
|
|
|
this._currentTitle = this._bms.getItemTitle(this._currentURI);
|
2006-03-07 00:52:35 +00:00
|
|
|
window.openDialog("chrome://browser/content/places/bookmarkProperties.xul",
|
|
|
|
"bookmarkproperties",
|
|
|
|
"width=600,height=400,chrome,dependent,modal,resizable",
|
|
|
|
this._currentURI, PlacesController);
|
2006-02-24 21:41:34 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is a custom implementation of nsITransactionManager. We do not chain
|
|
|
|
* or aggregate the default implementation because the order in which
|
|
|
|
* transactions are performed and undone is important to the user experience.
|
|
|
|
* There are two classes of transactions - those done by the browser window
|
|
|
|
* that contains this transaction manager, and those done by the embedded
|
|
|
|
* Places page. All transactions done in either part of the UI are recorded
|
|
|
|
* here, but ones performed by actions taken in the Places page affect the
|
|
|
|
* Undo/Redo menu items and keybindings in the browser window only when the
|
|
|
|
* Places page is the active tab. This is to prevent the user from accidentally
|
|
|
|
* undoing/redoing their changes while the Places page is not selected, and the
|
|
|
|
* user not noticing.
|
|
|
|
*
|
|
|
|
* When the Places page is navigated away from, the undo items registered for
|
|
|
|
* it are destroyed and the ability to undo those actions ceases.
|
|
|
|
*/
|
|
|
|
var PlacesTransactionManager = {
|
|
|
|
_undoItems: [],
|
|
|
|
_redoItems: [],
|
|
|
|
|
|
|
|
hidePageTransactions: true,
|
|
|
|
|
|
|
|
_getNextVisibleIndex: function PTM__getNextVisibleItem(list) {
|
|
|
|
if (!this.hidePageTransactions)
|
|
|
|
return list.length - 1;
|
|
|
|
|
|
|
|
for (var i = list.length - 1; i >= 0; --i) {
|
|
|
|
if (!list[i].pageTransaction)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
},
|
|
|
|
|
|
|
|
updateCommands: function PTM__updateCommands() {
|
|
|
|
CommandUpdater.updateCommand("cmd_undo");
|
|
|
|
CommandUpdater.updateCommand("cmd_redo");
|
|
|
|
},
|
|
|
|
|
|
|
|
doTransaction: function PTM_doTransaction(transaction) {
|
|
|
|
transaction.doTransaction();
|
|
|
|
this._undoItems.push(transaction);
|
|
|
|
this._redoItems = [];
|
|
|
|
this.updateCommands();
|
|
|
|
},
|
|
|
|
|
|
|
|
undoTransaction: function PTM_undoTransaction() {
|
|
|
|
var index = this._getNextVisibleIndex(this._undoItems);
|
|
|
|
ASSERT(index >= 0, "Invalid Transaction index");
|
|
|
|
var transaction = this._undoItems.splice(index, 1)[0];
|
|
|
|
transaction.undoTransaction();
|
|
|
|
this._redoItems.push(transaction);
|
|
|
|
this.updateCommands();
|
|
|
|
},
|
|
|
|
|
|
|
|
redoTransaction: function PTM_redoTransaction() {
|
|
|
|
var index = this._getNextVisibleIndex(this._redoItems);
|
|
|
|
ASSERT(index >= 0, "Invalid Transaction index");
|
|
|
|
var transaction = this._redoItems.splice(index, 1)[0];
|
|
|
|
transaction.redoTransaction();
|
|
|
|
this._undoItems.push(transaction);
|
|
|
|
this.updateCommands();
|
|
|
|
},
|
|
|
|
|
|
|
|
clear: function PTM_clear() {
|
|
|
|
this._undoItems = [];
|
|
|
|
this._redoItems = [];
|
|
|
|
this.updateCommands();
|
|
|
|
},
|
|
|
|
|
|
|
|
beginBatch: function PTM_beginBatch() {
|
|
|
|
},
|
|
|
|
|
|
|
|
endBatch: function PTM_endBatch() {
|
|
|
|
},
|
|
|
|
|
|
|
|
get numberOfUndoItems() {
|
|
|
|
return this.getUndoList().numItems;
|
|
|
|
},
|
|
|
|
get numberOfRedoItems() {
|
|
|
|
return this.getRedoList().numItems;
|
|
|
|
},
|
|
|
|
|
|
|
|
maxTransactionCount: -1,
|
|
|
|
|
|
|
|
peekUndoStack: function PTM_peekUndoStack() {
|
|
|
|
var index = this._getNextVisibleIndex(this._undoItems);
|
|
|
|
ASSERT(index >= 0, "Invalid Transaction index");
|
|
|
|
return this._undoItems[index];
|
|
|
|
},
|
|
|
|
peekRedoStack: function PTM_peekRedoStack() {
|
|
|
|
var index = this._getNextVisibleIndex(this._redoItems);
|
|
|
|
ASSERT(index >= 0, "Invalid Transaction index");
|
|
|
|
return this._redoItems[index];
|
|
|
|
},
|
|
|
|
|
|
|
|
_filterList: function PTM__filterList(list) {
|
|
|
|
if (!this.hidePageTransactions)
|
|
|
|
return list;
|
|
|
|
|
|
|
|
var transactions = [];
|
|
|
|
for (var i = 0; i < list.length; ++i) {
|
|
|
|
if (!list[i].pageTransaction)
|
|
|
|
transactions.push(list[i]);
|
|
|
|
}
|
|
|
|
return transactions;
|
|
|
|
},
|
|
|
|
|
|
|
|
getUndoList: function PTM_getUndoList() {
|
|
|
|
return new TransactionList(this._filterList(this._undoItems));
|
|
|
|
},
|
|
|
|
getRedoList: function PTM_getRedoList() {
|
|
|
|
return new TransactionList(this._filterList(this._redoItems));
|
|
|
|
},
|
|
|
|
|
|
|
|
_listeners: [],
|
|
|
|
AddListener: function PTM_AddListener(listener) {
|
|
|
|
this._listeners.push(listener);
|
|
|
|
},
|
|
|
|
RemoveListener: function PTM_RemoveListener(listener) {
|
|
|
|
for (var i = 0; i < this._listeners.length; ++i) {
|
|
|
|
if (this._listeners[i] == listener)
|
|
|
|
this._listeners.splice(i, 1);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface: function PTM_QueryInterface(iid) {
|
|
|
|
if (iid.equals(Ci.nsITransactionManager) ||
|
|
|
|
iid.equals(Ci.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Cr.NS_ERROR_NOINTERFACE;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function TransactionList(transactions) {
|
|
|
|
this._transactions = transactions;
|
|
|
|
}
|
|
|
|
TransactionList.prototype = {
|
|
|
|
get numItems() {
|
|
|
|
return this._transactions.length;
|
|
|
|
},
|
|
|
|
|
|
|
|
itemIsBatch: function TL_itemIsBatch(index) {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
getItem: function TL_getItem(index) {
|
|
|
|
return this._transactions[i];
|
|
|
|
},
|
|
|
|
|
|
|
|
getNumChildrenForItem: function TL_getNumChildrenForItem(index) {
|
|
|
|
return 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
getChildListForItem: function TL_getChildListForItem(index) {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface: function TL_QueryInterface(iid) {
|
|
|
|
if (iid.equals(Ci.nsITransactionList) ||
|
|
|
|
iid.equals(Ci.nsISupports))
|
|
|
|
return this;
|
|
|
|
throw Cr.NS_ERROR_NOINTERFACE;
|
|
|
|
}
|
|
|
|
};
|
2006-03-01 21:36:53 +00:00
|
|
|
|
|
|
|
// Functions for the history menu.
|
|
|
|
var HistoryMenu = {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Updates the history menu with the session history of the current tab.
|
|
|
|
* This function is called every time the history menu is shown.
|
|
|
|
* @params menu XULNode for the history menu
|
|
|
|
*/
|
|
|
|
update: function PHM_update(menu) {
|
|
|
|
FillHistoryMenu(menu, "history", document.getElementById("endTabHistorySeparator"));
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shows the places search page.
|
|
|
|
* (Will be fully implemented when there is a places search page.)
|
|
|
|
*/
|
|
|
|
showPlacesSearch: function PHM_showPlacesSearch() {
|
|
|
|
// XXX The places view needs to be updated before this
|
|
|
|
// does something different than show history.
|
|
|
|
PlacesBrowserShim._showPlacesView("chrome://browser/content/places/places.xul?history");
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clears the browser history.
|
|
|
|
* (XXX This might be changed to show the Clear Private Data menu instead)
|
|
|
|
*/
|
|
|
|
clearHistory: function PHM_clearHistory() {
|
|
|
|
var globalHistory = Components.classes["@mozilla.org/browser/global-history;2"]
|
|
|
|
.getService(Components.interfaces.nsIBrowserHistory);
|
|
|
|
globalHistory.removeAllPages();
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2006-03-04 01:12:05 +00:00
|
|
|
/*
|
2006-03-05 01:40:26 +00:00
|
|
|
* Functions for handling events in the Bookmarks Toolbar and menu.
|
2006-03-04 01:12:05 +00:00
|
|
|
*/
|
2006-03-05 01:40:26 +00:00
|
|
|
var BookmarksEventHandler = {
|
2006-03-04 01:12:05 +00:00
|
|
|
/*
|
2006-03-05 01:40:26 +00:00
|
|
|
* Handler for click event for an item in the bookmarks toolbar or menu.
|
2006-03-04 01:12:05 +00:00
|
|
|
* Menus and submenus from the folder buttons bubble up to this handler.
|
|
|
|
* Only handle middle-click; left-click is handled in the onCommand function.
|
|
|
|
* When items are middle-clicked, open them in tabs.
|
|
|
|
* If the click came through a menu, close the menu.
|
|
|
|
* @param event DOMEvent for the click
|
|
|
|
*/
|
|
|
|
onClick: function BT_onClick(event) {
|
|
|
|
// Only handle middle-clicks.
|
|
|
|
if (event.button != 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PlacesController.openLinksInTabs();
|
|
|
|
|
|
|
|
// If this event bubbled up from a menu or menuitem,
|
|
|
|
// close the menus.
|
|
|
|
if (event.target.localName == "menu" ||
|
|
|
|
event.target.localName == "menuitem") {
|
|
|
|
var node = event.target;
|
|
|
|
while (node &&
|
|
|
|
(node.localName == "menu" ||
|
|
|
|
node.localName == "menupopup")) {
|
|
|
|
if (node.localName == "menupopup")
|
|
|
|
node.hidePopup();
|
|
|
|
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handler for command event for an item in the bookmarks toolbar.
|
|
|
|
* Menus and submenus from the folder buttons bubble up to this handler.
|
|
|
|
* Opens the item.
|
|
|
|
* @param event DOMEvent for the command
|
|
|
|
*/
|
|
|
|
onCommand: function BM_onCommand(event) {
|
|
|
|
PlacesController.mouseLoadURI(event);
|
2006-03-05 01:40:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handler for popupshowing event for an item in bookmarks toolbar or menu.
|
|
|
|
* If the item isn't the main bookmarks menu, add an "Open in Tabs" menuitem
|
|
|
|
* to the bottom of the popup.
|
|
|
|
* @param event DOMEvent for popupshowing
|
|
|
|
*/
|
|
|
|
onPopupShowing: function BM_onPopupShowing(event) {
|
|
|
|
if (event.target.localName == "menupopup" &&
|
|
|
|
event.target.id != "bookmarksMenuPopup") {
|
|
|
|
var separator = document.createElement("menuseparator");
|
|
|
|
event.target.appendChild(separator);
|
|
|
|
var openInTabs = document.createElement("menuitem");
|
|
|
|
openInTabs.setAttribute("command", "placesCmd_open:tabsEnabled");
|
|
|
|
event.target.appendChild(openInTabs);
|
|
|
|
}
|
2006-03-05 07:20:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handler for dragover event for an item in the bookmarks menu.
|
|
|
|
* If this is the top-level bookmarks menu, open the menu so that
|
|
|
|
* items can be dropped into it.
|
|
|
|
* @param event DOMEvent for the dragover.
|
|
|
|
*/
|
|
|
|
onDragOver: function BM_onDragOver(event) {
|
|
|
|
if (event.target.id == "bookmarksMenu") {
|
|
|
|
// If this is the bookmarks menu, tell its menupopup child to show.
|
|
|
|
event.target.lastChild.showPopup(event.target.lastChild);
|
|
|
|
}
|
2006-03-04 01:12:05 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-02-24 21:41:34 +00:00
|
|
|
#endif
|