From a70bdf58db4d9c605e93e2243582e235852822fb Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Fri, 14 Feb 2020 16:31:54 +0100 Subject: [PATCH 01/20] Revert "Issue #1441 - Guard appomni/greomni with UXP_CUSTOM_OMNI env var." This reverts commit 2bdbca39b210e3f13ae42ccae36935d30b36eb31. --- toolkit/xre/nsAppRunner.cpp | 72 ++++++++++++++++++------------------- 1 file changed, 34 insertions(+), 38 deletions(-) diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp index 929d8079cb..c880daef9d 100644 --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp @@ -4139,49 +4139,45 @@ XRE_InitCommandLine(int aArgc, char* aArgv[]) delete[] canonArgs; #endif - if (PR_GetEnv("UXP_CUSTOM_OMNI")) { - // Process CLI parameters for specifying custom omnijars - const char *path = nullptr; - ArgResult ar = CheckArg("greomni", true, &path); - if (ar == ARG_BAD) { - PR_fprintf(PR_STDERR, - "Error: argument --greomni requires a path argument or the " - "--osint argument was specified with the --greomni argument " - "which is invalid.\n"); - return NS_ERROR_FAILURE; - } + const char *path = nullptr; + ArgResult ar = CheckArg("greomni", true, &path); + if (ar == ARG_BAD) { + PR_fprintf(PR_STDERR, + "Error: argument --greomni requires a path argument or the " + "--osint argument was specified with the --greomni argument " + "which is invalid.\n"); + return NS_ERROR_FAILURE; + } - if (!path) - return rv; + if (!path) + return rv; - nsCOMPtr greOmni; - rv = XRE_GetFileFromPath(path, getter_AddRefs(greOmni)); - if (NS_FAILED(rv)) { - PR_fprintf(PR_STDERR, "Error: argument --greomni requires a valid path\n"); - return rv; - } + nsCOMPtr greOmni; + rv = XRE_GetFileFromPath(path, getter_AddRefs(greOmni)); + if (NS_FAILED(rv)) { + PR_fprintf(PR_STDERR, "Error: argument --greomni requires a valid path\n"); + return rv; + } - ar = CheckArg("appomni", true, &path); - if (ar == ARG_BAD) { - PR_fprintf(PR_STDERR, - "Error: argument --appomni requires a path argument or the " - "--osint argument was specified with the --appomni argument " - "which is invalid.\n"); - return NS_ERROR_FAILURE; - } + ar = CheckArg("appomni", true, &path); + if (ar == ARG_BAD) { + PR_fprintf(PR_STDERR, + "Error: argument --appomni requires a path argument or the " + "--osint argument was specified with the --appomni argument " + "which is invalid.\n"); + return NS_ERROR_FAILURE; + } - nsCOMPtr appOmni; - if (path) { - rv = XRE_GetFileFromPath(path, getter_AddRefs(appOmni)); - if (NS_FAILED(rv)) { - PR_fprintf(PR_STDERR, "Error: argument --appomni requires a valid path\n"); - return rv; - } - } - - mozilla::Omnijar::Init(greOmni, appOmni); - } // UXP_CUSTOM_OMNI + nsCOMPtr appOmni; + if (path) { + rv = XRE_GetFileFromPath(path, getter_AddRefs(appOmni)); + if (NS_FAILED(rv)) { + PR_fprintf(PR_STDERR, "Error: argument --appomni requires a valid path\n"); + return rv; + } + } + mozilla::Omnijar::Init(greOmni, appOmni); return rv; } From 113362d3b3afbf8f1b55ecc88a07218967d5c3cb Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Fri, 14 Feb 2020 17:06:30 +0100 Subject: [PATCH 02/20] Issue #1441 - Guard appomni/greomni with UXP_CUSTOM_OMNI env var. This adds an addition to the environment set up for child processes (plugin container) so that it may still be able to pass the omni parameters there as-needed. --- ipc/glue/GeckoChildProcessHost.cpp | 1 + toolkit/xre/nsAppRunner.cpp | 72 ++++++++++++++++-------------- 2 files changed, 39 insertions(+), 34 deletions(-) diff --git a/ipc/glue/GeckoChildProcessHost.cpp b/ipc/glue/GeckoChildProcessHost.cpp index ea76f85f01..9e83a8729d 100644 --- a/ipc/glue/GeckoChildProcessHost.cpp +++ b/ipc/glue/GeckoChildProcessHost.cpp @@ -712,6 +712,7 @@ GeckoChildProcessHost::PerformAsyncLaunchInternal(std::vector& aExt if (Omnijar::IsInitialized()) { // Make sure that child processes can find the omnijar // See XRE_InitCommandLine in nsAppRunner.cpp + newEnvVars["UXP_CUSTOM_OMNI"] = 1; nsAutoCString path; nsCOMPtr file = Omnijar::GetPath(Omnijar::GRE); if (file && NS_SUCCEEDED(file->GetNativePath(path))) { diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp index c880daef9d..929d8079cb 100644 --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp @@ -4139,45 +4139,49 @@ XRE_InitCommandLine(int aArgc, char* aArgv[]) delete[] canonArgs; #endif - const char *path = nullptr; - ArgResult ar = CheckArg("greomni", true, &path); - if (ar == ARG_BAD) { - PR_fprintf(PR_STDERR, - "Error: argument --greomni requires a path argument or the " - "--osint argument was specified with the --greomni argument " - "which is invalid.\n"); - return NS_ERROR_FAILURE; - } + if (PR_GetEnv("UXP_CUSTOM_OMNI")) { + // Process CLI parameters for specifying custom omnijars + const char *path = nullptr; + ArgResult ar = CheckArg("greomni", true, &path); + if (ar == ARG_BAD) { + PR_fprintf(PR_STDERR, + "Error: argument --greomni requires a path argument or the " + "--osint argument was specified with the --greomni argument " + "which is invalid.\n"); + return NS_ERROR_FAILURE; + } - if (!path) - return rv; + if (!path) + return rv; - nsCOMPtr greOmni; - rv = XRE_GetFileFromPath(path, getter_AddRefs(greOmni)); - if (NS_FAILED(rv)) { - PR_fprintf(PR_STDERR, "Error: argument --greomni requires a valid path\n"); - return rv; - } + nsCOMPtr greOmni; + rv = XRE_GetFileFromPath(path, getter_AddRefs(greOmni)); + if (NS_FAILED(rv)) { + PR_fprintf(PR_STDERR, "Error: argument --greomni requires a valid path\n"); + return rv; + } - ar = CheckArg("appomni", true, &path); - if (ar == ARG_BAD) { - PR_fprintf(PR_STDERR, - "Error: argument --appomni requires a path argument or the " - "--osint argument was specified with the --appomni argument " - "which is invalid.\n"); - return NS_ERROR_FAILURE; - } + ar = CheckArg("appomni", true, &path); + if (ar == ARG_BAD) { + PR_fprintf(PR_STDERR, + "Error: argument --appomni requires a path argument or the " + "--osint argument was specified with the --appomni argument " + "which is invalid.\n"); + return NS_ERROR_FAILURE; + } - nsCOMPtr appOmni; - if (path) { - rv = XRE_GetFileFromPath(path, getter_AddRefs(appOmni)); - if (NS_FAILED(rv)) { - PR_fprintf(PR_STDERR, "Error: argument --appomni requires a valid path\n"); - return rv; - } - } + nsCOMPtr appOmni; + if (path) { + rv = XRE_GetFileFromPath(path, getter_AddRefs(appOmni)); + if (NS_FAILED(rv)) { + PR_fprintf(PR_STDERR, "Error: argument --appomni requires a valid path\n"); + return rv; + } + } + + mozilla::Omnijar::Init(greOmni, appOmni); + } // UXP_CUSTOM_OMNI - mozilla::Omnijar::Init(greOmni, appOmni); return rv; } From bcbdf11c259d38f6be19f3f4507151aa001f5f8f Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Fri, 14 Feb 2020 19:09:13 +0100 Subject: [PATCH 03/20] [CSS] Only emit non-GC chrome wrapped XUL box warnings in debug builds. --- layout/base/nsCSSFrameConstructor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layout/base/nsCSSFrameConstructor.cpp b/layout/base/nsCSSFrameConstructor.cpp index 34cfc6b59a..37cd3e45ee 100644 --- a/layout/base/nsCSSFrameConstructor.cpp +++ b/layout/base/nsCSSFrameConstructor.cpp @@ -10882,6 +10882,7 @@ nsCSSFrameConstructor::ProcessChildren(nsFrameConstructorState& aState, // no? And if we cared we could look through the item list // instead of groveling through the framelist here.. nsStyleContext *frameStyleContext = aFrame->StyleContext(); +#ifdef DEBUG // Report a warning for non-GC frames, for chrome: if (!aFrame->IsGeneratedContentFrame() && mPresShell->GetPresContext()->IsChrome()) { @@ -10900,6 +10901,7 @@ nsCSSFrameConstructor::ProcessChildren(nsFrameConstructorState& aState, message, params, ArrayLength(params)); } +#endif RefPtr blockSC = mPresShell->StyleSet()-> ResolveAnonymousBoxStyle(nsCSSAnonBoxes::mozXULAnonymousBlock, From addf7b2fb1d2cba403072178aaf38652fdbe2447 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:37:09 -0600 Subject: [PATCH 04/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/base. --- .../palemoon/base/content/browser-fullZoom.js | 44 ++++---- .../base/content/browser-gestureSupport.js | 86 +++++++------- .../palemoon/base/content/browser-places.js | 106 +++++++++--------- .../palemoon/base/content/browser-plugins.js | 22 ++-- .../palemoon/base/content/browser-syncui.js | 44 ++++---- .../base/content/browser-tabPreviews.js | 90 +++++++-------- .../base/content/browser-thumbnails.js | 20 ++-- application/palemoon/base/content/browser.js | 24 ++-- .../palemoon/base/content/nsContextMenu.js | 48 ++++---- .../palemoon/base/content/sanitizeDialog.js | 22 ++-- 10 files changed, 253 insertions(+), 253 deletions(-) diff --git a/application/palemoon/base/content/browser-fullZoom.js b/application/palemoon/base/content/browser-fullZoom.js index 890cd84403..595e9b8ac3 100644 --- a/application/palemoon/base/content/browser-fullZoom.js +++ b/application/palemoon/base/content/browser-fullZoom.js @@ -38,7 +38,7 @@ var FullZoom = { // Initialization & Destruction - init: function FullZoom_init() { + init: function () { gBrowser.addEventListener("ZoomChangeUsingMouseWheel", this); // Register ourselves with the service so we know when our pref changes. @@ -66,7 +66,7 @@ var FullZoom = { this._initialLocations = null; }, - destroy: function FullZoom_destroy() { + destroy: function () { gPrefService.removeObserver("browser.zoom.", this); this._cps2.removeObserverForName(this.name, this); gBrowser.removeEventListener("ZoomChangeUsingMouseWheel", this); @@ -77,7 +77,7 @@ var FullZoom = { // nsIDOMEventListener - handleEvent: function FullZoom_handleEvent(event) { + handleEvent: function (event) { switch (event.type) { case "ZoomChangeUsingMouseWheel": let browser = this._getTargetedBrowser(event); @@ -108,11 +108,11 @@ var FullZoom = { // nsIContentPrefObserver - onContentPrefSet: function FullZoom_onContentPrefSet(aGroup, aName, aValue, aIsPrivate) { + onContentPrefSet: function (aGroup, aName, aValue, aIsPrivate) { this._onContentPrefChanged(aGroup, aValue, aIsPrivate); }, - onContentPrefRemoved: function FullZoom_onContentPrefRemoved(aGroup, aName, aIsPrivate) { + onContentPrefRemoved: function (aGroup, aName, aIsPrivate) { this._onContentPrefChanged(aGroup, undefined, aIsPrivate); }, @@ -124,7 +124,7 @@ var FullZoom = { * @param aValue The new value of the changed preference. Pass undefined to * indicate the preference's removal. */ - _onContentPrefChanged: function FullZoom__onContentPrefChanged(aGroup, aValue, aIsPrivate) { + _onContentPrefChanged: function (aGroup, aValue, aIsPrivate) { if (this._isNextContentPrefChangeInternal) { // Ignore changes that FullZoom itself makes. This works because the // content pref service calls callbacks before notifying observers, and it @@ -175,7 +175,7 @@ var FullZoom = { * @param aBrowser * (optional) browser object displaying the document */ - onLocationChange: function FullZoom_onLocationChange(aURI, aIsTabSwitch, aBrowser) { + onLocationChange: function (aURI, aIsTabSwitch, aBrowser) { let browser = aBrowser || gBrowser.selectedBrowser; // If we haven't been initialized yet but receive an onLocationChange @@ -237,7 +237,7 @@ var FullZoom = { // update state of zoom type menu item - updateMenu: function FullZoom_updateMenu() { + updateMenu: function () { var menuItem = document.getElementById("toggle_zoom"); menuItem.setAttribute("checked", !ZoomManager.useFullZoom); @@ -248,7 +248,7 @@ var FullZoom = { /** * Reduces the zoom level of the page in the current browser. */ - reduce: function FullZoom_reduce() { + reduce: function () { ZoomManager.reduce(); let browser = gBrowser.selectedBrowser; this._ignorePendingZoomAccesses(browser); @@ -258,7 +258,7 @@ var FullZoom = { /** * Enlarges the zoom level of the page in the current browser. */ - enlarge: function FullZoom_enlarge() { + enlarge: function () { ZoomManager.enlarge(); let browser = gBrowser.selectedBrowser; this._ignorePendingZoomAccesses(browser); @@ -281,7 +281,7 @@ var FullZoom = { * * @return A promise which resolves when the zoom reset has been applied. */ - reset: function FullZoom_reset(browser = gBrowser.selectedBrowser) { + reset: function (browser = gBrowser.selectedBrowser) { let token = this._getBrowserToken(browser); let result = this._getGlobalValue(browser).then(value => { if (token.isCurrent) { @@ -317,7 +317,7 @@ var FullZoom = { * @param aBrowser The zoom is set in this browser. Required. * @param aCallback If given, it's asynchronously called when complete. */ - _applyPrefToZoom: function FullZoom__applyPrefToZoom(aValue, aBrowser, aCallback) { + _applyPrefToZoom: function (aValue, aBrowser, aCallback) { if (!this.siteSpecific || gInPrintPreviewMode) { this._executeSoon(aCallback); return; @@ -354,7 +354,7 @@ var FullZoom = { * * @param browser The zoom of this browser will be saved. Required. */ - _applyZoomToPref: function FullZoom__applyZoomToPref(browser) { + _applyZoomToPref: function (browser) { Services.obs.notifyObservers(browser, "browser-fullZoom:zoomChange", ""); if (!this.siteSpecific || gInPrintPreviewMode || @@ -375,7 +375,7 @@ var FullZoom = { * * @param browser The zoom of this browser will be removed. Required. */ - _removePref: function FullZoom__removePref(browser) { + _removePref: function (browser) { Services.obs.notifyObservers(browser, "browser-fullZoom:zoomReset", ""); if (browser.isSyntheticDocument) return; @@ -401,7 +401,7 @@ var FullZoom = { * @param browser The token of this browser will be returned. * @return An object with an "isCurrent" getter. */ - _getBrowserToken: function FullZoom__getBrowserToken(browser) { + _getBrowserToken: function (browser) { let map = this._browserTokenMap; if (!map.has(browser)) map.set(browser, 0); @@ -423,7 +423,7 @@ var FullZoom = { * @param event The ZoomChangeUsingMouseWheel event. * @return The associated browser element, if one exists, otherwise null. */ - _getTargetedBrowser: function FullZoom__getTargetedBrowser(event) { + _getTargetedBrowser: function (event) { let target = event.originalTarget; // With remote content browsers, the event's target is the browser @@ -449,12 +449,12 @@ var FullZoom = { * * @param browser Pending accesses in this browser will be ignored. */ - _ignorePendingZoomAccesses: function FullZoom__ignorePendingZoomAccesses(browser) { + _ignorePendingZoomAccesses: function (browser) { let map = this._browserTokenMap; map.set(browser, (map.get(browser) || 0) + 1); }, - _ensureValid: function FullZoom__ensureValid(aValue) { + _ensureValid: function (aValue) { // Note that undefined is a valid value for aValue that indicates a known- // not-to-exist value. if (isNaN(aValue)) @@ -476,7 +476,7 @@ var FullZoom = { * @returns Promise * Resolves to the preference value when done. */ - _getGlobalValue: function FullZoom__getGlobalValue(browser) { + _getGlobalValue: function (browser) { // * !("_globalValue" in this) => global value not yet cached. // * this._globalValue === undefined => global value known not to exist. // * Otherwise, this._globalValue is a number, the global value. @@ -502,7 +502,7 @@ var FullZoom = { * @param Browser The Browser whose load context will be returned. * @return The nsILoadContext of the given Browser. */ - _loadContextFromBrowser: function FullZoom__loadContextFromBrowser(browser) { + _loadContextFromBrowser: function (browser) { return browser.loadContext; }, @@ -512,13 +512,13 @@ var FullZoom = { * The notification is always asynchronous so that observers are guaranteed a * consistent behavior. */ - _notifyOnLocationChange: function FullZoom__notifyOnLocationChange(browser) { + _notifyOnLocationChange: function (browser) { this._executeSoon(function () { Services.obs.notifyObservers(browser, "browser-fullZoom:location-change", ""); }); }, - _executeSoon: function FullZoom__executeSoon(callback) { + _executeSoon: function (callback) { if (!callback) return; Services.tm.mainThread.dispatch(callback, Ci.nsIThread.DISPATCH_NORMAL); diff --git a/application/palemoon/base/content/browser-gestureSupport.js b/application/palemoon/base/content/browser-gestureSupport.js index 13eb71b995..6826fdbf34 100644 --- a/application/palemoon/base/content/browser-gestureSupport.js +++ b/application/palemoon/base/content/browser-gestureSupport.js @@ -24,7 +24,7 @@ var gGestureSupport = { * @param aAddListener * True to add/init listeners and false to remove/uninit */ - init: function GS_init(aAddListener) { + init: function (aAddListener) { // Bug 863514 - Make gesture support work in electrolysis if (gMultiProcessBrowser) return; @@ -50,7 +50,7 @@ var gGestureSupport = { * @param aEvent * The gesture event to handle */ - handleEvent: function GS_handleEvent(aEvent) { + handleEvent: function (aEvent) { if (!Services.prefs.getBoolPref( "dom.debug.propagate_gesture_events_through_content")) { aEvent.stopPropagation(); @@ -122,7 +122,7 @@ var gGestureSupport = { * @param aDec * Command to trigger for decreasing motion (without gesture name) */ - _setupGesture: function GS__setupGesture(aEvent, aGesture, aPref, aInc, aDec) { + _setupGesture: function (aEvent, aGesture, aPref, aInc, aDec) { // Try to load user-set values from preferences for (let [pref, def] in Iterator(aPref)) aPref[pref] = this._getPref(aGesture + "." + pref, def); @@ -133,7 +133,7 @@ var gGestureSupport = { let isLatched = false; // Create the update function here to capture closure state - this._doUpdate = function GS__doUpdate(aEvent) { + this._doUpdate = function (aEvent) { // Update the offset with new event data offset += aEvent.delta; @@ -167,7 +167,7 @@ var gGestureSupport = { * The swipe gesture event. * @return true if the swipe event may navigate the history, false othwerwise. */ - _swipeNavigatesHistory: function GS__swipeNavigatesHistory(aEvent) { + _swipeNavigatesHistory: function (aEvent) { return this._getCommand(aEvent, ["swipe", "left"]) == "Browser:BackOrBackDuplicate" && this._getCommand(aEvent, ["swipe", "right"]) @@ -180,7 +180,7 @@ var gGestureSupport = { * @param aEvent * The swipe gesture start event. */ - _setupSwipeGesture: function GS__setupSwipeGesture(aEvent) { + _setupSwipeGesture: function (aEvent) { if (!this._swipeNavigatesHistory(aEvent)) return; @@ -197,11 +197,11 @@ var gGestureSupport = { gHistorySwipeAnimation.startAnimation(); - this._doUpdate = function GS__doUpdate(aEvent) { + this._doUpdate = function (aEvent) { gHistorySwipeAnimation.updateAnimation(aEvent.delta); }; - this._doEnd = function GS__doEnd(aEvent) { + this._doEnd = function (aEvent) { gHistorySwipeAnimation.swipeEndEventReceived(); this._doUpdate = function (aEvent) {}; @@ -217,7 +217,7 @@ var gGestureSupport = { * Source array containing any number of elements * @yield Array that is a subset of the input array from full set to empty */ - _power: function GS__power(aArray) { + _power: function (aArray) { // Create a bitmask based on the length of the array let num = 1 << aArray.length; while (--num >= 0) { @@ -241,7 +241,7 @@ var gGestureSupport = { * @return Name of the executed command. Returns null if no command is * found. */ - _doAction: function GS__doAction(aEvent, aGesture) { + _doAction: function (aEvent, aGesture) { let command = this._getCommand(aEvent, aGesture); return command && this._doCommand(aEvent, command); }, @@ -255,7 +255,7 @@ var gGestureSupport = { * @param aGesture * Array of gesture name parts (to be joined by periods) */ - _getCommand: function GS__getCommand(aEvent, aGesture) { + _getCommand: function (aEvent, aGesture) { // Create an array of pressed keys in a fixed order so that a command for // "meta" is preferred over "ctrl" when both buttons are pressed (and a // command for both don't exist) @@ -289,7 +289,7 @@ var gGestureSupport = { * @param aCommand * Name of the command found for the event's keys and gesture. */ - _doCommand: function GS__doCommand(aEvent, aCommand) { + _doCommand: function (aEvent, aCommand) { let node = document.getElementById(aCommand); if (node) { if (node.getAttribute("disabled") != "true") { @@ -329,7 +329,7 @@ var gGestureSupport = { * @param aEvent * The swipe event to handle */ - onSwipe: function GS_onSwipe(aEvent) { + onSwipe: function (aEvent) { // Figure out which one (and only one) direction was triggered for (let dir of ["UP", "RIGHT", "DOWN", "LEFT"]) { if (aEvent.direction == aEvent["DIRECTION_" + dir]) { @@ -347,7 +347,7 @@ var gGestureSupport = { * @param aDir * The direction for the swipe event */ - processSwipeEvent: function GS_processSwipeEvent(aEvent, aDir) { + processSwipeEvent: function (aEvent, aDir) { this._doAction(aEvent, ["swipe", aDir.toLowerCase()]); }, @@ -363,7 +363,7 @@ var gGestureSupport = { * The direction for the swipe event */ _coordinateSwipeEventWithAnimation: - function GS__coordinateSwipeEventWithAnimation(aEvent, aDir) { + function (aEvent, aDir) { if ((gHistorySwipeAnimation.isAnimationRunning()) && (aDir == "RIGHT" || aDir == "LEFT")) { gHistorySwipeAnimation.processSwipeEvent(aEvent, aDir); @@ -381,7 +381,7 @@ var gGestureSupport = { * @param aDef * Default value if the preference doesn't exist */ - _getPref: function GS__getPref(aPref, aDef) { + _getPref: function (aPref, aDef) { // Preferences branch under which all gestures preferences are stored const branch = "browser.gesture."; @@ -541,7 +541,7 @@ var gHistorySwipeAnimation = { * Initializes the support for history swipe animations, if it is supported * by the platform/configuration. */ - init: function HSA_init() { + init: function () { if (!this._isSupported()) return; @@ -568,7 +568,7 @@ var gHistorySwipeAnimation = { /** * Uninitializes the support for history swipe animations. */ - uninit: function HSA_uninit() { + uninit: function () { gBrowser.removeEventListener("pagehide", this, false); gBrowser.removeEventListener("pageshow", this, false); gBrowser.removeEventListener("popstate", this, false); @@ -582,7 +582,7 @@ var gHistorySwipeAnimation = { * Starts the swipe animation and handles fast swiping (i.e. a swipe animation * is already in progress when a new one is initiated). */ - startAnimation: function HSA_startAnimation() { + startAnimation: function () { if (this.isAnimationRunning()) { gBrowser.stop(); this._lastSwipeDir = "RELOAD"; // just ensure that != "" @@ -607,7 +607,7 @@ var gHistorySwipeAnimation = { /** * Stops the swipe animation. */ - stopAnimation: function HSA_stopAnimation() { + stopAnimation: function () { gHistorySwipeAnimation._removeBoxes(); }, @@ -618,7 +618,7 @@ var gHistorySwipeAnimation = { * A floating point value that represents the progress of the * swipe gesture. */ - updateAnimation: function HSA_updateAnimation(aVal) { + updateAnimation: function (aVal) { if (!this.isAnimationRunning()) return; @@ -668,7 +668,7 @@ var gHistorySwipeAnimation = { * @param aEvent * An event to process. */ - handleEvent: function HSA_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "TabClose": let browser = gBrowser.getBrowserForTab(aEvent.target); @@ -698,7 +698,7 @@ var gHistorySwipeAnimation = { * * @return true if the animation is currently running, false otherwise. */ - isAnimationRunning: function HSA_isAnimationRunning() { + isAnimationRunning: function () { return !!this._container; }, @@ -710,7 +710,7 @@ var gHistorySwipeAnimation = { * @param aDir * The direction for the swipe event */ - processSwipeEvent: function HSA_processSwipeEvent(aEvent, aDir) { + processSwipeEvent: function (aEvent, aDir) { if (aDir == "RIGHT") this._historyIndex += this.isLTR ? 1 : -1; else if (aDir == "LEFT") @@ -725,7 +725,7 @@ var gHistorySwipeAnimation = { * * @return true if there is a previous page in history, false otherwise. */ - canGoBack: function HSA_canGoBack() { + canGoBack: function () { if (this.isAnimationRunning()) return this._doesIndexExistInHistory(this._historyIndex - 1); return gBrowser.webNavigation.canGoBack; @@ -736,7 +736,7 @@ var gHistorySwipeAnimation = { * * @return true if there is a next page in history, false otherwise. */ - canGoForward: function HSA_canGoForward() { + canGoForward: function () { if (this.isAnimationRunning()) return this._doesIndexExistInHistory(this._historyIndex + 1); return gBrowser.webNavigation.canGoForward; @@ -747,7 +747,7 @@ var gHistorySwipeAnimation = { * event and that we should navigate to the page that the user swiped to, if * any. This will also result in the animation overlay to be torn down. */ - swipeEndEventReceived: function HSA_swipeEndEventReceived() { + swipeEndEventReceived: function () { if (this._lastSwipeDir != "") this._navigateToHistoryIndex(); else @@ -761,7 +761,7 @@ var gHistorySwipeAnimation = { * The index to check for availability for in the history. * @return true if the index exists in the browser history, false otherwise. */ - _doesIndexExistInHistory: function HSA__doesIndexExistInHistory(aIndex) { + _doesIndexExistInHistory: function (aIndex) { try { gBrowser.webNavigation.sessionHistory.getEntryAtIndex(aIndex, false); } @@ -775,7 +775,7 @@ var gHistorySwipeAnimation = { * Navigates to the index in history that is currently being tracked by * |this|. */ - _navigateToHistoryIndex: function HSA__navigateToHistoryIndex() { + _navigateToHistoryIndex: function () { if (this._doesIndexExistInHistory(this._historyIndex)) { gBrowser.webNavigation.gotoIndex(this._historyIndex); } @@ -787,7 +787,7 @@ var gHistorySwipeAnimation = { * * return true if supported, false otherwise. */ - _isSupported: function HSA__isSupported() { + _isSupported: function () { return window.matchMedia("(-moz-swipe-animation-enabled)").matches; }, @@ -796,7 +796,7 @@ var gHistorySwipeAnimation = { * progress when a new one is initiated). This will swap out the snapshots * used in the previous animation with the appropriate new ones. */ - _handleFastSwiping: function HSA__handleFastSwiping() { + _handleFastSwiping: function () { this._installCurrentPageSnapshot(null); this._installPrevAndNextSnapshots(); }, @@ -804,7 +804,7 @@ var gHistorySwipeAnimation = { /** * Adds the boxes that contain the snapshots used during the swipe animation. */ - _addBoxes: function HSA__addBoxes() { + _addBoxes: function () { let browserStack = document.getAnonymousElementByAttribute(gBrowser.getNotificationBox(), "class", "browserStack"); @@ -830,7 +830,7 @@ var gHistorySwipeAnimation = { /** * Removes the boxes. */ - _removeBoxes: function HSA__removeBoxes() { + _removeBoxes: function () { this._curBox = null; this._prevBox = null; this._nextBox = null; @@ -849,7 +849,7 @@ var gHistorySwipeAnimation = { * The name of the tag to create the element for. * @return the newly created element. */ - _createElement: function HSA__createElement(aID, aTagName) { + _createElement: function (aID, aTagName) { let XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; let element = document.createElementNS(XULNS, aTagName); element.id = aID; @@ -864,14 +864,14 @@ var gHistorySwipeAnimation = { * @param aPosition * The position (in X coordinates) to move the box element to. */ - _positionBox: function HSA__positionBox(aBox, aPosition) { + _positionBox: function (aBox, aPosition) { aBox.style.transform = "translateX(" + this._boxWidth * aPosition + "px)"; }, /** * Takes a snapshot of the page the browser is currently on. */ - _takeSnapshot: function HSA__takeSnapshot() { + _takeSnapshot: function () { if ((this._maxSnapshots < 1) || (gBrowser.webNavigation.sessionHistory.index < 0)) return; @@ -899,7 +899,7 @@ var gHistorySwipeAnimation = { * Retrieves the maximum number of snapshots that should be kept in memory. * This limit is a global limit and is valid across all open tabs. */ - _getMaxSnapshots: function HSA__getMaxSnapshots() { + _getMaxSnapshots: function () { return gPrefService.getIntPref("browser.snapshots.limit"); }, @@ -912,7 +912,7 @@ var gHistorySwipeAnimation = { * The snapshot to add to the list and compress. */ _assignSnapshotToCurrentBrowser: - function HSA__assignSnapshotToCurrentBrowser(aCanvas) { + function (aCanvas) { let browser = gBrowser.selectedBrowser; let currIndex = browser.webNavigation.sessionHistory.index; @@ -946,7 +946,7 @@ var gHistorySwipeAnimation = { * @param aBrowser * The browser the new snapshot was taken in. */ - _removeTrackedSnapshot: function HSA__removeTrackedSnapshot(aIndex, aBrowser) { + _removeTrackedSnapshot: function (aIndex, aBrowser) { let arr = this._trackedSnapshots; let requiresExactIndexMatch = aIndex >= 0; for (let i = 0; i < arr.length; i++) { @@ -972,7 +972,7 @@ var gHistorySwipeAnimation = { * The browser the new snapshot was taken in. */ _addSnapshotRefToArray: - function HSA__addSnapshotRefToArray(aIndex, aBrowser) { + function (aIndex, aBrowser) { let id = { index: aIndex, browser: aBrowser }; let arr = this._trackedSnapshots; @@ -995,7 +995,7 @@ var gHistorySwipeAnimation = { * couldn't complete before this method was called. * @return A new Image object representing the converted blob. */ - _convertToImg: function HSA__convertToImg(aBlob) { + _convertToImg: function (aBlob) { if (!aBlob) return null; @@ -1022,7 +1022,7 @@ var gHistorySwipeAnimation = { * the previously stored snapshot for this index (if any) will be used. */ _installCurrentPageSnapshot: - function HSA__installCurrentPageSnapshot(aCanvas) { + function (aCanvas) { let currSnapshot = aCanvas; if (!currSnapshot) { let snapshots = gBrowser.selectedBrowser.snapshots || {}; @@ -1039,7 +1039,7 @@ var gHistorySwipeAnimation = { * previously stored for their respective indeces. */ _installPrevAndNextSnapshots: - function HSA__installPrevAndNextSnapshots() { + function () { let snapshots = gBrowser.selectedBrowser.snapshots || []; let currIndex = this._historyIndex; let prevIndex = currIndex - 1; diff --git a/application/palemoon/base/content/browser-places.js b/application/palemoon/base/content/browser-places.js index 590fe7ecd9..92c61b2cf4 100644 --- a/application/palemoon/base/content/browser-places.js +++ b/application/palemoon/base/content/browser-places.js @@ -33,7 +33,7 @@ var StarUI = { ["cmd_close", "cmd_closeWindow"].map(function (id) this._element(id), this); }, - _blockCommands: function SU__blockCommands() { + _blockCommands: function () { this._blockedCommands.forEach(function (elt) { // make sure not to permanently disable this item (see bug 409155) if (elt.hasAttribute("wasDisabled")) @@ -47,7 +47,7 @@ var StarUI = { }); }, - _restoreCommandsState: function SU__restoreCommandsState() { + _restoreCommandsState: function () { this._blockedCommands.forEach(function (elt) { if (elt.getAttribute("wasDisabled") != "true") elt.removeAttribute("disabled"); @@ -56,7 +56,7 @@ var StarUI = { }, // nsIDOMEventListener - handleEvent: function SU_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "popuphidden": if (aEvent.originalTarget == this.panel) { @@ -119,7 +119,7 @@ var StarUI = { _overlayLoaded: false, _overlayLoading: false, showEditBookmarkPopup: - function SU_showEditBookmarkPopup(aItemId, aAnchorElement, aPosition) { + function (aItemId, aAnchorElement, aPosition) { // Performance: load the overlay the first time the panel is opened // (see bug 392443). if (this._overlayLoading) @@ -152,7 +152,7 @@ var StarUI = { }, _doShowEditBookmarkPanel: - function SU__doShowEditBookmarkPanel(aItemId, aAnchorElement, aPosition) { + function (aItemId, aAnchorElement, aPosition) { if (this.panel.state != "closed") return; @@ -210,7 +210,7 @@ var StarUI = { }, panelShown: - function SU_panelShown(aEvent) { + function (aEvent) { if (aEvent.target == this.panel) { if (!this._element("editBookmarkPanelContent").hidden) { let fieldToFocus = "editBMPanel_" + @@ -227,24 +227,24 @@ var StarUI = { } }, - quitEditMode: function SU_quitEditMode() { + quitEditMode: function () { this._element("editBookmarkPanelContent").hidden = true; this._element("editBookmarkPanelBottomButtons").hidden = true; gEditItemOverlay.uninitPanel(true); }, - cancelButtonOnCommand: function SU_cancelButtonOnCommand() { + cancelButtonOnCommand: function () { this._actionOnHide = "cancel"; this.panel.hidePopup(); }, - removeBookmarkButtonCommand: function SU_removeBookmarkButtonCommand() { + removeBookmarkButtonCommand: function () { this._uriForRemoval = PlacesUtils.bookmarks.getBookmarkURI(this._itemId); this._actionOnHide = "remove"; this.panel.hidePopup(); }, - beginBatch: function SU_beginBatch() { + beginBatch: function () { if (!this._batching) { PlacesUtils.transactionManager.beginBatch(null); this._batching = true; @@ -267,7 +267,7 @@ var PlacesCommandHook = { * @param [optional] aShowEditUI * whether or not to show the edit-bookmark UI for the bookmark item */ - bookmarkPage: function PCH_bookmarkPage(aBrowser, aParent, aShowEditUI) { + bookmarkPage: function (aBrowser, aParent, aShowEditUI) { var uri = aBrowser.currentURI; var itemId = PlacesUtils.getMostRecentBookmarkForURI(uri); if (itemId == -1) { @@ -343,7 +343,7 @@ var PlacesCommandHook = { /** * Adds a bookmark to the page loaded in the current tab. */ - bookmarkCurrentPage: function PCH_bookmarkCurrentPage(aShowEditUI, aParent) { + bookmarkCurrentPage: function (aShowEditUI, aParent) { this.bookmarkPage(gBrowser.selectedBrowser, aParent, aShowEditUI); }, @@ -357,7 +357,7 @@ var PlacesCommandHook = { * @param aTitle * The link text */ - bookmarkLink: function PCH_bookmarkLink(aParent, aURL, aTitle) { + bookmarkLink: function (aParent, aURL, aTitle) { var linkURI = makeURI(aURL); var itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI); if (itemId == -1) { @@ -401,7 +401,7 @@ var PlacesCommandHook = { * Adds a folder with bookmarks to all of the currently open tabs in this * window. */ - bookmarkCurrentPages: function PCH_bookmarkCurrentPages() { + bookmarkCurrentPages: function () { let pages = this.uniqueCurrentPages; if (pages.length > 1) { PlacesUIUtils.showBookmarkDialog({ action: "add" @@ -416,7 +416,7 @@ var PlacesCommandHook = { * Updates disabled state for the "Bookmark All Tabs" command. */ updateBookmarkAllTabsCommand: - function PCH_updateBookmarkAllTabsCommand() { + function () { // There's nothing to do in non-browser windows. if (window.location.href != getBrowserURL()) return; @@ -436,7 +436,7 @@ var PlacesCommandHook = { * @subtitle subtitle * A short description of the feed. Optional. */ - addLiveBookmark: function PCH_addLiveBookmark(url, feedTitle, feedSubtitle) { + addLiveBookmark: function (url, feedTitle, feedSubtitle) { let toolbarIP = new InsertionPoint(PlacesUtils.toolbarFolderId, -1); let feedURI = makeURI(url); @@ -466,7 +466,7 @@ var PlacesCommandHook = { * are: History, AllBookmarks, BookmarksMenu, BookmarksToolbar, * UnfiledBookmarks, Tags and Downloads. */ - showPlacesOrganizer: function PCH_showPlacesOrganizer(aLeftPaneRoot) { + showPlacesOrganizer: function (aLeftPaneRoot) { var organizer = Services.wm.getMostRecentWindow("Places:Organizer"); // Due to bug 528706, getMostRecentWindow can return closed windows. if (!organizer || organizer.closed) { @@ -499,7 +499,7 @@ function HistoryMenu(aPopupShowingEvent) { } HistoryMenu.prototype = { - toggleRestoreLastSession: function HM_toggleRestoreLastSession() { + toggleRestoreLastSession: function () { let restoreItem = this._rootElt.ownerDocument.getElementById("Browser:RestoreLastSession"); if (this._ss.canRestoreLastSession && @@ -509,7 +509,7 @@ HistoryMenu.prototype = { restoreItem.setAttribute("disabled", true); }, - toggleRecentlyClosedTabs: function HM_toggleRecentlyClosedTabs() { + toggleRecentlyClosedTabs: function () { // enable/disable the Recently Closed Tabs sub menu var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedTabsMenu")[0]; @@ -526,7 +526,7 @@ HistoryMenu.prototype = { * @param aEvent * The event when the user clicks the menu item */ - _undoCloseMiddleClick: function PHM__undoCloseMiddleClick(aEvent) { + _undoCloseMiddleClick: function (aEvent) { if (aEvent.button != 1) return; @@ -537,7 +537,7 @@ HistoryMenu.prototype = { /** * Populate when the history menu is opened */ - populateUndoSubmenu: function PHM_populateUndoSubmenu() { + populateUndoSubmenu: function () { var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedTabsMenu")[0]; var undoPopup = undoMenu.firstChild; @@ -596,7 +596,7 @@ HistoryMenu.prototype = { }, false); }, - toggleRecentlyClosedWindows: function PHM_toggleRecentlyClosedWindows() { + toggleRecentlyClosedWindows: function () { // enable/disable the Recently Closed Windows sub menu var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedWindowsMenu")[0]; @@ -610,7 +610,7 @@ HistoryMenu.prototype = { /** * Populate when the history menu is opened */ - populateUndoWindowSubmenu: function PHM_populateUndoWindowSubmenu() { + populateUndoWindowSubmenu: function () { let undoMenu = this._rootElt.getElementsByClassName("recentlyClosedWindowsMenu")[0]; let undoPopup = undoMenu.firstChild; let menuLabelString = gNavigatorBundle.getString("menuUndoCloseWindowLabel"); @@ -672,7 +672,7 @@ HistoryMenu.prototype = { "for (var i = 0; i < " + undoItems.length + "; i++) undoCloseWindow();"); }, - toggleTabsFromOtherComputers: function PHM_toggleTabsFromOtherComputers() { + toggleTabsFromOtherComputers: function () { // This is a no-op if MOZ_SERVICES_SYNC isn't defined #ifdef MOZ_SERVICES_SYNC // Enable/disable the Tabs From Other Computers menu. Some of the menus handled @@ -698,7 +698,7 @@ HistoryMenu.prototype = { #endif }, - _onPopupShowing: function HM__onPopupShowing(aEvent) { + _onPopupShowing: function (aEvent) { PlacesMenu.prototype._onPopupShowing.apply(this, arguments); // Don't handle events for submenus. @@ -711,7 +711,7 @@ HistoryMenu.prototype = { this.toggleTabsFromOtherComputers(); }, - _onCommand: function HM__onCommand(aEvent) { + _onCommand: function (aEvent) { let placesNode = aEvent.target._placesNode; if (placesNode) { if (!PrivateBrowsingUtils.isWindowPrivate(window)) @@ -739,7 +739,7 @@ var BookmarksEventHandler = { * @param aView * The places view which aEvent should be associated with. */ - onClick: function BEH_onClick(aEvent, aView) { + onClick: function (aEvent, aView) { // Only handle middle-click or left-click with modifiers. #ifdef XP_MACOSX var modifKey = aEvent.metaKey || aEvent.shiftKey; @@ -786,13 +786,13 @@ var BookmarksEventHandler = { * @param aView * The places view which aEvent should be associated with. */ - onCommand: function BEH_onCommand(aEvent, aView) { + onCommand: function (aEvent, aView) { var target = aEvent.originalTarget; if (target._placesNode) PlacesUIUtils.openNodeWithEvent(target._placesNode, aEvent, aView); }, - fillInBHTooltip: function BEH_fillInBHTooltip(aDocument, aEvent) { + fillInBHTooltip: function (aDocument, aEvent) { var node; var cropped = false; var targetURI; @@ -863,7 +863,7 @@ var PlacesMenuDNDHandler = { * @param event * The DragEnter event that spawned the opening. */ - onDragEnter: function PMDH_onDragEnter(event) { + onDragEnter: function (event) { // Opening menus in a Places popup is handled by the view itself. if (!this._isStaticContainer(event.target)) return; @@ -887,7 +887,7 @@ var PlacesMenuDNDHandler = { * @returns true if the element is a container element (menu or * menu-toolbarbutton), false otherwise. */ - onDragLeave: function PMDH_onDragLeave(event) { + onDragLeave: function (event) { // Handle menu-button separate targets. if (event.relatedTarget === event.currentTarget || event.relatedTarget.parentNode === event.currentTarget) @@ -924,7 +924,7 @@ var PlacesMenuDNDHandler = { * @returns true if the element is a container element (menu or *` menu-toolbarbutton), false otherwise. */ - _isStaticContainer: function PMDH__isContainer(node) { + _isStaticContainer: function (node) { let isMenu = node.localName == "menu" || (node.localName == "toolbarbutton" && (node.getAttribute("type") == "menu" || @@ -940,7 +940,7 @@ var PlacesMenuDNDHandler = { * @param event * The DragOver event. */ - onDragOver: function PMDH_onDragOver(event) { + onDragOver: function (event) { let ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, PlacesUtils.bookmarks.DEFAULT_INDEX, Ci.nsITreeView.DROP_ON); @@ -955,7 +955,7 @@ var PlacesMenuDNDHandler = { * @param event * The Drop event. */ - onDrop: function PMDH_onDrop(event) { + onDrop: function (event) { // Put the item at the end of bookmark menu. let ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, PlacesUtils.bookmarks.DEFAULT_INDEX, @@ -979,7 +979,7 @@ var PlacesToolbarHelper = { return document.getElementById("PlacesToolbar"); }, - init: function PTH_init() { + init: function () { let viewElt = this._viewElt; if (!viewElt || viewElt._placesView) return; @@ -997,7 +997,7 @@ var PlacesToolbarHelper = { new PlacesToolbar(this._place); }, - customizeStart: function PTH_customizeStart() { + customizeStart: function () { let viewElt = this._viewElt; if (viewElt && viewElt._placesView) viewElt._placesView.uninit(); @@ -1005,7 +1005,7 @@ var PlacesToolbarHelper = { this._isCustomizing = true; }, - customizeDone: function PTH_customizeDone() { + customizeDone: function () { this._isCustomizing = false; this.init(); } @@ -1074,11 +1074,11 @@ var BookmarkingUI = { * reasons. */ _popupNeedsUpdate: true, - onToolbarVisibilityChange: function BUI_onToolbarVisibilityChange() { + onToolbarVisibilityChange: function () { this._popupNeedsUpdate = true; }, - onPopupShowing: function BUI_onPopupShowing(event) { + onPopupShowing: function (event) { // Don't handle events for submenus. if (event.target != event.currentTarget) return; @@ -1112,7 +1112,7 @@ var BookmarkingUI = { /** * Handles star styling based on page proxy state changes. */ - onPageProxyStateChanged: function BUI_onPageProxyStateChanged(aState) { + onPageProxyStateChanged: function (aState) { if (!this.star) { return; } @@ -1126,7 +1126,7 @@ var BookmarkingUI = { } }, - _updateToolbarStyle: function BUI__updateToolbarStyle() { + _updateToolbarStyle: function () { if (!this.button) { return; } @@ -1145,7 +1145,7 @@ var BookmarkingUI = { } }, - _uninitView: function BUI__uninitView() { + _uninitView: function () { // When an element with a placesView attached is removed and re-inserted, // XBL reapplies the binding causing any kind of issues and possible leaks, // so kill current view and let popupshowing generate a new one. @@ -1160,22 +1160,22 @@ var BookmarkingUI = { } }, - customizeStart: function BUI_customizeStart() { + customizeStart: function () { this._uninitView(); }, - customizeChange: function BUI_customizeChange() { + customizeChange: function () { this._updateToolbarStyle(); }, - customizeDone: function BUI_customizeDone() { + customizeDone: function () { delete this._button; this.onToolbarVisibilityChange(); this._updateToolbarStyle(); }, _hasBookmarksObserver: false, - uninit: function BUI_uninit() { + uninit: function () { this._uninitView(); if (this._hasBookmarksObserver) { @@ -1188,14 +1188,14 @@ var BookmarkingUI = { } }, - onLocationChange: function BUI_onLocationChange() { + onLocationChange: function () { if (this._uri && gBrowser.currentURI.equals(this._uri)) { return; } this.updateStarState(); }, - updateStarState: function BUI_updateStarState() { + updateStarState: function () { // Reset tracked values. this._uri = gBrowser.currentURI; this._itemIds = []; @@ -1240,7 +1240,7 @@ var BookmarkingUI = { }, this); }, - _updateStar: function BUI__updateStar() { + _updateStar: function () { if (!this.star) { return; } @@ -1255,7 +1255,7 @@ var BookmarkingUI = { } }, - onCommand: function BUI_onCommand(aEvent) { + onCommand: function (aEvent) { if (aEvent.target != aEvent.currentTarget) { return; } @@ -1266,7 +1266,7 @@ var BookmarkingUI = { }, // nsINavBookmarkObserver - onItemAdded: function BUI_onItemAdded(aItemId, aParentId, aIndex, aItemType, + onItemAdded: function (aItemId, aParentId, aIndex, aItemType, aURI) { if (aURI && aURI.equals(this._uri)) { // If a new bookmark has been added to the tracked uri, register it. @@ -1277,7 +1277,7 @@ var BookmarkingUI = { } }, - onItemRemoved: function BUI_onItemRemoved(aItemId) { + onItemRemoved: function (aItemId) { let index = this._itemIds.indexOf(aItemId); // If one of the tracked bookmarks has been removed, unregister it. if (index != -1) { @@ -1286,7 +1286,7 @@ var BookmarkingUI = { } }, - onItemChanged: function BUI_onItemChanged(aItemId, aProperty, + onItemChanged: function (aItemId, aProperty, aIsAnnotationProperty, aNewValue) { if (aProperty == "uri") { let index = this._itemIds.indexOf(aItemId); diff --git a/application/palemoon/base/content/browser-plugins.js b/application/palemoon/base/content/browser-plugins.js index 8382682038..b31793a4ea 100644 --- a/application/palemoon/base/content/browser-plugins.js +++ b/application/palemoon/base/content/browser-plugins.js @@ -269,12 +269,12 @@ var gPluginHandler = { } }, - isKnownPlugin: function PH_isKnownPlugin(objLoadingContent) { + isKnownPlugin: function (objLoadingContent) { return (objLoadingContent.getContentTypeForMIMEType(objLoadingContent.actualType) == Ci.nsIObjectLoadingContent.TYPE_PLUGIN); }, - canActivatePlugin: function PH_canActivatePlugin(objLoadingContent) { + canActivatePlugin: function (objLoadingContent) { // if this isn't a known plugin, we can't activate it // (this also guards pluginHost.getPermissionStringForType against // unexpected input) @@ -307,7 +307,7 @@ var gPluginHandler = { overlay.style.visibility = "hidden"; }, - stopPlayPreview: function PH_stopPlayPreview(aPlugin, aPlayPlugin) { + stopPlayPreview: function (aPlugin, aPlayPlugin) { let objLoadingContent = aPlugin.QueryInterface(Ci.nsIObjectLoadingContent); if (objLoadingContent.activated) return; @@ -340,7 +340,7 @@ var gPluginHandler = { }, // Event listener for click-to-play plugins. - _handleClickToPlayEvent: function PH_handleClickToPlayEvent(aPlugin) { + _handleClickToPlayEvent: function (aPlugin) { let doc = aPlugin.ownerDocument; let browser = gBrowser.getBrowserForDocument(doc.defaultView.top.document); let pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost); @@ -372,7 +372,7 @@ var gPluginHandler = { }, _overlayClickListener: { - handleEvent: function PH_handleOverlayClick(aEvent) { + handleEvent: function (aEvent) { let plugin = document.getBindingParent(aEvent.target); let contentWindow = plugin.ownerDocument.defaultView.top; // gBrowser.getBrowserForDocument does not exist in the case where we @@ -399,7 +399,7 @@ var gPluginHandler = { } }, - _handlePlayPreviewEvent: function PH_handlePlayPreviewEvent(aPlugin) { + _handlePlayPreviewEvent: function (aPlugin) { let doc = aPlugin.ownerDocument; let browser = gBrowser.getBrowserForDocument(doc.defaultView.top.document); let pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost); @@ -441,7 +441,7 @@ var gPluginHandler = { } }, - reshowClickToPlayNotification: function PH_reshowClickToPlayNotification() { + reshowClickToPlayNotification: function () { let browser = gBrowser.selectedBrowser; let contentWindow = browser.contentWindow; let cwu = contentWindow.QueryInterface(Ci.nsIInterfaceRequestor) @@ -459,7 +459,7 @@ var gPluginHandler = { gPluginHandler._showClickToPlayNotification(browser); }, - _clickToPlayNotificationEventCallback: function PH_ctpEventCallback(event) { + _clickToPlayNotificationEventCallback: function (event) { if (event == "showing") { gPluginHandler._makeCenterActions(this); } @@ -470,7 +470,7 @@ var gPluginHandler = { } }, - _makeCenterActions: function PH_makeCenterActions(notification) { + _makeCenterActions: function (notification) { let contentWindow = notification.browser.contentWindow; let cwu = contentWindow.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIDOMWindowUtils); @@ -533,7 +533,7 @@ var gPluginHandler = { * and activate plugins if necessary. * aNewState should be either "allownow" "allowalways" or "block" */ - _updatePluginPermission: function PH_setPermissionForPlugins(aNotification, aPluginInfo, aNewState) { + _updatePluginPermission: function (aNotification, aPluginInfo, aNewState) { let permission; let expireType; let expireTime; @@ -598,7 +598,7 @@ var gPluginHandler = { } }, - _showClickToPlayNotification: function PH_showClickToPlayNotification(aBrowser, aPrimaryPlugin) { + _showClickToPlayNotification: function (aBrowser, aPrimaryPlugin) { let notification = PopupNotifications.getNotification("click-to-play-plugins", aBrowser); let contentWindow = aBrowser.contentWindow; diff --git a/application/palemoon/base/content/browser-syncui.js b/application/palemoon/base/content/browser-syncui.js index 6fad03cddf..9a02dc722d 100644 --- a/application/palemoon/base/content/browser-syncui.js +++ b/application/palemoon/base/content/browser-syncui.js @@ -20,7 +20,7 @@ var gSyncUI = { _unloaded: false, - init: function SUI_init() { + init: function () { // Proceed to set up the UI if Sync has already started up. // Otherwise we'll do it when Sync is firing up. let xps = Components.classes["@mozilla.org/weave/service;1"] @@ -48,7 +48,7 @@ var gSyncUI = { }, false); }, - initUI: function SUI_initUI() { + initUI: function () { // If this is a browser window? if (gBrowser) { this._obs.push("weave:notification:added"); @@ -64,7 +64,7 @@ var gSyncUI = { this.updateUI(); }, - initNotifications: function SUI_initNotifications() { + initNotifications: function () { const XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; let notificationbox = document.createElementNS(XULNS, "notificationbox"); notificationbox.id = "sync-notifications"; @@ -82,13 +82,13 @@ var gSyncUI = { _wasDelayed: false, - _needsSetup: function SUI__needsSetup() { + _needsSetup: function () { let firstSync = Services.prefs.getCharPref("services.sync.firstSync", ""); return Weave.Status.checkSetup() == Weave.CLIENT_NOT_CONFIGURED || firstSync == "notReady"; }, - updateUI: function SUI_updateUI() { + updateUI: function () { let needsSetup = this._needsSetup(); document.getElementById("sync-setup-state").hidden = !needsSetup; document.getElementById("sync-syncnow-state").hidden = needsSetup; @@ -108,7 +108,7 @@ var gSyncUI = { // Functions called by observers - onActivityStart: function SUI_onActivityStart() { + onActivityStart: function () { if (!gBrowser) return; @@ -119,7 +119,7 @@ var gSyncUI = { button.setAttribute("status", "active"); }, - onSyncDelay: function SUI_onSyncDelay() { + onSyncDelay: function () { // basically, we want to just inform users that stuff is going to take a while let title = this._stringBundle.GetStringFromName("error.sync.no_node_found.title"); let description = this._stringBundle.GetStringFromName("error.sync.no_node_found"); @@ -134,17 +134,17 @@ var gSyncUI = { this._wasDelayed = true; }, - onLoginFinish: function SUI_onLoginFinish() { + onLoginFinish: function () { // Clear out any login failure notifications let title = this._stringBundle.GetStringFromName("error.login.title"); this.clearError(title); }, - onSetupComplete: function SUI_onSetupComplete() { + onSetupComplete: function () { this.onLoginFinish(); }, - onLoginError: function SUI_onLoginError() { + onLoginError: function () { // if login fails, any other notifications are essentially moot Weave.Notifications.removeAll(); @@ -182,11 +182,11 @@ var gSyncUI = { this.updateUI(); }, - onLogout: function SUI_onLogout() { + onLogout: function () { this.updateUI(); }, - onStartOver: function SUI_onStartOver() { + onStartOver: function () { this.clearError(); }, @@ -211,11 +211,11 @@ var gSyncUI = { }, // Commands - doSync: function SUI_doSync() { + doSync: function () { setTimeout(function() Weave.Service.errorHandler.syncAndReportErrors(), 0); }, - handleToolbarButton: function SUI_handleStatusbarButton() { + handleToolbarButton: function () { if (this._needsSetup()) this.openSetup(); else @@ -235,7 +235,7 @@ var gSyncUI = { * "reset" -- reset sync */ - openSetup: function SUI_openSetup(wizardType) { + openSetup: function (wizardType) { let win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); if (win) win.focus(); @@ -258,7 +258,7 @@ var gSyncUI = { "syncAddDevice", "centerscreen,chrome,resizable=no"); }, - openQuotaDialog: function SUI_openQuotaDialog() { + openQuotaDialog: function () { let win = Services.wm.getMostRecentWindow("Sync:ViewQuota"); if (win) win.focus(); @@ -268,13 +268,13 @@ var gSyncUI = { "centerscreen,chrome,dialog,modal"); }, - openPrefs: function SUI_openPrefs() { + openPrefs: function () { openPreferences("paneSync"); }, // Helpers - _updateLastSyncTime: function SUI__updateLastSyncTime() { + _updateLastSyncTime: function () { if (!gBrowser) return; @@ -296,12 +296,12 @@ var gSyncUI = { syncButton.setAttribute("tooltiptext", lastSyncLabel); }, - clearError: function SUI_clearError(errorString) { + clearError: function (errorString) { Weave.Notifications.removeAll(errorString); this.updateUI(); }, - onSyncFinish: function SUI_onSyncFinish() { + onSyncFinish: function () { let title = this._stringBundle.GetStringFromName("error.sync.title"); // Clear out sync failures on a successful sync @@ -314,7 +314,7 @@ var gSyncUI = { } }, - onSyncError: function SUI_onSyncError() { + onSyncError: function () { let title = this._stringBundle.GetStringFromName("error.sync.title"); if (Weave.Status.login != Weave.LOGIN_SUCCEEDED) { @@ -395,7 +395,7 @@ var gSyncUI = { this.updateUI(); }, - observe: function SUI_observe(subject, topic, data) { + observe: function (subject, topic, data) { if (this._unloaded) { Cu.reportError("SyncUI observer called after unload: " + topic); return; diff --git a/application/palemoon/base/content/browser-tabPreviews.js b/application/palemoon/base/content/browser-tabPreviews.js index 4f8dbd59f5..0317e309f9 100644 --- a/application/palemoon/base/content/browser-tabPreviews.js +++ b/application/palemoon/base/content/browser-tabPreviews.js @@ -22,7 +22,7 @@ var tabPreviews = { return this.height = Math.round(this.width * this.aspectRatio); }, - init: function tabPreviews_init() { + init: function () { if (this._selectedTab) return; this._selectedTab = gBrowser.selectedTab; @@ -31,7 +31,7 @@ var tabPreviews = { gBrowser.tabContainer.addEventListener("SSTabRestored", this, false); }, - get: function tabPreviews_get(aTab) { + get: function (aTab) { let uri = aTab.linkedBrowser.currentURI.spec; if (aTab.__thumbnail_lastURI && @@ -52,7 +52,7 @@ var tabPreviews = { return this.capture(aTab, !aTab.hasAttribute("busy")); }, - capture: function tabPreviews_capture(aTab, aStore) { + capture: function (aTab, aStore) { var thumbnail = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas"); thumbnail.mozOpaque = true; thumbnail.height = this.height; @@ -75,7 +75,7 @@ var tabPreviews = { return thumbnail; }, - handleEvent: function tabPreviews_handleEvent(event) { + handleEvent: function (event) { switch (event.type) { case "TabSelect": if (this._selectedTab && @@ -228,7 +228,7 @@ var ctrlTab = { return this._tabList = list; }, - init: function ctrlTab_init() { + init: function () { if (!this._recentlyUsedTabs) { tabPreviews.init(); @@ -237,13 +237,13 @@ var ctrlTab = { } }, - uninit: function ctrlTab_uninit() { + uninit: function () { this._recentlyUsedTabs = null; this._init(false); }, prefName: "browser.ctrlTab.previews", - readPref: function ctrlTab_readPref() { + readPref: function () { var enable = gPrefService.getBoolPref(this.prefName) && (!gPrefService.prefHasUserValue("browser.ctrlTab.disallowForScreenReaders") || @@ -258,7 +258,7 @@ var ctrlTab = { this.readPref(); }, - updatePreviews: function ctrlTab_updatePreviews() { + updatePreviews: function () { for (let i = 0; i < this.previews.length; i++) this.updatePreview(this.previews[i], this.tabList[i]); @@ -267,7 +267,7 @@ var ctrlTab = { PluralForm.get(this.tabCount, showAllLabel).replace("#1", this.tabCount); }, - updatePreview: function ctrlTab_updatePreview(aPreview, aTab) { + updatePreview: function (aPreview, aTab) { if (aPreview == this.showAllButton) return; @@ -301,7 +301,7 @@ var ctrlTab = { } }, - advanceFocus: function ctrlTab_advanceFocus(aForward) { + advanceFocus: function (aForward) { let selectedIndex = Array.indexOf(this.previews, this.selected); do { selectedIndex += aForward ? 1 : -1; @@ -325,12 +325,12 @@ var ctrlTab = { } }, - _mouseOverFocus: function ctrlTab_mouseOverFocus(aPreview) { + _mouseOverFocus: function (aPreview) { if (this._trackMouseOver) aPreview.focus(); }, - pick: function ctrlTab_pick(aPreview) { + pick: function (aPreview) { if (!this.tabCount) return; @@ -342,17 +342,17 @@ var ctrlTab = { this.close(select._tab); }, - showAllTabs: function ctrlTab_showAllTabs(aPreview) { + showAllTabs: function (aPreview) { this.close(); document.getElementById("Browser:ShowAllTabs").doCommand(); }, - remove: function ctrlTab_remove(aPreview) { + remove: function (aPreview) { if (aPreview._tab) gBrowser.removeTab(aPreview._tab); }, - attachTab: function ctrlTab_attachTab(aTab, aPos) { + attachTab: function (aTab, aPos) { if (aPos == 0) this._recentlyUsedTabs.unshift(aTab); else if (aPos) @@ -360,13 +360,13 @@ var ctrlTab = { else this._recentlyUsedTabs.push(aTab); }, - detachTab: function ctrlTab_detachTab(aTab) { + detachTab: function (aTab) { var i = this._recentlyUsedTabs.indexOf(aTab); if (i >= 0) this._recentlyUsedTabs.splice(i, 1); }, - open: function ctrlTab_open() { + open: function () { if (this.isOpen) return; @@ -385,7 +385,7 @@ var ctrlTab = { }, 200, this); }, - _openPanel: function ctrlTab_openPanel() { + _openPanel: function () { tabPreviewPanelHelper.opening(this); this.panel.width = Math.min(screen.availWidth * .99, @@ -396,7 +396,7 @@ var ctrlTab = { false); }, - close: function ctrlTab_close(aTabToSelect) { + close: function (aTabToSelect) { if (!this.isOpen) return; @@ -413,7 +413,7 @@ var ctrlTab = { this.panel.hidePopup(); }, - setupGUI: function ctrlTab_setupGUI() { + setupGUI: function () { this.selected.focus(); this._selectedIndex = -1; @@ -426,7 +426,7 @@ var ctrlTab = { }, 0, this); }, - suspendGUI: function ctrlTab_suspendGUI() { + suspendGUI: function () { document.removeEventListener("keyup", this, true); Array.forEach(this.previews, function (preview) { @@ -436,7 +436,7 @@ var ctrlTab = { this._tabList = null; }, - onKeyPress: function ctrlTab_onKeyPress(event) { + onKeyPress: function (event) { var isOpen = this.isOpen; if (isOpen) { @@ -481,7 +481,7 @@ var ctrlTab = { } }, - removeClosingTabFromUI: function ctrlTab_removeClosingTabFromUI(aTab) { + removeClosingTabFromUI: function (aTab) { if (this.tabCount == 2) { this.close(); return; @@ -503,7 +503,7 @@ var ctrlTab = { } }, - handleEvent: function ctrlTab_handleEvent(event) { + handleEvent: function (event) { switch (event.type) { case "TabAttrModified": // tab attribute modified (e.g. label, crop, busy, image, selected) @@ -536,7 +536,7 @@ var ctrlTab = { } }, - _init: function ctrlTab__init(enable) { + _init: function (enable) { var toggleEventListener = enable ? "addEventListener" : "removeEventListener"; var tabContainer = gBrowser.tabContainer; @@ -587,7 +587,7 @@ var allTabs = { get previews () this.container.getElementsByClassName("allTabs-preview"), get isOpen () this.panel.state == "open" || this.panel.state == "showing", - init: function allTabs_init() { + init: function () { if (this._initiated) return; this._initiated = true; @@ -604,7 +604,7 @@ var allTabs = { gBrowser.tabContainer.addEventListener("TabClose", this, false); }, - uninit: function allTabs_uninit() { + uninit: function () { if (!this._initiated) return; @@ -620,7 +620,7 @@ var allTabs = { }, prefName: "browser.allTabs.previews", - readPref: function allTabs_readPref() { + readPref: function () { var allTabsButton = this.toolbarButton; if (!allTabsButton) return; @@ -638,7 +638,7 @@ var allTabs = { this.readPref(); }, - pick: function allTabs_pick(aPreview) { + pick: function (aPreview) { if (!aPreview) aPreview = this._firstVisiblePreview; if (aPreview) @@ -647,12 +647,12 @@ var allTabs = { this.close(); }, - closeTab: function allTabs_closeTab(event) { + closeTab: function (event) { this.filterField.focus(); gBrowser.removeTab(event.currentTarget._targetPreview._tab); }, - filter: function allTabs_filter() { + filter: function () { if (this._currentFilter == this.filterField.value) return; @@ -694,7 +694,7 @@ var allTabs = { this._reflow(); }, - open: function allTabs_open() { + open: function () { var allTabsButton = this.toolbarButton; if (allTabsButton && allTabsButton.getAttribute("type") == "menu") { @@ -722,11 +722,11 @@ var allTabs = { this.panel.openPopup(gBrowser, "overlap", 0, 0, false, true); }, - close: function allTabs_close() { + close: function () { this.panel.hidePopup(); }, - setupGUI: function allTabs_setupGUI() { + setupGUI: function () { this.filterField.focus(); this.filterField.placeholder = this.filterField.tooltipText; @@ -739,7 +739,7 @@ var allTabs = { document.getElementById("Browser:ShowAllTabs").setAttribute("disabled", "true"); }, - suspendGUI: function allTabs_suspendGUI() { + suspendGUI: function () { this.filterField.placeholder = ""; this.filterField.value = ""; this._currentFilter = null; @@ -755,7 +755,7 @@ var allTabs = { }, 300); }, - handleEvent: function allTabs_handleEvent(event) { + handleEvent: function (event) { if (event.type.startsWith("Tab")) { var tab = event.target; if (event.type != "TabOpen") @@ -828,7 +828,7 @@ var allTabs = { return null; }, - _reflow: function allTabs_reflow() { + _reflow: function () { this._updateTabCloseButton(); const CONTAINER_MAX_WIDTH = this._maxPanelWidth * .95; @@ -887,14 +887,14 @@ var allTabs = { this.container.maxHeight = rows * outerHeight; }, - _addPreview: function allTabs_addPreview(aTab) { + _addPreview: function (aTab) { var preview = document.createElement("button"); preview.className = "allTabs-preview"; preview._tab = aTab; this.container.lastChild.appendChild(preview); }, - _removePreview: function allTabs_removePreview(aPreview) { + _removePreview: function (aPreview) { var updateUI = (this.isOpen && !aPreview.hidden); aPreview._tab = null; aPreview.parentNode.removeChild(aPreview); @@ -905,7 +905,7 @@ var allTabs = { } }, - _getPreview: function allTabs_getPreview(aTab) { + _getPreview: function (aTab) { var previews = this.previews; for (let i = 0; i < previews.length; i++) if (previews[i]._tab == aTab) @@ -913,7 +913,7 @@ var allTabs = { return null; }, - _updateTabCloseButton: function allTabs_updateTabCloseButton(event) { + _updateTabCloseButton: function (event) { if (event && event.target == this.tabCloseButton) return; @@ -950,7 +950,7 @@ var allTabs = { } }, - _updatePreview: function allTabs_updatePreview(aPreview) { + _updatePreview: function (aPreview) { aPreview.setAttribute("label", aPreview._tab.label); aPreview.setAttribute("tooltiptext", aPreview._tab.label); aPreview.setAttribute("crop", aPreview._tab.crop); @@ -975,7 +975,7 @@ var allTabs = { aPreview.appendChild(thumbnail); }, - _onKeyPress: function allTabs_onKeyPress(event) { + _onKeyPress: function (event) { if (event.eventPhase == event.CAPTURING_PHASE) { this._onCapturingKeyPress(event); return; @@ -1010,7 +1010,7 @@ var allTabs = { } }, - _onCapturingKeyPress: function allTabs_onCapturingKeyPress(event) { + _onCapturingKeyPress: function (event) { switch (event.keyCode) { case event.DOM_VK_UP: case event.DOM_VK_DOWN: @@ -1028,7 +1028,7 @@ var allTabs = { } }, - _advanceFocusVertically: function allTabs_advanceFocusVertically(event) { + _advanceFocusVertically: function (event) { var preview = document.activeElement; if (!preview || preview.parentNode.parentNode != this.container) return; diff --git a/application/palemoon/base/content/browser-thumbnails.js b/application/palemoon/base/content/browser-thumbnails.js index 079b0ac1be..bab99a59bd 100644 --- a/application/palemoon/base/content/browser-thumbnails.js +++ b/application/palemoon/base/content/browser-thumbnails.js @@ -30,7 +30,7 @@ var gBrowserThumbnails = { */ _tabEvents: ["TabClose", "TabSelect"], - init: function Thumbnails_init() { + init: function () { // Bug 863512 - Make page thumbnails work in electrolysis if (gMultiProcessBrowser) return; @@ -54,7 +54,7 @@ var gBrowserThumbnails = { this._timeouts = new WeakMap(); }, - uninit: function Thumbnails_uninit() { + uninit: function () { // Bug 863512 - Make page thumbnails work in electrolysis if (gMultiProcessBrowser) return; @@ -68,7 +68,7 @@ var gBrowserThumbnails = { }, this); }, - handleEvent: function Thumbnails_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "scroll": let browser = aEvent.currentTarget; @@ -85,13 +85,13 @@ var gBrowserThumbnails = { } }, - observe: function Thumbnails_observe() { + observe: function () { this._sslDiskCacheEnabled = Services.prefs.getBoolPref(this.PREF_DISK_CACHE_SSL); }, filterForThumbnailExpiration: - function Thumbnails_filterForThumbnailExpiration(aCallback) { + function (aCallback) { // Tycho: aCallback([browser.currentURI.spec for (browser of gBrowser.browsers)]); let result = []; for (let browser of gBrowser.browsers) { @@ -103,19 +103,19 @@ var gBrowserThumbnails = { /** * State change progress listener for all tabs. */ - onStateChange: function Thumbnails_onStateChange(aBrowser, aWebProgress, + onStateChange: function (aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) { if (aStateFlags & Ci.nsIWebProgressListener.STATE_STOP && aStateFlags & Ci.nsIWebProgressListener.STATE_IS_NETWORK) this._delayedCapture(aBrowser); }, - _capture: function Thumbnails_capture(aBrowser) { + _capture: function (aBrowser) { if (this._shouldCapture(aBrowser)) PageThumbs.captureAndStore(aBrowser); }, - _delayedCapture: function Thumbnails_delayedCapture(aBrowser) { + _delayedCapture: function (aBrowser) { if (this._timeouts.has(aBrowser)) clearTimeout(this._timeouts.get(aBrowser)); else @@ -129,7 +129,7 @@ var gBrowserThumbnails = { this._timeouts.set(aBrowser, timeout); }, - _shouldCapture: function Thumbnails_shouldCapture(aBrowser) { + _shouldCapture: function (aBrowser) { // Capture only if it's the currently selected tab. if (aBrowser != gBrowser.selectedBrowser) return false; @@ -193,7 +193,7 @@ var gBrowserThumbnails = { return true; }, - _clearTimeout: function Thumbnails_clearTimeout(aBrowser) { + _clearTimeout: function (aBrowser) { if (this._timeouts.has(aBrowser)) { aBrowser.removeEventListener("scroll", this, false); clearTimeout(this._timeouts.get(aBrowser)); diff --git a/application/palemoon/base/content/browser.js b/application/palemoon/base/content/browser.js index 7615bc92a9..1a96f9caa4 100644 --- a/application/palemoon/base/content/browser.js +++ b/application/palemoon/base/content/browser.js @@ -2502,7 +2502,7 @@ function BrowserOnAboutPageLoad(doc) { * Handle command events bubbling up from error page content */ var BrowserOnClick = { - handleEvent: function BrowserOnClick_handleEvent(aEvent) { + handleEvent: function (aEvent) { if (!aEvent.isTrusted || // Don't trust synthetic events aEvent.button == 2 || aEvent.target.localName != "button") { return; @@ -2524,7 +2524,7 @@ var BrowserOnClick = { } }, - onAboutCertError: function BrowserOnClick_onAboutCertError(aTargetElm, aOwnerDoc) { + onAboutCertError: function (aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); let isTopFrame = (aOwnerDoc.defaultView.parent === aOwnerDoc.defaultView); @@ -2565,14 +2565,14 @@ var BrowserOnClick = { } }, - onAboutNetError: function BrowserOnClick_onAboutNetError(aTargetElm, aOwnerDoc) { + onAboutNetError: function (aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); if (elmId != "errorTryAgain" || !/e=netOffline/.test(aOwnerDoc.documentURI)) return; Services.io.offline = false; }, - onAboutHome: function BrowserOnClick_onAboutHome(aTargetElm, aOwnerDoc) { + onAboutHome: function (aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); switch (elmId) { @@ -3113,7 +3113,7 @@ const BrowserSearch = { * the default engine's search form otherwise. For Mac, opens a new window * or focuses an existing window, if necessary. */ - webSearch: function BrowserSearch_webSearch() { + webSearch: function () { #ifdef XP_MACOSX if (window.location.href != getBrowserURL()) { var win = getTopWin(); @@ -3164,7 +3164,7 @@ const BrowserSearch = { * @return string Name of the search engine used to perform a search or null * if a search was not performed. */ - loadSearch: function BrowserSearch_search(searchText, useNewTab, purpose) { + loadSearch: function (searchText, useNewTab, purpose) { var engine; // If the search bar is visible, use the current engine, otherwise, fall @@ -3211,7 +3211,7 @@ const BrowserSearch = { return document.getElementById("searchbar"); }, - loadAddEngines: function BrowserSearch_loadAddEngines() { + loadAddEngines: function () { var newWindowPref = gPrefService.getIntPref("browser.link.open_newwindow"); var where = newWindowPref == 3 ? "tab" : "window"; var searchEnginesURL = formatURL("browser.search.searchEnginesURL", true); @@ -3637,7 +3637,7 @@ function updateCharacterEncodingMenuState() } } -var XULBrowserWindow = { +var XULBrowserWindow = { // Stored Status, Link and Loading values status: "", defaultStatus: "", @@ -4130,7 +4130,7 @@ var XULBrowserWindow = { }, // simulate all change notifications after switching tabs - onUpdateCurrentBrowser: function XWB_onUpdateCurrentBrowser(aStateFlags, aStatus, aMessage, aTotalProgress) { + onUpdateCurrentBrowser: function (aStateFlags, aStatus, aMessage, aTotalProgress) { if (FullZoom.updateBackgroundTabs) FullZoom.onLocationChange(gBrowser.currentURI, true); var nsIWebProgressListener = Components.interfaces.nsIWebProgressListener; @@ -4654,7 +4654,7 @@ var AudioIndicator = { } var TabsOnTop = { - init: function TabsOnTop_init() { + init: function () { Services.prefs.addObserver(this._prefName, this, false); // Pale Moon: Stop Being a Derp, Mozilla (#3) // Only show the toggle UI if the user disabled tabs on top. @@ -4664,7 +4664,7 @@ var TabsOnTop = { // } }, - uninit: function TabsOnTop_uninit() { + uninit: function () { Services.prefs.removeObserver(this._prefName, this); }, @@ -6940,7 +6940,7 @@ function getBrowser() gBrowser; function getNavToolbox() gNavToolbox; var gPrivateBrowsingUI = { - init: function PBUI_init() { + init: function () { // Do nothing for normal windows if (!PrivateBrowsingUtils.isWindowPrivate(window)) { return; diff --git a/application/palemoon/base/content/nsContextMenu.js b/application/palemoon/base/content/nsContextMenu.js index 916dd2637a..43e659375c 100644 --- a/application/palemoon/base/content/nsContextMenu.js +++ b/application/palemoon/base/content/nsContextMenu.js @@ -13,7 +13,7 @@ function nsContextMenu(aXulMenu, aIsShift) { // Prototype for nsContextMenu "class." nsContextMenu.prototype = { - initMenu: function CM_initMenu(aXulMenu, aIsShift) { + initMenu: function (aXulMenu, aIsShift) { // Get contextual info. this.setTarget(document.popupNode, document.popupRangeParent, document.popupRangeOffset); @@ -40,14 +40,14 @@ nsContextMenu.prototype = { this.initItems(); }, - hiding: function CM_hiding() { + hiding: function () { gContextMenuContentData = null; InlineSpellCheckerUI.clearSuggestionsFromMenu(); InlineSpellCheckerUI.clearDictionaryListFromMenu(); InlineSpellCheckerUI.uninit(); }, - initItems: function CM_initItems() { + initItems: function () { this.initPageMenuSeparator(); this.initOpenItems(); this.initNavigationItems(); @@ -61,11 +61,11 @@ nsContextMenu.prototype = { this.initClickToPlayItems(); }, - initPageMenuSeparator: function CM_initPageMenuSeparator() { + initPageMenuSeparator: function () { this.showItem("page-menu-separator", this.hasPageMenu); }, - initOpenItems: function CM_initOpenItems() { + initOpenItems: function () { var isMailtoInternal = false; if (this.onMailtoLink) { var mailtoHandler = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. @@ -114,7 +114,7 @@ nsContextMenu.prototype = { this.showItem("context-sep-open", shouldShow); }, - initNavigationItems: function CM_initNavigationItems() { + initNavigationItems: function () { var shouldShow = !(this.isContentSelected || this.onLink || this.onImage || this.onCanvas || this.onVideo || this.onAudio || this.onTextInput); @@ -136,7 +136,7 @@ nsContextMenu.prototype = { //this.setItemAttrFromNode( "context-stop", "disabled", "canStop" ); }, - initLeaveDOMFullScreenItems: function CM_initLeaveFullScreenItem() { + initLeaveDOMFullScreenItems: function () { // only show the option if the user is in DOM fullscreen var shouldShow = (this.target.ownerDocument.mozFullScreenElement != null); this.showItem("context-leave-dom-fullscreen", shouldShow); @@ -146,7 +146,7 @@ nsContextMenu.prototype = { this.showItem("context-media-sep-commands", true); }, - initSaveItems: function CM_initSaveItems() { + initSaveItems: function () { var shouldShow = !(this.onTextInput || this.onLink || this.isContentSelected || this.onImage || this.onCanvas || this.onVideo || this.onAudio); @@ -172,7 +172,7 @@ nsContextMenu.prototype = { this.setItemAttr("context-sendaudio", "disabled", !this.mediaURL); }, - initViewItems: function CM_initViewItems() { + initViewItems: function () { // View source is always OK, unless in directory listing. this.showItem("context-viewpartialsource-selection", this.isContentSelected); @@ -236,7 +236,7 @@ nsContextMenu.prototype = { this.showItem("context-viewimageinfo", this.onImage); }, - initMiscItems: function CM_initMiscItems() { + initMiscItems: function () { // Use "Bookmark This Link" if on a link. this.showItem("context-bookmarkpage", !(this.isContentSelected || this.onTextInput || this.onLink || @@ -426,7 +426,7 @@ nsContextMenu.prototype = { this.showItem("context-sep-ctp", this.onCTPPlugin); }, - inspectNode: function CM_inspectNode() { + inspectNode: function () { let {devtools} = Cu.import("resource://devtools/shared/Loader.jsm", {}); let gBrowser = this.browser.ownerDocument.defaultView.gBrowser; let target = devtools.TargetFactory.forTab(gBrowser.selectedTab); @@ -1027,7 +1027,7 @@ nsContextMenu.prototype = { saveAsListener.prototype = { extListener: null, - onStartRequest: function saveLinkAs_onStartRequest(aRequest, aContext) { + onStartRequest: function (aRequest, aContext) { // if the timer fired, the error status will have been caused by that, // and we'll be restarting in onStopRequest, so no reason to notify @@ -1065,7 +1065,7 @@ nsContextMenu.prototype = { this.extListener.onStartRequest(aRequest, aContext); }, - onStopRequest: function saveLinkAs_onStopRequest(aRequest, aContext, + onStopRequest: function (aRequest, aContext, aStatusCode) { if (aStatusCode == NS_ERROR_SAVE_LINK_AS_TIMEOUT) { // do it the old fashioned way, which will pick the best filename @@ -1076,7 +1076,7 @@ nsContextMenu.prototype = { this.extListener.onStopRequest(aRequest, aContext, aStatusCode); }, - onDataAvailable: function saveLinkAs_onDataAvailable(aRequest, aContext, + onDataAvailable: function (aRequest, aContext, aInputStream, aOffset, aCount) { this.extListener.onDataAvailable(aRequest, aContext, aInputStream, @@ -1086,7 +1086,7 @@ nsContextMenu.prototype = { function callbacks() {} callbacks.prototype = { - getInterface: function sLA_callbacks_getInterface(aIID) { + getInterface: function (aIID) { if (aIID.equals(Ci.nsIAuthPrompt) || aIID.equals(Ci.nsIAuthPrompt2)) { // If the channel demands authentication prompt, we must cancel it // because the save-as-timer would expire and cancel the channel @@ -1105,7 +1105,7 @@ nsContextMenu.prototype = { // we give up waiting for the filename. function timerCallback() {} timerCallback.prototype = { - notify: function sLA_timer_notify(aTimer) { + notify: function (aTimer) { channel.cancel(NS_ERROR_SAVE_LINK_AS_TIMEOUT); return; } @@ -1465,11 +1465,11 @@ nsContextMenu.prototype = { openUILinkIn(uri, where); }, - bookmarkThisPage: function CM_bookmarkThisPage() { + bookmarkThisPage: function () { window.top.PlacesCommandHook.bookmarkPage(this.browser, PlacesUtils.bookmarksMenuFolderId, true); }, - bookmarkLink: function CM_bookmarkLink() { + bookmarkLink: function () { var linkText; // If selected text is found to match valid URL pattern. if (this.onPlainTextLink) @@ -1480,7 +1480,7 @@ nsContextMenu.prototype = { linkText); }, - addBookmarkForFrame: function CM_addBookmarkForFrame() { + addBookmarkForFrame: function () { var doc = this.target.ownerDocument; var uri = doc.documentURIObject; @@ -1507,23 +1507,23 @@ nsContextMenu.prototype = { } }, - savePageAs: function CM_savePageAs() { + savePageAs: function () { saveDocument(this.browser.contentDocument); }, - sendPage: function CM_sendPage() { + sendPage: function () { MailIntegration.sendLinkForWindow(this.browser.contentWindow); }, - printFrame: function CM_printFrame() { + printFrame: function () { PrintUtils.print(this.target.ownerDocument.defaultView); }, - switchPageDirection: function CM_switchPageDirection() { + switchPageDirection: function () { SwitchDocumentDirection(this.browser.contentWindow); }, - mediaCommand : function CM_mediaCommand(command, data) { + mediaCommand : function (command, data) { var media = this.target; switch (command) { diff --git a/application/palemoon/base/content/sanitizeDialog.js b/application/palemoon/base/content/sanitizeDialog.js index 7861132883..905c9f2073 100644 --- a/application/palemoon/base/content/sanitizeDialog.js +++ b/application/palemoon/base/content/sanitizeDialog.js @@ -589,7 +589,7 @@ var gContiguousSelectionTreeHelper = { * view * @return The new view */ - setTree: function CSTH_setTree(aTreeElement, aProtoTreeView) + setTree: function (aTreeElement, aProtoTreeView) { this._tree = aTreeElement; var newView = this._makeTreeView(aProtoTreeView || aTreeElement.view); @@ -604,7 +604,7 @@ var gContiguousSelectionTreeHelper = { * * @return The row index of the grippy */ - getGrippyRow: function CSTH_getGrippyRow() + getGrippyRow: function () { var sel = this.tree.view.selection; var rangeCount = sel.getRangeCount(); @@ -626,7 +626,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed dragover event */ - ondragover: function CSTH_ondragover(aEvent) + ondragover: function (aEvent) { // Without this when dragging on Windows the mouse cursor is a "no" sign. // This makes it a drop symbol. @@ -653,7 +653,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed dragstart event */ - ondragstart: function CSTH_ondragstart(aEvent) + ondragstart: function (aEvent) { var tbo = this.tree.treeBoxObject; var clickedRow = tbo.getRowAt(aEvent.clientX, aEvent.clientY); @@ -688,7 +688,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed keypress event */ - onkeypress: function CSTH_onkeypress(aEvent) + onkeypress: function (aEvent) { var grippyRow = this.getGrippyRow(); var tbo = this.tree.treeBoxObject; @@ -749,7 +749,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed mousedown event */ - onmousedown: function CSTH_onmousedown(aEvent) + onmousedown: function (aEvent) { var tbo = this.tree.treeBoxObject; var clickedRow = tbo.getRowAt(aEvent.clientX, aEvent.clientY); @@ -771,7 +771,7 @@ var gContiguousSelectionTreeHelper = { * @param aEndRow * The range [0, aEndRow] will be selected. */ - rangedSelect: function CSTH_rangedSelect(aEndRow) + rangedSelect: function (aEndRow) { var tbo = this.tree.treeBoxObject; if (aEndRow < 0) @@ -784,7 +784,7 @@ var gContiguousSelectionTreeHelper = { /** * Scrolls the tree so that the grippy row is in the center of the view. */ - scrollToGrippy: function CSTH_scrollToGrippy() + scrollToGrippy: function () { var rowCount = this.tree.view.rowCount; var tbo = this.tree.treeBoxObject; @@ -817,14 +817,14 @@ var gContiguousSelectionTreeHelper = { * @param aProtoTreeView * Used as the new view's prototype if specified */ - _makeTreeView: function CSTH__makeTreeView(aProtoTreeView) + _makeTreeView: function (aProtoTreeView) { var view = aProtoTreeView; var that = this; //XXXadw: When Alex gets the grippy icon done, this may or may not change, // depending on how we style it. - view.isSeparator = function CSTH_View_isSeparator(aRow) + view.isSeparator = function (aRow) { return aRow === that.getGrippyRow(); }; @@ -832,7 +832,7 @@ var gContiguousSelectionTreeHelper = { // rowCount includes the grippy row. view.__defineGetter__("_rowCount", view.__lookupGetter__("rowCount")); view.__defineGetter__("rowCount", - function CSTH_View_rowCount() + function () { return this._rowCount + 1; }); From 95492157f199460649a55590dac8a163cce198f6 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:37:58 -0600 Subject: [PATCH 05/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/modules. --- .../modules/BrowserNewTabPreloader.jsm | 22 ++++---- .../palemoon/modules/NetworkPrioritizer.jsm | 24 ++++----- .../palemoon/modules/PopupNotifications.jsm | 46 ++++++++-------- application/palemoon/modules/RecentWindow.jsm | 2 +- .../palemoon/modules/WindowsJumpLists.jsm | 52 +++++++++---------- .../palemoon/modules/openLocationLastURL.jsm | 2 +- 6 files changed, 74 insertions(+), 74 deletions(-) diff --git a/application/palemoon/modules/BrowserNewTabPreloader.jsm b/application/palemoon/modules/BrowserNewTabPreloader.jsm index 778698fbaa..30bc846ae3 100644 --- a/application/palemoon/modules/BrowserNewTabPreloader.jsm +++ b/application/palemoon/modules/BrowserNewTabPreloader.jsm @@ -49,18 +49,18 @@ function clearTimer(timer) { } this.BrowserNewTabPreloader = { - init: function Preloader_init() { + init: function () { Initializer.start(); }, - uninit: function Preloader_uninit() { + uninit: function () { Initializer.stop(); HostFrame.destroy(); Preferences.uninit(); HiddenBrowsers.uninit(); }, - newTab: function Preloader_newTab(aTab) { + newTab: function (aTab) { let win = aTab.ownerDocument.defaultView; if (win.gBrowser) { let utils = win.QueryInterface(Ci.nsIInterfaceRequestor) @@ -83,12 +83,12 @@ var Initializer = { _timer: null, _observing: false, - start: function Initializer_start() { + start: function () { Services.obs.addObserver(this, TOPIC_DELAYED_STARTUP, false); this._observing = true; }, - stop: function Initializer_stop() { + stop: function () { this._timer = clearTimer(this._timer); if (this._observing) { @@ -97,7 +97,7 @@ var Initializer = { } }, - observe: function Initializer_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { if (aTopic == TOPIC_DELAYED_STARTUP) { Services.obs.removeObserver(this, TOPIC_DELAYED_STARTUP); this._observing = false; @@ -108,11 +108,11 @@ var Initializer = { } }, - _startTimer: function Initializer_startTimer() { + _startTimer: function () { this._timer = createTimer(this, PRELOADER_INIT_DELAY_MS); }, - _startPreloader: function Initializer_startPreloader() { + _startPreloader: function () { Preferences.init(); if (Preferences.enabled) { HiddenBrowsers.init(); @@ -133,19 +133,19 @@ var Preferences = { return this._enabled; }, - init: function Preferences_init() { + init: function () { this._branch = Services.prefs.getBranch(PREF_BRANCH); this._branch.addObserver("", this, false); }, - uninit: function Preferences_uninit() { + uninit: function () { if (this._branch) { this._branch.removeObserver("", this); this._branch = null; } }, - observe: function Preferences_observe() { + observe: function () { let prevEnabled = this._enabled; this._enabled = null; diff --git a/application/palemoon/modules/NetworkPrioritizer.jsm b/application/palemoon/modules/NetworkPrioritizer.jsm index 23d688a305..698775ef08 100644 --- a/application/palemoon/modules/NetworkPrioritizer.jsm +++ b/application/palemoon/modules/NetworkPrioritizer.jsm @@ -65,13 +65,13 @@ function _handleEvent(aEvent) { // Methods that impact a browser. Put into single object for organization. var BrowserHelper = { - onOpen: function NP_BH_onOpen(aBrowser) { + onOpen: function (aBrowser) { // If the tab is in the focused window, leave priority as it is if (aBrowser.ownerDocument.defaultView != _lastFocusedWindow) this.decreasePriority(aBrowser); }, - onSelect: function NP_BH_onSelect(aBrowser) { + onSelect: function (aBrowser) { let windowEntry = WindowHelper.getEntry(aBrowser.ownerDocument.defaultView); if (windowEntry.lastSelectedBrowser) this.decreasePriority(windowEntry.lastSelectedBrowser); @@ -80,11 +80,11 @@ var BrowserHelper = { windowEntry.lastSelectedBrowser = aBrowser; }, - increasePriority: function NP_BH_increasePriority(aBrowser) { + increasePriority: function (aBrowser) { aBrowser.adjustPriority(PRIORITY_DELTA); }, - decreasePriority: function NP_BH_decreasePriority(aBrowser) { + decreasePriority: function (aBrowser) { aBrowser.adjustPriority(PRIORITY_DELTA * -1); } }; @@ -92,7 +92,7 @@ var BrowserHelper = { // Methods that impact a window. Put into single object for organization. var WindowHelper = { - addWindow: function NP_WH_addWindow(aWindow) { + addWindow: function (aWindow) { // Build internal data object _windows.push({ window: aWindow, lastSelectedBrowser: null }); @@ -115,7 +115,7 @@ var WindowHelper = { BrowserHelper.onSelect(aWindow.gBrowser.selectedBrowser); }, - removeWindow: function NP_WH_removeWindow(aWindow) { + removeWindow: function (aWindow) { if (aWindow == _lastFocusedWindow) _lastFocusedWindow = null; @@ -131,7 +131,7 @@ var WindowHelper = { }); }, - onActivate: function NP_WH_onActivate(aWindow, aHasFocus) { + onActivate: function (aWindow, aHasFocus) { // If this window was the last focused window, we don't need to do anything if (aWindow == _lastFocusedWindow) return; @@ -143,7 +143,7 @@ var WindowHelper = { this.increasePriority(aWindow); }, - handleFocusedWindow: function NP_WH_handleFocusedWindow(aWindow) { + handleFocusedWindow: function (aWindow) { // If we have a last focused window, we need to deprioritize it first if (_lastFocusedWindow) this.decreasePriority(_lastFocusedWindow); @@ -153,23 +153,23 @@ var WindowHelper = { }, // Auxiliary methods - increasePriority: function NP_WH_increasePriority(aWindow) { + increasePriority: function (aWindow) { aWindow.gBrowser.browsers.forEach(function(aBrowser) { BrowserHelper.increasePriority(aBrowser); }); }, - decreasePriority: function NP_WH_decreasePriority(aWindow) { + decreasePriority: function (aWindow) { aWindow.gBrowser.browsers.forEach(function(aBrowser) { BrowserHelper.decreasePriority(aBrowser); }); }, - getEntry: function NP_WH_getEntry(aWindow) { + getEntry: function (aWindow) { return _windows[this.getEntryIndex(aWindow)]; }, - getEntryIndex: function NP_WH_getEntryAtIndex(aWindow) { + getEntryIndex: function (aWindow) { // Assumes that every object has a unique window & it's in the array for (let i = 0; i < _windows.length; i++) if (_windows[i].window == aWindow) diff --git a/application/palemoon/modules/PopupNotifications.jsm b/application/palemoon/modules/PopupNotifications.jsm index 0cb9702301..953df8cb2e 100644 --- a/application/palemoon/modules/PopupNotifications.jsm +++ b/application/palemoon/modules/PopupNotifications.jsm @@ -78,7 +78,7 @@ Notification.prototype = { /** * Removes the notification and updates the popup accordingly if needed. */ - remove: function Notification_remove() { + remove: function () { this.owner.remove(this); }, @@ -178,7 +178,7 @@ PopupNotifications.prototype = { * @returns the corresponding Notification object, or null if no such * notification exists. */ - getNotification: function PopupNotifications_getNotification(id, browser) { + getNotification: function (id, browser) { let n = null; let notifications = this._getNotificationsForBrowser(browser || this.tabbrowser.selectedBrowser); notifications.some(function(x) x.id == id && (n = x)); @@ -292,7 +292,7 @@ PopupNotifications.prototype = { * opens the URL in a new tab. * @returns the Notification object corresponding to the added notification. */ - show: function PopupNotifications_show(browser, id, message, anchorID, + show: function (browser, id, message, anchorID, mainAction, secondaryActions, options) { function isInvalidAction(a) { return !a || !(typeof(a.callback) == "function") || !a.label || !a.accessKey; @@ -362,7 +362,7 @@ PopupNotifications.prototype = { * Called by the consumer to indicate that a browser's location has changed, * so that we can update the active notifications accordingly. */ - locationChange: function PopupNotifications_locationChange(aBrowser) { + locationChange: function (aBrowser) { if (!aBrowser) throw "PopupNotifications_locationChange: invalid browser"; @@ -415,7 +415,7 @@ PopupNotifications.prototype = { * @param notification * The Notification object to remove. */ - remove: function PopupNotifications_remove(notification) { + remove: function (notification) { this._remove(notification); if (notification.browser.docShell.isActive) { @@ -459,7 +459,7 @@ PopupNotifications.prototype = { return this.tabbrowser.selectedBrowser ? this._getNotificationsForBrowser(this.tabbrowser.selectedBrowser) : []; }, - _remove: function PopupNotifications_removeHelper(notification) { + _remove: function (notification) { // This notification may already be removed, in which case let's just fail // silently. let notifications = this._getNotificationsForBrowser(notification.browser); @@ -481,7 +481,7 @@ PopupNotifications.prototype = { /** * Dismisses the notification without removing it. */ - _dismiss: function PopupNotifications_dismiss() { + _dismiss: function () { let browser = this.panel.firstChild && this.panel.firstChild.notification.browser; if (typeof this.panel.hidePopup === "function") { @@ -494,7 +494,7 @@ PopupNotifications.prototype = { /** * Hides the notification popup. */ - _hidePanel: function PopupNotifications_hide() { + _hidePanel: function () { this._ignoreDismissal = true; if (typeof this.panel.hidePopup === "function") { this.panel.hidePopup(); @@ -536,7 +536,7 @@ PopupNotifications.prototype = { } }, - _refreshPanel: function PopupNotifications_refreshPanel(notificationsToShow) { + _refreshPanel: function (notificationsToShow) { this._clearPanel(); const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; @@ -653,7 +653,7 @@ PopupNotifications.prototype = { } }, - _showPanel: function PopupNotifications_showPanel(notificationsToShow, anchorElement) { + _showPanel: function (notificationsToShow, anchorElement) { this.panel.hidden = false; notificationsToShow.forEach(function (n) { @@ -709,7 +709,7 @@ PopupNotifications.prototype = { * if there are no notifications to show. Otherwise, * currently displayed notifications will be left alone. */ - _update: function PopupNotifications_update(notifications, anchor, dismissShowing = false) { + _update: function (notifications, anchor, dismissShowing = false) { let useIconBox = this.iconBox && (!anchor || anchor.parentNode == this.iconBox); if (useIconBox) { // hide icons of the previous tab. @@ -777,7 +777,7 @@ PopupNotifications.prototype = { } }, - _showIcons: function PopupNotifications_showIcons(aCurrentNotifications) { + _showIcons: function (aCurrentNotifications) { for (let notification of aCurrentNotifications) { let anchorElm = notification.anchorElement; if (anchorElm) { @@ -786,7 +786,7 @@ PopupNotifications.prototype = { } }, - _hideIcons: function PopupNotifications_hideIcons() { + _hideIcons: function () { let icons = this.iconBox.querySelectorAll(ICON_SELECTOR); for (let icon of icons) { icon.removeAttribute(ICON_ATTRIBUTE_SHOWING); @@ -796,7 +796,7 @@ PopupNotifications.prototype = { /** * Gets and sets notifications for the browser. */ - _getNotificationsForBrowser: function PopupNotifications_getNotifications(browser) { + _getNotificationsForBrowser: function (browser) { let notifications = popupNotificationsMap.get(browser); if (!notifications) { // Initialize the WeakMap for the browser so callers can reference/manipulate the array. @@ -805,12 +805,12 @@ PopupNotifications.prototype = { } return notifications; }, - _setNotificationsForBrowser: function PopupNotifications_setNotifications(browser, notifications) { + _setNotificationsForBrowser: function (browser, notifications) { popupNotificationsMap.set(browser, notifications); return notifications; }, - _onIconBoxCommand: function PopupNotifications_onIconBoxCommand(event) { + _onIconBoxCommand: function (event) { // Left click, space or enter only let type = event.type; if (type == "click" && event.button != 0) @@ -832,7 +832,7 @@ PopupNotifications.prototype = { this._reshowNotifications(anchor); }, - _reshowNotifications: function PopupNotifications_reshowNotifications(anchor, browser) { + _reshowNotifications: function (anchor, browser) { // Mark notifications anchored to this anchor as un-dismissed let notifications = this._getNotificationsForBrowser(browser || this.tabbrowser.selectedBrowser); notifications.forEach(function (n) { @@ -844,7 +844,7 @@ PopupNotifications.prototype = { this._update(notifications, anchor); }, - _swapBrowserNotifications: function PopupNotifications_swapBrowserNoficications(ourBrowser, otherBrowser) { + _swapBrowserNotifications: function (ourBrowser, otherBrowser) { // When swaping browser docshells (e.g. dragging tab to new window) we need // to update our notification map. @@ -890,7 +890,7 @@ PopupNotifications.prototype = { other._update(ourNotifications, ourNotifications[0].anchorElement); }, - _fireCallback: function PopupNotifications_fireCallback(n, event, ...args) { + _fireCallback: function (n, event, ...args) { try { if (n.options.eventCallback) return n.options.eventCallback.call(n, event, ...args); @@ -900,7 +900,7 @@ PopupNotifications.prototype = { return undefined; }, - _onPopupHidden: function PopupNotifications_onPopupHidden(event) { + _onPopupHidden: function (event) { if (event.target != this.panel || this._ignoreDismissal) return; @@ -932,7 +932,7 @@ PopupNotifications.prototype = { this._update(); }, - _onButtonCommand: function PopupNotifications_onButtonCommand(event) { + _onButtonCommand: function (event) { let notificationEl = getNotificationFromElement(event.originalTarget); if (!notificationEl) @@ -968,7 +968,7 @@ PopupNotifications.prototype = { this._update(); }, - _onMenuCommand: function PopupNotifications_onMenuCommand(event) { + _onMenuCommand: function (event) { let target = event.originalTarget; if (!target.action || !target.notification) throw "menucommand target has no associated action/notification"; @@ -988,7 +988,7 @@ PopupNotifications.prototype = { this._update(); }, - _notify: function PopupNotifications_notify(topic) { + _notify: function (topic) { Services.obs.notifyObservers(null, "PopupNotifications-" + topic, ""); }, }; diff --git a/application/palemoon/modules/RecentWindow.jsm b/application/palemoon/modules/RecentWindow.jsm index 0018b502c7..242e9f9246 100644 --- a/application/palemoon/modules/RecentWindow.jsm +++ b/application/palemoon/modules/RecentWindow.jsm @@ -25,7 +25,7 @@ this.RecentWindow = { * Omit the property to search in both groups. * * allowPopups: true if popup windows are permissable. */ - getMostRecentBrowserWindow: function RW_getMostRecentBrowserWindow(aOptions) { + getMostRecentBrowserWindow: function (aOptions) { let checkPrivacy = typeof aOptions == "object" && "private" in aOptions; diff --git a/application/palemoon/modules/WindowsJumpLists.jsm b/application/palemoon/modules/WindowsJumpLists.jsm index e7f7855198..6827e269a9 100644 --- a/application/palemoon/modules/WindowsJumpLists.jsm +++ b/application/palemoon/modules/WindowsJumpLists.jsm @@ -148,7 +148,7 @@ this.WinTaskbarJumpList = * Startup, shutdown, and update */ - startup: function WTBJL_startup() { + startup: function () { // exit if this isn't win7 or higher. if (!this._initTaskbar()) return; @@ -175,7 +175,7 @@ this.WinTaskbarJumpList = this._updateTimer(); }, - update: function WTBJL_update() { + update: function () { // are we disabled via prefs? don't do anything! if (!this._enabled) return; @@ -184,7 +184,7 @@ this.WinTaskbarJumpList = this._buildList(); }, - _shutdown: function WTBJL__shutdown() { + _shutdown: function () { this._shuttingDown = true; // Correctly handle a clear history on shutdown. If there are no @@ -197,7 +197,7 @@ this.WinTaskbarJumpList = this._free(); }, - _shortcutMaintenance: function WTBJL__maintenace() { + _shortcutMaintenance: function () { _winShellService.shortcutMaintenance(); }, @@ -212,11 +212,11 @@ this.WinTaskbarJumpList = */ _pendingStatements: {}, - _hasPendingStatements: function WTBJL__hasPendingStatements() { + _hasPendingStatements: function () { return Object.keys(this._pendingStatements).length > 0; }, - _buildList: function WTBJL__buildList() { + _buildList: function () { if (this._hasPendingStatements()) { // We were requested to update the list while another update was in // progress, this could happen at shutdown, idle or privatebrowsing. @@ -255,7 +255,7 @@ this.WinTaskbarJumpList = * Taskbar api wrappers */ - _startBuild: function WTBJL__startBuild() { + _startBuild: function () { var removedItems = Cc["@mozilla.org/array;1"]. createInstance(Ci.nsIMutableArray); this._builder.abortListBuild(); @@ -267,13 +267,13 @@ this.WinTaskbarJumpList = return false; }, - _commitBuild: function WTBJL__commitBuild() { + _commitBuild: function () { if (!this._hasPendingStatements() && !this._builder.commitListBuild()) { this._builder.abortListBuild(); } }, - _buildTasks: function WTBJL__buildTasks() { + _buildTasks: function () { var items = Cc["@mozilla.org/array;1"]. createInstance(Ci.nsIMutableArray); this._tasks.forEach(function (task) { @@ -288,12 +288,12 @@ this.WinTaskbarJumpList = this._builder.addListToBuild(this._builder.JUMPLIST_CATEGORY_TASKS, items); }, - _buildCustom: function WTBJL__buildCustom(title, items) { + _buildCustom: function (title, items) { if (items.length > 0) this._builder.addListToBuild(this._builder.JUMPLIST_CATEGORY_CUSTOMLIST, items, title); }, - _buildFrequent: function WTBJL__buildFrequent() { + _buildFrequent: function () { // If history is empty, just bail out. if (!PlacesUtils.history.hasHistoryEntries) { return; @@ -333,7 +333,7 @@ this.WinTaskbarJumpList = ); }, - _buildRecent: function WTBJL__buildRecent() { + _buildRecent: function () { // If history is empty, just bail out. if (!PlacesUtils.history.hasHistoryEntries) { return; @@ -378,7 +378,7 @@ this.WinTaskbarJumpList = ); }, - _deleteActiveJumpList: function WTBJL__deleteAJL() { + _deleteActiveJumpList: function () { this._builder.deleteActiveList(); }, @@ -386,7 +386,7 @@ this.WinTaskbarJumpList = * Jump list item creation helpers */ - _getHandlerAppItem: function WTBJL__getHandlerAppItem(name, description, + _getHandlerAppItem: function (name, description, args, iconIndex, faviconPageUri) { var file = Services.dirsvc.get("XREExeF", Ci.nsILocalFile); @@ -408,7 +408,7 @@ this.WinTaskbarJumpList = return item; }, - _getSeparatorItem: function WTBJL__getSeparatorItem() { + _getSeparatorItem: function () { var item = Cc["@mozilla.org/windows-jumplistseparator;1"]. createInstance(Ci.nsIJumpListSeparator); return item; @@ -419,7 +419,7 @@ this.WinTaskbarJumpList = */ _getHistoryResults: - function WTBLJL__getHistoryResults(aSortingMode, aLimit, aCallback, aScope) { + function (aSortingMode, aLimit, aCallback, aScope) { var options = PlacesUtils.history.getNewQueryOptions(); options.maxResults = aLimit; options.sortingMode = aSortingMode; @@ -448,7 +448,7 @@ this.WinTaskbarJumpList = }); }, - _clearHistory: function WTBJL__clearHistory(items) { + _clearHistory: function (items) { if (!items) return; var URIsToRemove = []; @@ -471,7 +471,7 @@ this.WinTaskbarJumpList = * Prefs utilities */ - _refreshPrefs: function WTBJL__refreshPrefs() { + _refreshPrefs: function () { this._enabled = _prefs.getBoolPref(PREF_TASKBAR_ENABLED); this._showFrequent = _prefs.getBoolPref(PREF_TASKBAR_FREQUENT); this._showRecent = _prefs.getBoolPref(PREF_TASKBAR_RECENT); @@ -483,7 +483,7 @@ this.WinTaskbarJumpList = * Init and shutdown utilities */ - _initTaskbar: function WTBJL__initTaskbar() { + _initTaskbar: function () { this._builder = _taskbarService.createJumpListBuilder(); if (!this._builder || !this._builder.available) return false; @@ -491,7 +491,7 @@ this.WinTaskbarJumpList = return true; }, - _initObs: function WTBJL__initObs() { + _initObs: function () { // If the browser is closed while in private browsing mode, the "exit" // notification is fired on quit-application-granted. // History cleanup can happen at profile-change-teardown. @@ -500,13 +500,13 @@ this.WinTaskbarJumpList = _prefs.addObserver("", this, false); }, - _freeObs: function WTBJL__freeObs() { + _freeObs: function () { Services.obs.removeObserver(this, "profile-before-change"); Services.obs.removeObserver(this, "browser:purge-session-history"); _prefs.removeObserver("", this); }, - _updateTimer: function WTBJL__updateTimer() { + _updateTimer: function () { if (this._enabled && !this._shuttingDown && !this._timer) { this._timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer); this._timer.initWithCallback(this, @@ -520,7 +520,7 @@ this.WinTaskbarJumpList = }, _hasIdleObserver: false, - _updateIdleObserver: function WTBJL__updateIdleObserver() { + _updateIdleObserver: function () { if (this._enabled && !this._shuttingDown && !this._hasIdleObserver) { _idle.addIdleObserver(this, IDLE_TIMEOUT_SECONDS); this._hasIdleObserver = true; @@ -531,7 +531,7 @@ this.WinTaskbarJumpList = } }, - _free: function WTBJL__free() { + _free: function () { this._freeObs(); this._updateTimer(); this._updateIdleObserver(); @@ -542,13 +542,13 @@ this.WinTaskbarJumpList = * Notification handlers */ - notify: function WTBJL_notify(aTimer) { + notify: function (aTimer) { // Add idle observer on the first notification so it doesn't hit startup. this._updateIdleObserver(); this.update(); }, - observe: function WTBJL_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { switch (aTopic) { case "nsPref:changed": if (this._enabled == true && !_prefs.getBoolPref(PREF_TASKBAR_ENABLED)) diff --git a/application/palemoon/modules/openLocationLastURL.jsm b/application/palemoon/modules/openLocationLastURL.jsm index 3f58db8ceb..ad2781c462 100644 --- a/application/palemoon/modules/openLocationLastURL.jsm +++ b/application/palemoon/modules/openLocationLastURL.jsm @@ -46,7 +46,7 @@ this.OpenLocationLastURL = function OpenLocationLastURL(aWindow) { } OpenLocationLastURL.prototype = { - isPrivate: function OpenLocationLastURL_isPrivate() { + isPrivate: function () { // Assume not in private browsing mode, unless the browser window is // in private mode. if (!this.window) From 2ffeaf901df4dd3cca65d00f96b84caddd8af595 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:40:05 -0600 Subject: [PATCH 06/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components. --- .../palemoon/components/distribution.js | 12 ++-- .../palemoon/components/nsAboutRedirector.js | 2 +- .../components/nsBrowserContentHandler.js | 14 ++-- .../palemoon/components/nsBrowserGlue.js | 68 +++++++++---------- 4 files changed, 48 insertions(+), 48 deletions(-) diff --git a/application/palemoon/components/distribution.js b/application/palemoon/components/distribution.js index 121e55b1bd..c9ea928458 100644 --- a/application/palemoon/components/distribution.js +++ b/application/palemoon/components/distribution.js @@ -63,12 +63,12 @@ DistributionCustomizer.prototype = { return this._ioSvc; }, - _makeURI: function DIST__makeURI(spec) { + _makeURI: function (spec) { return this._ioSvc.newURI(spec, null, null); }, _parseBookmarksSection: - function DIST_parseBookmarksSection(parentId, section) { + function (parentId, section) { let keys = []; for (let i in enumerate(this._ini.getKeys(section))) keys.push(i); @@ -177,7 +177,7 @@ DistributionCustomizer.prototype = { }, _customizationsApplied: false, - applyCustomizations: function DIST_applyCustomizations() { + applyCustomizations: function () { this._customizationsApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -190,7 +190,7 @@ DistributionCustomizer.prototype = { }, _bookmarksApplied: false, - applyBookmarks: function DIST_applyBookmarks() { + applyBookmarks: function () { this._bookmarksApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -230,7 +230,7 @@ DistributionCustomizer.prototype = { }, _prefDefaultsApplied: false, - applyPrefDefaults: function DIST_applyPrefDefaults() { + applyPrefDefaults: function () { this._prefDefaultsApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -321,7 +321,7 @@ DistributionCustomizer.prototype = { return this._checkCustomizationComplete(); }, - _checkCustomizationComplete: function DIST__checkCustomizationComplete() { + _checkCustomizationComplete: function () { let prefDefaultsApplied = this._prefDefaultsApplied || !this._iniFile; if (this._customizationsApplied && this._bookmarksApplied && prefDefaultsApplied) { diff --git a/application/palemoon/components/nsAboutRedirector.js b/application/palemoon/components/nsAboutRedirector.js index 4d99a78f57..754faf861f 100644 --- a/application/palemoon/components/nsAboutRedirector.js +++ b/application/palemoon/components/nsAboutRedirector.js @@ -80,7 +80,7 @@ AboutRedirector.prototype = { /** * Gets the module name from the given URI. */ - _getModuleName: function AboutRedirector__getModuleName(aURI) { + _getModuleName: function (aURI) { // Strip out the first ? or #, and anything following it let name = (/[^?#]+/.exec(aURI.path))[0]; return name.toLowerCase(); diff --git a/application/palemoon/components/nsBrowserContentHandler.js b/application/palemoon/components/nsBrowserContentHandler.js index e7f1414c2d..19ba2b253d 100644 --- a/application/palemoon/components/nsBrowserContentHandler.js +++ b/application/palemoon/components/nsBrowserContentHandler.js @@ -278,7 +278,7 @@ nsBrowserContentHandler.prototype = { classID: Components.ID("{5d0ce354-df01-421a-83fb-7ead0990c24e}"), _xpcom_factory: { - createInstance: function bch_factory_ci(outer, iid) { + createInstance: function (outer, iid) { if (outer) throw Components.results.NS_ERROR_NO_AGGREGATION; return gBrowserContentHandler.QueryInterface(iid); @@ -308,7 +308,7 @@ nsBrowserContentHandler.prototype = { nsICommandLineValidator]), /* nsICommandLineHandler */ - handle : function bch_handle(cmdLine) { + handle : function (cmdLine) { if (cmdLine.handleFlag("browser", false)) { // Passing defaultArgs, so use NO_EXTERNAL_URIS openWindow(null, this.chromeURL, "_blank", @@ -601,7 +601,7 @@ nsBrowserContentHandler.prototype = { mFeatures : null, - getFeatures : function bch_features(cmdLine) { + getFeatures : function (cmdLine) { if (this.mFeatures === null) { this.mFeatures = ""; @@ -629,7 +629,7 @@ nsBrowserContentHandler.prototype = { /* nsIContentHandler */ - handleContent : function bch_handleContent(contentType, context, request) { + handleContent : function (contentType, context, request) { try { var webNavInfo = Components.classes["@mozilla.org/webnavigation-info;1"] .getService(nsIWebNavigationInfo); @@ -647,7 +647,7 @@ nsBrowserContentHandler.prototype = { }, /* nsICommandLineValidator */ - validate : function bch_validate(cmdLine) { + validate : function (cmdLine) { // Other handlers may use osint so only handle the osint flag if the url // flag is also present and the command line is valid. var osintFlagIdx = cmdLine.findFlag("osint", false); @@ -699,7 +699,7 @@ nsDefaultCommandLineHandler.prototype = { classID: Components.ID("{47cd0651-b1be-4a0f-b5c4-10e5a573ef71}"), /* nsISupports */ - QueryInterface : function dch_QI(iid) { + QueryInterface : function (iid) { if (!iid.equals(nsISupports) && !iid.equals(nsICommandLineHandler)) throw Components.results.NS_ERROR_NO_INTERFACE; @@ -712,7 +712,7 @@ nsDefaultCommandLineHandler.prototype = { #endif /* nsICommandLineHandler */ - handle : function dch_handle(cmdLine) { + handle : function (cmdLine) { var urilist = []; #ifdef XP_WIN diff --git a/application/palemoon/components/nsBrowserGlue.js b/application/palemoon/components/nsBrowserGlue.js index df63513dfe..0d90e249fd 100644 --- a/application/palemoon/components/nsBrowserGlue.js +++ b/application/palemoon/components/nsBrowserGlue.js @@ -68,7 +68,7 @@ const BOOKMARKS_BACKUP_MAX_BACKUPS = 10; // Factory object const BrowserGlueServiceFactory = { _instance: null, - createInstance: function BGSF_createInstance(outer, iid) { + createInstance: function (outer, iid) { if (outer != null) throw Components.results.NS_ERROR_NO_AGGREGATION; return this._instance == null ? @@ -113,7 +113,7 @@ BrowserGlue.prototype = { _isPlacesDatabaseLocked: false, _migrationImportsDefaultBookmarks: false, - _setPrefToSaveSession: function BG__setPrefToSaveSession(aForce) { + _setPrefToSaveSession: function (aForce) { if (!this._saveSession && !aForce) return; @@ -126,7 +126,7 @@ BrowserGlue.prototype = { }, #ifdef MOZ_SERVICES_SYNC - _setSyncAutoconnectDelay: function BG__setSyncAutoconnectDelay() { + _setSyncAutoconnectDelay: function () { // Assume that a non-zero value for services.sync.autoconnectDelay should override if (Services.prefs.prefHasUserValue("services.sync.autoconnectDelay")) { let prefDelay = Services.prefs.getIntPref("services.sync.autoconnectDelay"); @@ -150,7 +150,7 @@ BrowserGlue.prototype = { #endif // nsIObserver implementation - observe: function BG_observe(subject, topic, data) { + observe: function (subject, topic, data) { switch (topic) { case "notifications-open-settings": this._openPermissions(subject); @@ -323,7 +323,7 @@ BrowserGlue.prototype = { }, // initialization (called on application startup) - _init: function BG__init() { + _init: function () { let os = Services.obs; os.addObserver(this, "notifications-open-settings", false); os.addObserver(this, "prefservice:after-app-defaults", false); @@ -356,7 +356,7 @@ BrowserGlue.prototype = { }, // cleanup (called on application shutdown) - _dispose: function BG__dispose() { + _dispose: function () { let os = Services.obs; os.removeObserver(this, "notifications-open-settings"); os.removeObserver(this, "prefservice:after-app-defaults"); @@ -391,7 +391,7 @@ BrowserGlue.prototype = { } catch (ex) {} }, - _onAppDefaults: function BG__onAppDefaults() { + _onAppDefaults: function () { // apply distribution customizations (prefs) // other customizations are applied in _finalUIStartup() this._distributionCustomizer.applyPrefDefaults(); @@ -399,7 +399,7 @@ BrowserGlue.prototype = { // runs on startup, before the first command line handler is invoked // (i.e. before the first window is opened) - _finalUIStartup: function BG__finalUIStartup() { + _finalUIStartup: function () { this._sanitizer.onStartup(); // check if we're in safe mode if (Services.appinfo.inSafeMode) { @@ -433,7 +433,7 @@ BrowserGlue.prototype = { Services.obs.notifyObservers(null, "browser-ui-startup-complete", ""); }, - _setUpUserAgentOverrides: function BG__setUpUserAgentOverrides() { + _setUpUserAgentOverrides: function () { UserAgentOverrides.init(); if (Services.prefs.getBoolPref("general.useragent.complexOverride.moodle")) { @@ -507,7 +507,7 @@ BrowserGlue.prototype = { }, // the first browser window has finished initializing - _onFirstWindowLoaded: function BG__onFirstWindowLoaded() { + _onFirstWindowLoaded: function () { #ifdef XP_WIN // For windows seven, initialize the jump list module. const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1"; @@ -529,7 +529,7 @@ BrowserGlue.prototype = { * All components depending on Places should be shut down in * _onPlacesShutdown() and not here. */ - _onProfileShutdown: function BG__onProfileShutdown() { + _onProfileShutdown: function () { BrowserNewTabPreloader.uninit(); UserAgentOverrides.uninit(); #ifdef MOZ_WEBRTC @@ -541,7 +541,7 @@ BrowserGlue.prototype = { }, // All initial windows have opened. - _onWindowsRestored: function BG__onWindowsRestored() { + _onWindowsRestored: function () { // Show update notification, if needed. if (Services.prefs.prefHasUserValue("app.update.postupdate")) this._showUpdateNotification(); @@ -644,7 +644,7 @@ BrowserGlue.prototype = { } }, - _onQuitRequest: function BG__onQuitRequest(aCancelQuit, aQuitType) { + _onQuitRequest: function (aCancelQuit, aQuitType) { // If user has already dismissed quit request, then do nothing if ((aCancelQuit instanceof Ci.nsISupportsPRBool) && aCancelQuit.data) return; @@ -776,7 +776,7 @@ BrowserGlue.prototype = { } }, - _showUpdateNotification: function BG__showUpdateNotification() { + _showUpdateNotification: function () { Services.prefs.clearUserPref("app.update.postupdate"); var um = Cc["@mozilla.org/updates/update-manager;1"]. @@ -877,7 +877,7 @@ BrowserGlue.prototype = { } }, - _showPluginUpdatePage: function BG__showPluginUpdatePage() { + _showPluginUpdatePage: function () { // Pale Moon: disable this functionality from BrowserGlue, people are // already notified if they visit a page with an outdated plugin, and // they can check properly from the plugins page as well. @@ -912,7 +912,7 @@ BrowserGlue.prototype = { * Set to true by safe-mode dialog to indicate we must restore default * bookmarks. */ - _initPlaces: function BG__initPlaces(aInitialMigrationPerformed) { + _initPlaces: function (aInitialMigrationPerformed) { // We must instantiate the history service since it will tell us if we // need to import or restore bookmarks due to first-run, corruption or // forced migration (due to a major schema change). @@ -1078,7 +1078,7 @@ BrowserGlue.prototype = { * - export bookmarks as HTML, if so configured. * - finalize components depending on Places. */ - _onPlacesShutdown: function BG__onPlacesShutdown() { + _onPlacesShutdown: function () { this._sanitizer.onShutdown(); PageThumbs.uninit(); @@ -1134,7 +1134,7 @@ BrowserGlue.prototype = { * Determine whether to backup bookmarks or not. * @return true if bookmarks should be backed up, false if not. */ - _shouldBackupBookmarks: function BG__shouldBackupBookmarks() { + _shouldBackupBookmarks: function () { let lastBackupFile = PlacesBackups.getMostRecent(); // Should backup bookmarks if there are no backups or the maximum interval between @@ -1146,7 +1146,7 @@ BrowserGlue.prototype = { /** * Backup bookmarks. */ - _backupBookmarks: function BG__backupBookmarks() { + _backupBookmarks: function () { return Task.spawn(function() { // Backup bookmarks if there are no backups or the maximum interval between // backups elapsed. @@ -1163,7 +1163,7 @@ BrowserGlue.prototype = { /** * Show the notificationBox for a locked places database. */ - _showPlacesLockedNotificationBox: function BG__showPlacesLockedNotificationBox() { + _showPlacesLockedNotificationBox: function () { var applicationName = gBrandBundle.GetStringFromName("brandShortName"); var placesBundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties"); var title = placesBundle.GetStringFromName("lockPrompt.title"); @@ -1197,7 +1197,7 @@ BrowserGlue.prototype = { notification.persistence = -1; // Until user closes it }, - _migrateUI: function BG__migrateUI() { + _migrateUI: function () { const UI_VERSION = 22; const BROWSER_DOCURL = "chrome://browser/content/browser.xul#"; let currentUIVersion = 0; @@ -1477,7 +1477,7 @@ BrowserGlue.prototype = { Services.prefs.setIntPref("browser.migration.version", UI_VERSION); }, - _hasExistingNotificationPermission: function BG__hasExistingNotificationPermission() { + _hasExistingNotificationPermission: function () { let enumerator = Services.perms.enumerator; while (enumerator.hasMoreElements()) { let permission = enumerator.getNext().QueryInterface(Ci.nsIPermission); @@ -1488,7 +1488,7 @@ BrowserGlue.prototype = { return false; }, - _notifyNotificationsUpgrade: function BG__notifyNotificationsUpgrade() { + _notifyNotificationsUpgrade: function () { if (!this._hasExistingNotificationPermission()) { return; } @@ -1533,14 +1533,14 @@ BrowserGlue.prototype = { return false; }, - _getPersist: function BG__getPersist(aSource, aProperty) { + _getPersist: function (aSource, aProperty) { var target = this._dataSource.GetTarget(aSource, aProperty, true); if (target instanceof Ci.nsIRDFLiteral) return target.Value; return null; }, - _setPersist: function BG__setPersist(aSource, aProperty, aTarget) { + _setPersist: function (aSource, aProperty, aTarget) { this._dirty = true; try { var oldTarget = this._dataSource.GetTarget(aSource, aProperty, true); @@ -1570,12 +1570,12 @@ BrowserGlue.prototype = { // public nsIBrowserGlue members // ------------------------------ - sanitize: function BG_sanitize(aParentWindow) { + sanitize: function (aParentWindow) { this._sanitizer.sanitize(aParentWindow); }, ensurePlacesDefaultQueriesInitialized: - function BG_ensurePlacesDefaultQueriesInitialized() { + function () { // This is actual version of the smart bookmarks, must be increased every // time smart bookmarks change. // When adding a new smart bookmark below, its newInVersion property must @@ -1610,7 +1610,7 @@ BrowserGlue.prototype = { } let batch = { - runBatched: function BG_EPDQI_runBatched() { + runBatched: function () { let menuIndex = 0; let toolbarIndex = 0; let bundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties"); @@ -1732,7 +1732,7 @@ BrowserGlue.prototype = { }, // this returns the most recent non-popup browser window - getMostRecentBrowserWindow: function BG_getMostRecentBrowserWindow() { + getMostRecentBrowserWindow: function () { return RecentWindow.getMostRecentBrowserWindow(); }, @@ -1748,7 +1748,7 @@ BrowserGlue.prototype = { * lesser evil than sending a tab to a specific device (from e.g. Fennec) * and having nothing happen on the receiving end. */ - _onDisplaySyncURI: function _onDisplaySyncURI(data) { + _onDisplaySyncURI: function (data) { try { let tabbrowser = RecentWindow.getMostRecentBrowserWindow({private: false}).gBrowser; @@ -1778,7 +1778,7 @@ ContentPermissionPrompt.prototype = { QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPermissionPrompt]), - _getChromeWindow: function CPP_getChromeWindow(aWindow) { + _getChromeWindow: function (aWindow) { var chromeWin = aWindow .QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIWebNavigation) @@ -1814,7 +1814,7 @@ ContentPermissionPrompt.prototype = { * @param aAnchorId The id for the PopupNotification anchor. * @param aOptions Options for the PopupNotification */ - _showPrompt: function CPP_showPrompt(aRequest, aMessage, aPermission, aActions, + _showPrompt: function (aRequest, aMessage, aPermission, aActions, aNotificationId, aAnchorId, aOptions) { function onFullScreen() { popup.remove(); @@ -2005,7 +2005,7 @@ ContentPermissionPrompt.prototype = { "web-notifications-notification-icon", options); }, - _promptPointerLock: function CPP_promtPointerLock(aRequest, autoAllow) { + _promptPointerLock: function (aRequest, autoAllow) { let requestingURI = aRequest.principal.URI; let originString = requestingURI.schemeIs("file") ? requestingURI.path : requestingURI.host; @@ -2042,7 +2042,7 @@ ContentPermissionPrompt.prototype = { "pointerLock-notification-icon", null); }, - prompt: function CPP_prompt(request) { + prompt: function (request) { // Only allow exactly one permission rquest here. let types = request.types.QueryInterface(Ci.nsIArray); if (types.length != 1) { From dd6ed2537f204aa5a79fded47e5f4ddd62019a06 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:47:04 -0600 Subject: [PATCH 07/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/downloads. --- .../components/downloads/DownloadsCommon.jsm | 108 +++++++++--------- .../components/downloads/DownloadsLogger.jsm | 6 +- .../components/downloads/DownloadsStartup.js | 4 +- .../components/downloads/DownloadsUI.js | 6 +- .../content/allDownloadsViewOverlay.js | 64 +++++------ .../content/contentAreaDownloadsView.js | 2 +- .../components/downloads/content/downloads.js | 100 ++++++++-------- .../components/downloads/content/indicator.js | 34 +++--- 8 files changed, 162 insertions(+), 162 deletions(-) diff --git a/application/palemoon/components/downloads/DownloadsCommon.jsm b/application/palemoon/components/downloads/DownloadsCommon.jsm index efe31ce05e..afe8361e0b 100644 --- a/application/palemoon/components/downloads/DownloadsCommon.jsm +++ b/application/palemoon/components/downloads/DownloadsCommon.jsm @@ -97,7 +97,7 @@ const kPrefBranch = Services.prefs.getBranch("browser.download."); var PrefObserver = { QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver, Ci.nsISupportsWeakReference]), - getPref: function PO_getPref(name) { + getPref: function (name) { try { switch (typeof this.prefs[name]) { case "boolean": @@ -106,12 +106,12 @@ var PrefObserver = { } catch (ex) { } return this.prefs[name]; }, - observe: function PO_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { if (this.prefs.hasOwnProperty(aData)) { return this[aData] = this.getPref(aData); } }, - register: function PO_register(prefs) { + register: function (prefs) { this.prefs = prefs; kPrefBranch.addObserver("", this, true); for (let key in prefs) { @@ -138,9 +138,9 @@ PrefObserver.register({ * and provides shared methods for all the instances of the user interface. */ this.DownloadsCommon = { - log: function DC_log(...aMessageArgs) { + log: function (...aMessageArgs) { delete this.log; - this.log = function DC_log(...aMessageArgs) { + this.log = function (...aMessageArgs) { if (!PrefObserver.debug) { return; } @@ -149,9 +149,9 @@ this.DownloadsCommon = { this.log.apply(this, aMessageArgs); }, - error: function DC_error(...aMessageArgs) { + error: function (...aMessageArgs) { delete this.error; - this.error = function DC_error(...aMessageArgs) { + this.error = function (...aMessageArgs) { if (!PrefObserver.debug) { return; } @@ -205,7 +205,7 @@ this.DownloadsCommon = { * @return Formatted string, for example "30s" or "2h". The returned value is * maximum three characters long, at least in English. */ - formatTimeLeft: function DC_formatTimeLeft(aSeconds) + formatTimeLeft: function (aSeconds) { // Decide what text to show for the time let seconds = Math.round(aSeconds); @@ -259,7 +259,7 @@ this.DownloadsCommon = { * @param aWindow * The browser window which owns the download button. */ - getData: function DC_getData(aWindow) { + getData: function (aWindow) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { return PrivateDownloadsData; } else { @@ -277,7 +277,7 @@ this.DownloadsCommon = { * called, and we must ensure to register our listeners before the * getService call for the Download Manager returns. */ - initializeAllDataLinks: function DC_initializeAllDataLinks(aDownloadManagerService) { + initializeAllDataLinks: function (aDownloadManagerService) { DownloadsData.initializeDataLink(aDownloadManagerService); PrivateDownloadsData.initializeDataLink(aDownloadManagerService); }, @@ -286,7 +286,7 @@ this.DownloadsCommon = { * Terminates the data link for both the private and non-private downloads * data objects. */ - terminateAllDataLinks: function DC_terminateAllDataLinks() { + terminateAllDataLinks: function () { DownloadsData.terminateDataLink(); PrivateDownloadsData.terminateDataLink(); }, @@ -299,7 +299,7 @@ this.DownloadsCommon = { * True to load only active downloads from the database. */ ensureAllPersistentDataLoaded: - function DC_ensureAllPersistentDataLoaded(aActiveOnly) { + function (aActiveOnly) { DownloadsData.ensurePersistentDataLoaded(aActiveOnly); }, @@ -308,7 +308,7 @@ this.DownloadsCommon = { * PrivateDownloadsIndicatorData objects, depending on the privacy status of * the window in question. */ - getIndicatorData: function DC_getIndicatorData(aWindow) { + getIndicatorData: function (aWindow) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { return PrivateDownloadsIndicatorData; } else { @@ -326,7 +326,7 @@ this.DownloadsCommon = { * The number of items on the top of the downloads list to exclude * from the summary. */ - getSummary: function DC_getSummary(aWindow, aNumToExclude) + getSummary: function (aWindow, aNumToExclude) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { if (this._privateSummary) { @@ -465,7 +465,7 @@ this.DownloadsCommon = { * downloads. This is a floating point value to help get sub-second * accuracy for current and future estimates. */ - smoothSeconds: function DC_smoothSeconds(aSeconds, aLastSeconds) + smoothSeconds: function (aSeconds, aLastSeconds) { // We apply an algorithm similar to the DownloadUtils.getTimeLeft function, // though tailored to a single time estimation for all downloads. We never @@ -503,7 +503,7 @@ this.DownloadsCommon = { * @param aOwnerWindow * the window with which this action is associated. */ - openDownloadedFile: function DC_openDownloadedFile(aFile, aMimeInfo, aOwnerWindow) { + openDownloadedFile: function (aFile, aMimeInfo, aOwnerWindow) { if (!(aFile instanceof Ci.nsIFile)) throw new Error("aFile must be a nsIFile object"); if (aMimeInfo && !(aMimeInfo instanceof Ci.nsIMIMEInfo)) @@ -572,7 +572,7 @@ this.DownloadsCommon = { * @param aFile * a downloaded file. */ - showDownloadedFile: function DC_showDownloadedFile(aFile) { + showDownloadedFile: function (aFile) { if (!(aFile instanceof Ci.nsIFile)) throw new Error("aFile must be a nsIFile object"); try { @@ -669,7 +669,7 @@ DownloadsDataCtor.prototype = { /** * Stops receiving events for current downloads and cancels any pending read. */ - terminateDataLink: function DD_terminateDataLink() + terminateDataLink: function () { Cu.reportError("terminateDataLink not applicable with JS Transfers"); return; @@ -698,7 +698,7 @@ DownloadsDataCtor.prototype = { /** * Asks the back-end to remove finished downloads from the list. */ - removeFinished: function DD_removeFinished() + removeFinished: function () { let promiseList = Downloads.getList(this._isPrivate ? Downloads.PRIVATE : Downloads.PUBLIC); @@ -804,7 +804,7 @@ DownloadsDataCtor.prototype = { * DownloadsView object to be added. This reference must be passed to * removeView before termination. */ - addView: function DD_addView(aView) + addView: function (aView) { this._views.push(aView); this._updateView(aView); @@ -816,7 +816,7 @@ DownloadsDataCtor.prototype = { * @param aView * DownloadsView object to be removed. */ - removeView: function DD_removeView(aView) + removeView: function (aView) { let index = this._views.indexOf(aView); if (index != -1) { @@ -830,7 +830,7 @@ DownloadsDataCtor.prototype = { * @param aView * DownloadsView object to be initialized. */ - _updateView: function DD_updateView(aView) + _updateView: function (aView) { // Indicate to the view that a batch loading operation is in progress. aView.onDataLoadStarting(); @@ -857,7 +857,7 @@ DownloadsDataCtor.prototype = { /** * Clears the loaded data. */ - clear: function DD_clear() + clear: function () { this._terminateDataAccess(); this.dataItems = {}; @@ -890,7 +890,7 @@ DownloadsDataCtor.prototype = { * @return New or existing data item, or null if the item was deleted from the * list of available downloads. */ - _getOrAddDataItem: function DD_getOrAddDataItem(aSource, aMayReuseGUID) + _getOrAddDataItem: function (aSource, aMayReuseGUID) { let downloadGuid = (aSource instanceof Ci.nsIDownload) ? aSource.guid @@ -920,7 +920,7 @@ DownloadsDataCtor.prototype = { * * This method can be called at most once per download identifier. */ - _removeDataItem: function DD_removeDataItem(aDownloadId) + _removeDataItem: function (aDownloadId) { if (aDownloadId in this.dataItems) { let dataItem = this.dataItems[aDownloadId]; @@ -961,7 +961,7 @@ DownloadsDataCtor.prototype = { * True to load only active downloads from the database. */ ensurePersistentDataLoaded: - function DD_ensurePersistentDataLoaded(aActiveOnly) + function (aActiveOnly) { if (this == PrivateDownloadsData) { Cu.reportError("ensurePersistentDataLoaded should not be called on PrivateDownloadsData"); @@ -1022,7 +1022,7 @@ DownloadsDataCtor.prototype = { /** * Cancels any pending data access and ensures views are notified. */ - _terminateDataAccess: function DD_terminateDataAccess() + _terminateDataAccess: function () { if (this._pendingStatement) { this._pendingStatement.cancel(); @@ -1039,7 +1039,7 @@ DownloadsDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// mozIStorageStatementCallback - handleResult: function DD_handleResult(aResultSet) + handleResult: function (aResultSet) { for (let row = aResultSet.getNextRow(); row; @@ -1051,13 +1051,13 @@ DownloadsDataCtor.prototype = { } }, - handleError: function DD_handleError(aError) + handleError: function (aError) { DownloadsCommon.error("Database statement execution error (", aError.result, "): ", aError.message); }, - handleCompletion: function DD_handleCompletion(aReason) + handleCompletion: function (aReason) { DownloadsCommon.log("Loading all downloads from database completed with reason:", aReason); @@ -1083,7 +1083,7 @@ DownloadsDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIObserver - observe: function DD_observe(aSubject, aTopic, aData) + observe: function (aSubject, aTopic, aData) { switch (aTopic) { case "download-manager-remove-download-guid": @@ -1121,7 +1121,7 @@ DownloadsDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIDownloadProgressListener - onDownloadStateChange: function DD_onDownloadStateChange(aOldState, aDownload) + onDownloadStateChange: function (aOldState, aDownload) { if (aDownload.isPrivate != this._isPrivate) { // Ignore the downloads with a privacy status other than what we are @@ -1202,7 +1202,7 @@ DownloadsDataCtor.prototype = { } }, - onProgressChange: function DD_onProgressChange(aWebProgress, aRequest, + onProgressChange: function (aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, @@ -1259,7 +1259,7 @@ DownloadsDataCtor.prototype = { * @param aType * Set to "start" for new downloads, "finish" for completed downloads. */ - _notifyDownloadEvent: function DD_notifyDownloadEvent(aType) + _notifyDownloadEvent: function (aType) { DownloadsCommon.log("Attempting to notify that a new download has started or finished."); if (DownloadsCommon.useToolkitUI) { @@ -1329,7 +1329,7 @@ const DownloadsViewPrototype = { * View object to be added. This reference must be * passed to removeView before termination. */ - addView: function DVP_addView(aView) + addView: function (aView) { // Start receiving events when the first of our views is registered. if (this._views.length == 0) { @@ -1350,7 +1350,7 @@ const DownloadsViewPrototype = { * @param aView * View object to be updated. */ - refreshView: function DVP_refreshView(aView) + refreshView: function (aView) { // Update immediately even if we are still loading data asynchronously. // Subclasses must provide these two functions! @@ -1364,7 +1364,7 @@ const DownloadsViewPrototype = { * @param aView * View object to be removed. */ - removeView: function DVP_removeView(aView) + removeView: function (aView) { let index = this._views.indexOf(aView); if (index != -1) { @@ -1392,7 +1392,7 @@ const DownloadsViewPrototype = { /** * Called before multiple downloads are about to be loaded. */ - onDataLoadStarting: function DVP_onDataLoadStarting() + onDataLoadStarting: function () { this._loading = true; }, @@ -1400,7 +1400,7 @@ const DownloadsViewPrototype = { /** * Called after data loading finished. */ - onDataLoadCompleted: function DVP_onDataLoadCompleted() + onDataLoadCompleted: function () { this._loading = false; }, @@ -1412,7 +1412,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - onDataInvalidated: function DVP_onDataInvalidated() + onDataInvalidated: function () { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, @@ -1481,7 +1481,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - _refreshProperties: function DID_refreshProperties() + _refreshProperties: function () { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, @@ -1491,7 +1491,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - _updateView: function DID_updateView() + _updateView: function () { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; } @@ -1523,7 +1523,7 @@ DownloadsIndicatorDataCtor.prototype = { * @param aView * DownloadsIndicatorView object to be removed. */ - removeView: function DID_removeView(aView) + removeView: function (aView) { DownloadsViewPrototype.removeView.call(this, aView); @@ -1535,7 +1535,7 @@ DownloadsIndicatorDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// Callback functions from DownloadsData - onDataLoadCompleted: function DID_onDataLoadCompleted() + onDataLoadCompleted: function () { DownloadsViewPrototype.onDataLoadCompleted.call(this); this._updateViews(); @@ -1546,7 +1546,7 @@ DownloadsIndicatorDataCtor.prototype = { * entered Private Browsing Mode and the database backend changed). * References to existing data should be discarded. */ - onDataInvalidated: function DID_onDataInvalidated() + onDataInvalidated: function () { this._itemCount = 0; }, @@ -1612,7 +1612,7 @@ DownloadsIndicatorDataCtor.prototype = { /** * Computes aggregate values and propagates the changes to our views. */ - _updateViews: function DID_updateViews() + _updateViews: function () { // Do not update the status indicators during batch loads of download items. if (this._loading) { @@ -1629,7 +1629,7 @@ DownloadsIndicatorDataCtor.prototype = { * @param aView * DownloadsIndicatorView object to be updated. */ - _updateView: function DID_updateView(aView) + _updateView: function (aView) { aView.hasDownloads = this._hasDownloads; aView.counter = this._counter; @@ -1681,7 +1681,7 @@ DownloadsIndicatorDataCtor.prototype = { /** * Computes aggregate values based on the current state of downloads. */ - _refreshProperties: function DID_refreshProperties() + _refreshProperties: function () { let summary = DownloadsCommon.summarizeDownloads(this._activeDownloads()); @@ -1780,7 +1780,7 @@ DownloadsSummaryData.prototype = { * @param aView * DownloadsSummary view to be removed. */ - removeView: function DSD_removeView(aView) + removeView: function (aView) { DownloadsViewPrototype.removeView.call(this, aView); @@ -1796,13 +1796,13 @@ DownloadsSummaryData.prototype = { //// DownloadsViewPrototype for more information on what these functions //// are used for. - onDataLoadCompleted: function DSD_onDataLoadCompleted() + onDataLoadCompleted: function () { DownloadsViewPrototype.onDataLoadCompleted.call(this); this._updateViews(); }, - onDataInvalidated: function DSD_onDataInvalidated() + onDataInvalidated: function () { this._dataItems = []; }, @@ -1839,7 +1839,7 @@ DownloadsSummaryData.prototype = { /** * Computes aggregate values and propagates the changes to our views. */ - _updateViews: function DSD_updateViews() + _updateViews: function () { // Do not update the status indicators during batch loads of download items. if (this._loading) { @@ -1856,7 +1856,7 @@ DownloadsSummaryData.prototype = { * @param aView * DownloadsIndicatorView object to be updated. */ - _updateView: function DSD_updateView(aView) + _updateView: function (aView) { aView.showingProgress = this._showingProgress; aView.percentComplete = this._percentComplete; @@ -1885,7 +1885,7 @@ DownloadsSummaryData.prototype = { /** * Computes aggregate values based on the current state of downloads. */ - _refreshProperties: function DSD_refreshProperties() + _refreshProperties: function () { // Pre-load summary with default values. let summary = diff --git a/application/palemoon/components/downloads/DownloadsLogger.jsm b/application/palemoon/components/downloads/DownloadsLogger.jsm index 1218539c98..52572781ab 100644 --- a/application/palemoon/components/downloads/DownloadsLogger.jsm +++ b/application/palemoon/components/downloads/DownloadsLogger.jsm @@ -24,7 +24,7 @@ Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/Services.jsm"); this.DownloadsLogger = { - _generateLogMessage: function _generateLogMessage(args) { + _generateLogMessage: function (args) { // create a string representation of a list of arbitrary things let strings = []; @@ -51,7 +51,7 @@ this.DownloadsLogger = { * * Enable with about:config pref browser.download.debug */ - log: function DL_log(...args) { + log: function (...args) { let output = this._generateLogMessage(args); dump(output + "\n"); @@ -63,7 +63,7 @@ this.DownloadsLogger = { * reportError() - report an error through component utils as well as * our log function */ - reportError: function DL_reportError(...aArgs) { + reportError: function (...aArgs) { // Report the error in the browser let output = this._generateLogMessage(aArgs); Cu.reportError(output); diff --git a/application/palemoon/components/downloads/DownloadsStartup.js b/application/palemoon/components/downloads/DownloadsStartup.js index e1dd207ef7..e2715e1eab 100644 --- a/application/palemoon/components/downloads/DownloadsStartup.js +++ b/application/palemoon/components/downloads/DownloadsStartup.js @@ -82,7 +82,7 @@ DownloadsStartup.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIObserver - observe: function DS_observe(aSubject, aTopic, aData) + observe: function (aSubject, aTopic, aData) { switch (aTopic) { case "profile-after-change": @@ -259,7 +259,7 @@ DownloadsStartup.prototype = { /** * Ensures that persistent download data is reloaded at the appropriate time. */ - _ensureDataLoaded: function DS_ensureDataLoaded() + _ensureDataLoaded: function () { if (!this._downloadsServiceInitialized) { return; diff --git a/application/palemoon/components/downloads/DownloadsUI.js b/application/palemoon/components/downloads/DownloadsUI.js index afdbda834e..d6493a78a2 100644 --- a/application/palemoon/components/downloads/DownloadsUI.js +++ b/application/palemoon/components/downloads/DownloadsUI.js @@ -60,7 +60,7 @@ DownloadsUI.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIDownloadManagerUI - show: function DUI_show(aWindowContext, aDownload, aReason, aUsePrivateUI) + show: function (aWindowContext, aDownload, aReason, aUsePrivateUI) { if (DownloadsCommon.useToolkitUI && !PrivateBrowsingUtils.isWindowPrivate(aWindowContext)) { this._toolkitUI.show(aWindowContext, aDownload, aReason, aUsePrivateUI); @@ -101,7 +101,7 @@ DownloadsUI.prototype = { return DownloadsCommon.useToolkitUI ? this._toolkitUI.visible : true; }, - getAttention: function DUI_getAttention() + getAttention: function () { if (DownloadsCommon.useToolkitUI) { this._toolkitUI.getAttention(); @@ -112,7 +112,7 @@ DownloadsUI.prototype = { * Helper function that opens the download manager UI. */ _showDownloadManagerUI: - function DUI_showDownloadManagerUI(aWindowContext, aUsePrivateUI) + function (aWindowContext, aUsePrivateUI) { // If we weren't given a window context, try to find a browser window // to use as our parent - and if that doesn't work, error out and give up. diff --git a/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js b/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js index 4830f21289..ce6deca723 100644 --- a/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js +++ b/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js @@ -213,7 +213,7 @@ HistoryDownloadElementShell.prototype = { * be activated when entering the visible area. Session downloads are always * active. */ - ensureActive: function DES_ensureActive() { + ensureActive: function () { if (!this._active) { this._active = true; this.element.setAttribute("active", true); @@ -305,7 +305,7 @@ HistoryDownloadElementShell.prototype = { }, /* nsIController */ - isCommandEnabled: function DES_isCommandEnabled(aCommand) { + isCommandEnabled: function (aCommand) { // The only valid command for inactive elements is cmd_delete. if (!this.active && aCommand != "cmd_delete") return false; @@ -340,7 +340,7 @@ HistoryDownloadElementShell.prototype = { }, /* nsIController */ - doCommand: function DES_doCommand(aCommand) { + doCommand: function (aCommand) { switch (aCommand) { case "downloadsCmd_open": { let file = new FileUtils.File(this.download.target.path); @@ -391,7 +391,7 @@ HistoryDownloadElementShell.prototype = { // Returns whether or not the download handled by this shell should // show up in the search results for the given term. Both the display // name for the download and the url are searched. - matchesSearchTerm: function DES_matchesSearchTerm(aTerm) { + matchesSearchTerm: function (aTerm) { if (!aTerm) return true; aTerm = aTerm.toLowerCase(); @@ -401,7 +401,7 @@ HistoryDownloadElementShell.prototype = { // Handles return keypress on the element (the keypress listener is // set in the DownloadsPlacesView object). - doDefaultCommand: function DES_doDefaultCommand() { + doDefaultCommand: function () { function getDefaultCommandForState(aState) { switch (aState) { case nsIDM.DOWNLOAD_FINISHED: @@ -435,7 +435,7 @@ HistoryDownloadElementShell.prototype = { * existence of the target file already, we can do it now and then update * the commands as needed. */ - onSelect: function DES_onSelect() { + onSelect: function () { if (!this.active) return; @@ -775,7 +775,7 @@ DownloadsPlacesView.prototype = { } }, - _removeElement: function DPV__removeElement(aElement) { + _removeElement: function (aElement) { // If the element was selected exclusively, select its next // sibling first, if not, try for previous sibling, if any. if ((aElement.nextSibling || aElement.previousSibling) && @@ -796,7 +796,7 @@ DownloadsPlacesView.prototype = { }, _removeHistoryDownloadFromView: - function DPV__removeHistoryDownloadFromView(aPlacesNode) { + function (aPlacesNode) { let downloadURI = aPlacesNode.uri; let shellsForURI = this._downloadElementsShellsForURI.get(downloadURI); if (shellsForURI) { @@ -857,7 +857,7 @@ DownloadsPlacesView.prototype = { }, _ensureVisibleElementsAreActive: - function DPV__ensureVisibleElementsAreActive() { + function () { if (!this.active || this._ensureVisibleTimer || !this._richlistbox.firstChild) return; @@ -964,12 +964,12 @@ DownloadsPlacesView.prototype = { get hasSelection() this.selectedNodes.length > 0, containerStateChanged: - function DPV_containerStateChanged(aNode, aOldState, aNewState) { + function (aNode, aOldState, aNewState) { this.invalidateContainer(aNode) }, invalidateContainer: - function DPV_invalidateContainer(aContainer) { + function (aContainer) { if (aContainer != this._resultNode) throw new Error("Unexpected container node"); if (!aContainer.containerOpen) @@ -1015,7 +1015,7 @@ DownloadsPlacesView.prototype = { goUpdateDownloadCommands(); }, - _appendDownloadsFragment: function DPV__appendDownloadsFragment(aDOMFragment) { + _appendDownloadsFragment: function (aDOMFragment) { // Workaround multiple reflows hang by removing the richlistbox // and adding it back when we're done. @@ -1037,11 +1037,11 @@ DownloadsPlacesView.prototype = { } }, - nodeInserted: function DPV_nodeInserted(aParent, aPlacesNode) { + nodeInserted: function (aParent, aPlacesNode) { this._addDownloadData(null, aPlacesNode); }, - nodeRemoved: function DPV_nodeRemoved(aParent, aPlacesNode, aOldIndex) { + nodeRemoved: function (aParent, aPlacesNode, aOldIndex) { this._removeHistoryDownloadFromView(aPlacesNode); }, @@ -1086,7 +1086,7 @@ DownloadsPlacesView.prototype = { * data is done loading. However, if the selection has changed in-between, * we assume the user has already started using the view and give up. */ - _ensureInitialSelection: function DPV__ensureInitialSelection() { + _ensureInitialSelection: function () { // Either they're both null, or the selection has not changed in between. if (this._richlistbox.selectedItem == this._initiallySelectedElement) { let firstDownloadElement = this._richlistbox.firstChild; @@ -1106,7 +1106,7 @@ DownloadsPlacesView.prototype = { }, onDataLoadStarting: function() { }, - onDataLoadCompleted: function DPV_onDataLoadCompleted() { + onDataLoadCompleted: function () { this._ensureInitialSelection(); }, @@ -1126,7 +1126,7 @@ DownloadsPlacesView.prototype = { this._removeSessionDownloadFromView(download); }, - supportsCommand: function DPV_supportsCommand(aCommand) { + supportsCommand: function (aCommand) { if (DOWNLOAD_VIEW_SUPPORTED_COMMANDS.indexOf(aCommand) != -1) { // The clear-downloads command may be performed by the toolbar-button, // which can be focused on OS X. Thus enable this command even if the @@ -1144,7 +1144,7 @@ DownloadsPlacesView.prototype = { return false; }, - isCommandEnabled: function DPV_isCommandEnabled(aCommand) { + isCommandEnabled: function (aCommand) { switch (aCommand) { case "cmd_copy": return this._richlistbox.selectedItems.length > 0; @@ -1161,7 +1161,7 @@ DownloadsPlacesView.prototype = { } }, - _canClearDownloads: function DPV__canClearDownloads() { + _canClearDownloads: function () { // Downloads can be cleared if there's at least one removable download in // the list (either a history download or a completed session download). // Because history downloads are always removable and are listed after the @@ -1177,7 +1177,7 @@ DownloadsPlacesView.prototype = { }, _copySelectedDownloadsToClipboard: - function DPV__copySelectedDownloadsToClipboard() { + function () { let urls = [for (element of this._richlistbox.selectedItems) element._shell.download.source.url]; @@ -1186,7 +1186,7 @@ DownloadsPlacesView.prototype = { .copyString(urls.join("\n"), document); }, - _getURLFromClipboardData: function DPV__getURLFromClipboardData() { + _getURLFromClipboardData: function () { let trans = Cc["@mozilla.org/widget/transferable;1"]. createInstance(Ci.nsITransferable); trans.init(null); @@ -1210,19 +1210,19 @@ DownloadsPlacesView.prototype = { return ["", ""]; }, - _canDownloadClipboardURL: function DPV__canDownloadClipboardURL() { + _canDownloadClipboardURL: function () { let [url, name] = this._getURLFromClipboardData(); return url != ""; }, - _downloadURLFromClipboard: function DPV__downloadURLFromClipboard() { + _downloadURLFromClipboard: function () { let [url, name] = this._getURLFromClipboardData(); let browserWin = RecentWindow.getMostRecentBrowserWindow(); let initiatingDoc = browserWin ? browserWin.document : document; DownloadURL(url, name, initiatingDoc); }, - doCommand: function DPV_doCommand(aCommand) { + doCommand: function (aCommand) { // Commands may be invoked with keyboard shortcuts even if disabled. if (!this.isCommandEnabled(aCommand)) { return; @@ -1263,7 +1263,7 @@ DownloadsPlacesView.prototype = { onEvent: function() { }, - onContextMenu: function DPV_onContextMenu(aEvent) + onContextMenu: function (aEvent) { let element = this._richlistbox.selectedItem; if (!element || !element._shell) @@ -1283,7 +1283,7 @@ DownloadsPlacesView.prototype = { return true; }, - onKeyPress: function DPV_onKeyPress(aEvent) { + onKeyPress: function (aEvent) { let selectedElements = this._richlistbox.selectedItems; if (aEvent.keyCode == KeyEvent.DOM_VK_RETURN) { // In the content tree, opening bookmarks by pressing return is only @@ -1304,7 +1304,7 @@ DownloadsPlacesView.prototype = { } }, - onDoubleClick: function DPV_onDoubleClick(aEvent) { + onDoubleClick: function (aEvent) { if (aEvent.button != 0) return; @@ -1317,11 +1317,11 @@ DownloadsPlacesView.prototype = { element._shell.doDefaultCommand(); }, - onScroll: function DPV_onScroll() { + onScroll: function () { this._ensureVisibleElementsAreActive(); }, - onSelect: function DPV_onSelect() { + onSelect: function () { goUpdateDownloadCommands(); let selectedElements = this._richlistbox.selectedItems; @@ -1331,7 +1331,7 @@ DownloadsPlacesView.prototype = { } }, - onDragStart: function DPV_onDragStart(aEvent) { + onDragStart: function (aEvent) { // TODO Bug 831358: Support d&d for multiple selection. // For now, we just drag the first element. let selectedItem = this._richlistbox.selectedItem; @@ -1357,7 +1357,7 @@ DownloadsPlacesView.prototype = { dt.addElement(selectedItem); }, - onDragOver: function DPV_onDragOver(aEvent) { + onDragOver: function (aEvent) { let types = aEvent.dataTransfer.types; if (types.contains("text/uri-list") || types.contains("text/x-moz-url") || @@ -1366,7 +1366,7 @@ DownloadsPlacesView.prototype = { } }, - onDrop: function DPV_onDrop(aEvent) { + onDrop: function (aEvent) { let dt = aEvent.dataTransfer; // If dragged item is from our source, do not try to // redownload already downloaded file. diff --git a/application/palemoon/components/downloads/content/contentAreaDownloadsView.js b/application/palemoon/components/downloads/content/contentAreaDownloadsView.js index fbb18ab04f..2a43246ccd 100644 --- a/application/palemoon/components/downloads/content/contentAreaDownloadsView.js +++ b/application/palemoon/components/downloads/content/contentAreaDownloadsView.js @@ -5,7 +5,7 @@ Components.utils.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); var ContentAreaDownloadsView = { - init: function CADV_init() { + init: function () { let view = new DownloadsPlacesView(document.getElementById("downloadsRichListBox")); // Do not display the Places downloads in private windows if (!PrivateBrowsingUtils.isWindowPrivate(window)) { diff --git a/application/palemoon/components/downloads/content/downloads.js b/application/palemoon/components/downloads/content/downloads.js index ee1c6902ec..2c935ba65d 100644 --- a/application/palemoon/components/downloads/content/downloads.js +++ b/application/palemoon/components/downloads/content/downloads.js @@ -122,7 +122,7 @@ const DownloadsPanel = { * @param aCallback * Called when initialization is complete. */ - initialize: function DP_initialize(aCallback) + initialize: function (aCallback) { DownloadsCommon.log("Attempting to initialize DownloadsPanel for a window."); if (this._state != this.kStateUninitialized) { @@ -164,7 +164,7 @@ const DownloadsPanel = { * downloads. The downloads panel can be reopened later, even after this * function has been called. */ - terminate: function DP_terminate() + terminate: function () { DownloadsCommon.log("Attempting to terminate DownloadsPanel for a window."); if (this._state == this.kStateUninitialized) { @@ -214,7 +214,7 @@ const DownloadsPanel = { * initialized the first time this method is called, and the panel is shown * only when data is ready. */ - showPanel: function DP_showPanel() + showPanel: function () { DownloadsCommon.log("Opening the downloads panel."); @@ -240,7 +240,7 @@ const DownloadsPanel = { * Hides the downloads panel, if visible, but keeps the internal state so that * the panel can be reopened quickly if required. */ - hidePanel: function DP_hidePanel() + hidePanel: function () { DownloadsCommon.log("Closing the downloads panel."); @@ -297,7 +297,7 @@ const DownloadsPanel = { * Handles the mousemove event for the panel, which disables focusring * visualization. */ - handleEvent: function DP_handleEvent(aEvent) + handleEvent: function (aEvent) { if (aEvent.type == "mousemove") { this.keyFocusing = false; @@ -310,7 +310,7 @@ const DownloadsPanel = { /** * Called after data loading finished. */ - onViewLoadCompleted: function DP_onViewLoadCompleted() + onViewLoadCompleted: function () { this._openPopupIfDataReady(); }, @@ -318,13 +318,13 @@ const DownloadsPanel = { ////////////////////////////////////////////////////////////////////////////// //// User interface event functions - onWindowUnload: function DP_onWindowUnload() + onWindowUnload: function () { // This function is registered as an event listener, we can't use "this". DownloadsPanel.terminate(); }, - onPopupShown: function DP_onPopupShown(aEvent) + onPopupShown: function (aEvent) { // Ignore events raised by nested popups. if (aEvent.target != aEvent.currentTarget) { @@ -346,7 +346,7 @@ const DownloadsPanel = { this._focusPanel(); }, - onPopupHidden: function DP_onPopupHidden(aEvent) + onPopupHidden: function (aEvent) { // Ignore events raised by nested popups. if (aEvent.target != aEvent.currentTarget) { @@ -375,7 +375,7 @@ const DownloadsPanel = { /** * Shows or focuses the user interface dedicated to downloads history. */ - showDownloadsHistory: function DP_showDownloadsHistory() + showDownloadsHistory: function () { DownloadsCommon.log("Showing download history."); // Hide the panel before showing another window, otherwise focus will return @@ -393,7 +393,7 @@ const DownloadsPanel = { * removed in _unattachEventListeners. This is called automatically after the * panel has successfully loaded. */ - _attachEventListeners: function DP__attachEventListeners() + _attachEventListeners: function () { // Handle keydown to support accel-V. this.panel.addEventListener("keydown", this._onKeyDown.bind(this), false); @@ -406,7 +406,7 @@ const DownloadsPanel = { * Unattach event listeners that were added in _attachEventListeners. This * is called automatically on panel termination. */ - _unattachEventListeners: function DP__unattachEventListeners() + _unattachEventListeners: function () { this.panel.removeEventListener("keydown", this._onKeyDown.bind(this), false); @@ -414,7 +414,7 @@ const DownloadsPanel = { false); }, - _onKeyPress: function DP__onKeyPress(aEvent) + _onKeyPress: function (aEvent) { // Handle unmodified keys only. if (aEvent.altKey || aEvent.ctrlKey || aEvent.shiftKey || aEvent.metaKey) { @@ -462,7 +462,7 @@ const DownloadsPanel = { * as the the accel-V "paste" event, which initiates a file download if the * pasted item can be resolved to a URI. */ - _onKeyDown: function DP__onKeyDown(aEvent) + _onKeyDown: function (aEvent) { // If the footer is focused and the downloads list has at least 1 element // in it, focus the last element in the list when going up. @@ -516,7 +516,7 @@ const DownloadsPanel = { * Move focus to the main element in the downloads panel, unless another * element in the panel is already focused. */ - _focusPanel: function DP_focusPanel() + _focusPanel: function () { // We may be invoked while the panel is still waiting to be shown. if (this._state != this.kStateShown) { @@ -539,7 +539,7 @@ const DownloadsPanel = { /** * Opens the downloads panel when data is ready to be displayed. */ - _openPopupIfDataReady: function DP_openPopupIfDataReady() + _openPopupIfDataReady: function () { // We don't want to open the popup if we already displayed it, or if we are // still loading data. @@ -627,7 +627,7 @@ const DownloadsOverlayLoader = { * Invoked when loading is completed. If the overlay is already * loaded, the function is called immediately. */ - ensureOverlayLoaded: function DOL_ensureOverlayLoaded(aOverlay, aCallback) + ensureOverlayLoaded: function (aOverlay, aCallback) { // The overlay is already loaded, invoke the callback immediately. if (aOverlay in this._loadedOverlays) { @@ -663,7 +663,7 @@ const DownloadsOverlayLoader = { * and/or loading more overlays as needed. In most cases, there will be a * single request for one overlay, that will be processed immediately. */ - processPendingRequests: function DOL_processPendingRequests() + processPendingRequests: function () { // Re-process all the currently pending requests, yet allow more requests // to be appended at the end of the array if we're not ready for them. @@ -721,7 +721,7 @@ const DownloadsView = { /** * Called when the number of items in the list changes. */ - _itemCountChanged: function DV_itemCountChanged() + _itemCountChanged: function () { DownloadsCommon.log("The downloads item count has changed - we are tracking", this._downloads.length, "downloads in total."); @@ -766,7 +766,7 @@ const DownloadsView = { /** * Called before multiple downloads are about to be loaded. */ - onDataLoadStarting: function DV_onDataLoadStarting() + onDataLoadStarting: function () { DownloadsCommon.log("onDataLoadStarting called for DownloadsView."); this.loading = true; @@ -775,7 +775,7 @@ const DownloadsView = { /** * Called after data loading finished. */ - onDataLoadCompleted: function DV_onDataLoadCompleted() + onDataLoadCompleted: function () { DownloadsCommon.log("onDataLoadCompleted called for DownloadsView."); @@ -795,7 +795,7 @@ const DownloadsView = { * entering Private Browsing Mode). References to existing data should be * discarded. */ - onDataInvalidated: function DV_onDataInvalidated() + onDataInvalidated: function () { DownloadsCommon.log("Downloads data has been invalidated. Cleaning up", "DownloadsView."); @@ -952,7 +952,7 @@ const DownloadsView = { * @param aCommand * The command to be performed. */ - onDownloadCommand: function DV_onDownloadCommand(aEvent, aCommand) + onDownloadCommand: function (aEvent, aCommand) { let target = aEvent.target; while (target.nodeName != "richlistitem") { @@ -961,7 +961,7 @@ const DownloadsView = { DownloadsView.controllerForElement(target).doCommand(aCommand); }, - onDownloadClick: function DV_onDownloadClick(aEvent) + onDownloadClick: function (aEvent) { // Handle primary clicks only, and exclude the action button. if (aEvent.button == 0 && @@ -973,7 +973,7 @@ const DownloadsView = { /** * Handles keypress events on a download item. */ - onDownloadKeyPress: function DV_onDownloadKeyPress(aEvent) + onDownloadKeyPress: function (aEvent) { // Pressing the key on buttons should not invoke the action because the // event has already been handled by the button itself. @@ -997,12 +997,12 @@ const DownloadsView = { /** * Mouse listeners to handle selection on hover. */ - onDownloadMouseOver: function DV_onDownloadMouseOver(aEvent) + onDownloadMouseOver: function (aEvent) { if (aEvent.originalTarget.parentNode == this.richListBox) this.richListBox.selectedItem = aEvent.originalTarget; }, - onDownloadMouseOut: function DV_onDownloadMouseOut(aEvent) + onDownloadMouseOut: function (aEvent) { if (aEvent.originalTarget.parentNode == this.richListBox) { // If the destination element is outside of the richlistitem, clear the @@ -1016,7 +1016,7 @@ const DownloadsView = { } }, - onDownloadContextMenu: function DV_onDownloadContextMenu(aEvent) + onDownloadContextMenu: function (aEvent) { let element = this.richListBox.selectedItem; if (!element) { @@ -1030,7 +1030,7 @@ const DownloadsView = { contextMenu.setAttribute("state", element.getAttribute("state")); }, - onDownloadDragStart: function DV_onDownloadDragStart(aEvent) + onDownloadDragStart: function (aEvent) { let element = this.richListBox.selectedItem; if (!element) { @@ -1113,12 +1113,12 @@ const DownloadsViewController = { ////////////////////////////////////////////////////////////////////////////// //// Initialization and termination - initialize: function DVC_initialize() + initialize: function () { window.controllers.insertControllerAt(0, this); }, - terminate: function DVC_terminate() + terminate: function () { window.controllers.removeController(this); }, @@ -1126,7 +1126,7 @@ const DownloadsViewController = { ////////////////////////////////////////////////////////////////////////////// //// nsIController - supportsCommand: function DVC_supportsCommand(aCommand) + supportsCommand: function (aCommand) { // Firstly, determine if this is a command that we can handle. if (!(aCommand in this.commands) && @@ -1143,7 +1143,7 @@ const DownloadsViewController = { return !!element; }, - isCommandEnabled: function DVC_isCommandEnabled(aCommand) + isCommandEnabled: function (aCommand) { // Handle commands that are not selection-specific. if (aCommand == "downloadsCmd_clearList") { @@ -1156,7 +1156,7 @@ const DownloadsViewController = { .isCommandEnabled(aCommand); }, - doCommand: function DVC_doCommand(aCommand) + doCommand: function (aCommand) { // If this command is not selection-specific, execute it. if (aCommand in this.commands) { @@ -1177,7 +1177,7 @@ const DownloadsViewController = { ////////////////////////////////////////////////////////////////////////////// //// Other functions - updateCommands: function DVC_updateCommands() + updateCommands: function () { Object.keys(this.commands).forEach(goUpdateCommand); Object.keys(DownloadsViewItemController.prototype.commands) @@ -1192,7 +1192,7 @@ const DownloadsViewController = { * the currently selected item in the list. */ commands: { - downloadsCmd_clearList: function DVC_downloadsCmd_clearList() + downloadsCmd_clearList: function () { DownloadsCommon.getData(window).removeFinished(); } @@ -1213,7 +1213,7 @@ function DownloadsViewItemController(download) { } DownloadsViewItemController.prototype = { - isCommandEnabled: function DVIC_isCommandEnabled(aCommand) + isCommandEnabled: function (aCommand) { switch (aCommand) { case "downloadsCmd_open": { @@ -1252,7 +1252,7 @@ DownloadsViewItemController.prototype = { return false; }, - doCommand: function DVIC_doCommand(aCommand) + doCommand: function (aCommand) { if (this.isCommandEnabled(aCommand)) { this.commands[aCommand].apply(this); @@ -1268,20 +1268,20 @@ DownloadsViewItemController.prototype = { * In commands, the "this" identifier points to the controller item. */ commands: { - cmd_delete: function DVIC_cmd_delete() + cmd_delete: function () { DownloadsCommon.removeAndFinalizeDownload(this.download); PlacesUtils.bhistory.removePage( NetUtil.newURI(this.download.source.url)); }, - downloadsCmd_cancel: function DVIC_downloadsCmd_cancel() + downloadsCmd_cancel: function () { this.download.cancel().catch(() => {}); this.download.removePartialData().catch(Cu.reportError); }, - downloadsCmd_open: function DVIC_downloadsCmd_open() + downloadsCmd_open: function () { this.download.launch().catch(Cu.reportError); @@ -1293,7 +1293,7 @@ DownloadsViewItemController.prototype = { DownloadsPanel.hidePanel(); }, - downloadsCmd_show: function DVIC_downloadsCmd_show() + downloadsCmd_show: function () { let file = new FileUtils.File(this.download.target.path); DownloadsCommon.showDownloadedFile(file); @@ -1306,7 +1306,7 @@ DownloadsViewItemController.prototype = { DownloadsPanel.hidePanel(); }, - downloadsCmd_pauseResume: function DVIC_downloadsCmd_pauseResume() + downloadsCmd_pauseResume: function () { if (this.download.stopped) { this.download.start(); @@ -1315,24 +1315,24 @@ DownloadsViewItemController.prototype = { } }, - downloadsCmd_retry: function DVIC_downloadsCmd_retry() + downloadsCmd_retry: function () { this.download.start().catch(() => {}); }, - downloadsCmd_openReferrer: function DVIC_downloadsCmd_openReferrer() + downloadsCmd_openReferrer: function () { openURL(this.download.source.referrer); }, - downloadsCmd_copyLocation: function DVIC_downloadsCmd_copyLocation() + downloadsCmd_copyLocation: function () { let clipboard = Cc["@mozilla.org/widget/clipboardhelper;1"] .getService(Ci.nsIClipboardHelper); clipboard.copyString(this.download.source.url, document); }, - downloadsCmd_doDefault: function DVIC_downloadsCmd_doDefault() + downloadsCmd_doDefault: function () { const nsIDM = Ci.nsIDownloadManager; @@ -1478,7 +1478,7 @@ const DownloadsSummary = { * @param aEvent * The keydown event being handled. */ - onKeyDown: function DS_onKeyDown(aEvent) + onKeyDown: function (aEvent) { if (aEvent.charCode == " ".charCodeAt(0) || aEvent.keyCode == KeyEvent.DOM_VK_ENTER || @@ -1493,7 +1493,7 @@ const DownloadsSummary = { * @param aEvent * The click event being handled. */ - onClick: function DS_onClick(aEvent) + onClick: function (aEvent) { DownloadsPanel.showDownloadsHistory(); }, @@ -1569,7 +1569,7 @@ const DownloadsFooter = { * is visible, focus it. If not, focus the "Show All Downloads" * button. */ - focus: function DF_focus() + focus: function () { if (this._showingSummary) { DownloadsSummary.focus(); diff --git a/application/palemoon/components/downloads/content/indicator.js b/application/palemoon/components/downloads/content/indicator.js index 1a2175a92a..7503f7d04d 100644 --- a/application/palemoon/components/downloads/content/indicator.js +++ b/application/palemoon/components/downloads/content/indicator.js @@ -59,7 +59,7 @@ const DownloadsButton = { * startup time, and in particular should not cause the Download Manager * service to start. */ - initializeIndicator: function DB_initializeIndicator() + initializeIndicator: function () { this._update(); }, @@ -77,7 +77,7 @@ const DownloadsButton = { * placeholder is an ordinary button defined in the browser window that can be * moved freely between the toolbars and the customization palette. */ - customizeStart: function DB_customizeStart() + customizeStart: function () { // Hide the indicator and prevent it to be displayed as a temporary anchor // during customization, even if requested using the getAnchor method. @@ -98,7 +98,7 @@ const DownloadsButton = { /** * This function is called when toolbar customization ends. */ - customizeDone: function DB_customizeDone() + customizeDone: function () { this._customizing = false; this._update(); @@ -114,7 +114,7 @@ const DownloadsButton = { * input/output it performs, and in particular should not cause the * Download Manager service to start. */ - _update: function DB_update() { + _update: function () { this._updatePositionInternal(); if (!DownloadsCommon.useToolkitUI) { @@ -131,7 +131,7 @@ const DownloadsButton = { * that the panel doesn't flicker because we move the DOM element to which * it's anchored. */ - updatePosition: function DB_updatePosition() + updatePosition: function () { if (!this._anchorRequested) { this._updatePositionInternal(); @@ -144,7 +144,7 @@ const DownloadsButton = { * * @return Anchor element, or null if the indicator is not visible. */ - _updatePositionInternal: function DB_updatePositionInternal() + _updatePositionInternal: function () { let indicator = DownloadsIndicatorView.indicator; if (!indicator) { @@ -187,7 +187,7 @@ const DownloadsButton = { * Called once the indicator overlay has loaded. Gets a boolean * argument representing the indicator visibility. */ - checkIsVisible: function DB_checkIsVisible(aCallback) + checkIsVisible: function (aCallback) { function DB_CEV_callback() { if (!this._placeholder) { @@ -215,7 +215,7 @@ const DownloadsButton = { * panel should be anchored, or null if an anchor is not available (for * example because both the tab bar and the navigation bar are hidden). */ - getAnchor: function DB_getAnchor(aCallback) + getAnchor: function (aCallback) { // Do not allow anchoring the panel to the element while customizing. if (this._customizing) { @@ -235,7 +235,7 @@ const DownloadsButton = { /** * Allows the temporary anchor to be hidden. */ - releaseAnchor: function DB_releaseAnchor() + releaseAnchor: function () { this._anchorRequested = false; this._updatePositionInternal(); @@ -284,7 +284,7 @@ const DownloadsIndicatorView = { /** * Prepares the downloads indicator to be displayed. */ - ensureInitialized: function DIV_ensureInitialized() + ensureInitialized: function () { if (this._initialized) { return; @@ -298,7 +298,7 @@ const DownloadsIndicatorView = { /** * Frees the internal resources related to the indicator. */ - ensureTerminated: function DIV_ensureTerminated() + ensureTerminated: function () { if (!this._initialized) { return; @@ -320,7 +320,7 @@ const DownloadsIndicatorView = { * Ensures that the user interface elements required to display the indicator * are loaded, then invokes the given callback. */ - _ensureOperational: function DIV_ensureOperational(aCallback) + _ensureOperational: function (aCallback) { if (this._operational) { aCallback(); @@ -359,7 +359,7 @@ const DownloadsIndicatorView = { * @param aType * Set to "start" for new downloads, "finish" for completed downloads. */ - showEventNotification: function DIV_showEventNotification(aType) + showEventNotification: function (aType) { if (!this._initialized) { return; @@ -516,13 +516,13 @@ const DownloadsIndicatorView = { ////////////////////////////////////////////////////////////////////////////// //// User interface event functions - onWindowUnload: function DIV_onWindowUnload() + onWindowUnload: function () { // This function is registered as an event listener, we can't use "this". DownloadsIndicatorView.ensureTerminated(); }, - onCommand: function DIV_onCommand(aEvent) + onCommand: function (aEvent) { if (DownloadsCommon.useToolkitUI) { // The panel won't suppress attention for us, we need to clear now. @@ -535,12 +535,12 @@ const DownloadsIndicatorView = { aEvent.stopPropagation(); }, - onDragOver: function DIV_onDragOver(aEvent) + onDragOver: function (aEvent) { browserDragAndDrop.dragOver(aEvent); }, - onDrop: function DIV_onDrop(aEvent) + onDrop: function (aEvent) { let dt = aEvent.dataTransfer; // If dragged item is from our source, do not try to From c7bcbe215d4b1937035f92f4f12b49d2e5966b48 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:48:27 -0600 Subject: [PATCH 08/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/feeds. --- .../components/feeds/FeedConverter.js | 38 ++++----- .../palemoon/components/feeds/FeedWriter.js | 68 ++++++++-------- .../components/feeds/WebContentConverter.js | 80 +++++++++---------- .../components/feeds/content/subscribe.js | 6 +- 4 files changed, 96 insertions(+), 96 deletions(-) diff --git a/application/palemoon/components/feeds/FeedConverter.js b/application/palemoon/components/feeds/FeedConverter.js index d0f5737743..e41958cd84 100644 --- a/application/palemoon/components/feeds/FeedConverter.js +++ b/application/palemoon/components/feeds/FeedConverter.js @@ -127,7 +127,7 @@ FeedConverter.prototype = { /** * See nsIStreamConverter.idl */ - convert: function FC_convert(sourceStream, sourceType, destinationType, + convert: function (sourceStream, sourceType, destinationType, context) { throw Cr.NS_ERROR_NOT_IMPLEMENTED; }, @@ -135,7 +135,7 @@ FeedConverter.prototype = { /** * See nsIStreamConverter.idl */ - asyncConvertData: function FC_asyncConvertData(sourceType, destinationType, + asyncConvertData: function (sourceType, destinationType, listener, context) { this._listener = listener; }, @@ -148,7 +148,7 @@ FeedConverter.prototype = { /** * Release our references to various things once we're done using them. */ - _releaseHandles: function FC__releaseHandles() { + _releaseHandles: function () { this._listener = null; this._request = null; this._processor = null; @@ -157,7 +157,7 @@ FeedConverter.prototype = { /** * See nsIFeedResultListener.idl */ - handleResult: function FC_handleResult(result) { + handleResult: function (result) { // Feeds come in various content types, which our feed sniffer coerces to // the maybe.feed type. However, feeds are used as a transport for // different data types, e.g. news/blogs (traditional feed), video/audio @@ -270,7 +270,7 @@ FeedConverter.prototype = { /** * See nsIStreamListener.idl */ - onDataAvailable: function FC_onDataAvailable(request, context, inputStream, + onDataAvailable: function (request, context, inputStream, sourceOffset, count) { if (this._processor) this._processor.onDataAvailable(request, context, inputStream, @@ -280,7 +280,7 @@ FeedConverter.prototype = { /** * See nsIRequestObserver.idl */ - onStartRequest: function FC_onStartRequest(request, context) { + onStartRequest: function (request, context) { var channel = request.QueryInterface(Ci.nsIChannel); // Check for a header that tells us there was no sniffing @@ -323,7 +323,7 @@ FeedConverter.prototype = { /** * See nsIRequestObserver.idl */ - onStopRequest: function FC_onStopRequest(request, context, status) { + onStopRequest: function (request, context, status) { if (this._processor) this._processor.onStopRequest(request, context, status); }, @@ -331,7 +331,7 @@ FeedConverter.prototype = { /** * See nsISupports.idl */ - QueryInterface: function FC_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIFeedResultListener) || iid.equals(Ci.nsIStreamConverter) || iid.equals(Ci.nsIStreamListener) || @@ -366,7 +366,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - addToClientReader: function FRS_addToClientReader(spec, title, subtitle, feedType) { + addToClientReader: function (spec, title, subtitle, feedType) { var prefs = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefBranch); @@ -432,7 +432,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - addFeedResult: function FRS_addFeedResult(feedResult) { + addFeedResult: function (feedResult) { NS_ASSERT(feedResult.uri != null, "null URI!"); NS_ASSERT(feedResult.uri != null, "null feedResult!"); var spec = feedResult.uri.spec; @@ -444,7 +444,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - getFeedResult: function RFS_getFeedResult(uri) { + getFeedResult: function (uri) { NS_ASSERT(uri != null, "null URI!"); var resultList = this._results[uri.spec]; for (var i in resultList) { @@ -457,7 +457,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - removeFeedResult: function FRS_removeFeedResult(uri) { + removeFeedResult: function (uri) { NS_ASSERT(uri != null, "null URI!"); var resultList = this._results[uri.spec]; if (!resultList) @@ -478,13 +478,13 @@ FeedResultService.prototype = { delete this._results[uri.spec]; }, - createInstance: function FRS_createInstance(outer, iid) { + createInstance: function (outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return this.QueryInterface(iid); }, - QueryInterface: function FRS_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIFeedResultService) || iid.equals(Ci.nsIFactory) || iid.equals(Ci.nsISupports)) @@ -500,7 +500,7 @@ FeedResultService.prototype = { function GenericProtocolHandler() { } GenericProtocolHandler.prototype = { - _init: function GPH_init(scheme) { + _init: function (scheme) { var ios = Cc["@mozilla.org/network/io-service;1"]. getService(Ci.nsIIOService); @@ -520,11 +520,11 @@ GenericProtocolHandler.prototype = { return this._http.defaultPort; }, - allowPort: function GPH_allowPort(port, scheme) { + allowPort: function (port, scheme) { return this._http.allowPort(port, scheme); }, - newURI: function GPH_newURI(spec, originalCharset, baseURI) { + newURI: function (spec, originalCharset, baseURI) { // Feed URIs can be either nested URIs of the form feed:realURI (in which // case we create a nested URI for the realURI) or feed://example.com, in // which case we create a nested URI for the real protocol which is http. @@ -548,7 +548,7 @@ GenericProtocolHandler.prototype = { return uri; }, - newChannel2: function GPH_newChannel(aUri, aLoadInfo) { + newChannel2: function (aUri, aLoadInfo) { var inner = aUri.QueryInterface(Ci.nsINestedURI).innerURI; var channel = Cc["@mozilla.org/network/io-service;1"]. getService(Ci.nsIIOService). @@ -562,7 +562,7 @@ GenericProtocolHandler.prototype = { }, - QueryInterface: function GPH_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIProtocolHandler) || iid.equals(Ci.nsISupports)) return this; diff --git a/application/palemoon/components/feeds/FeedWriter.js b/application/palemoon/components/feeds/FeedWriter.js index facde5815b..048da1fe6d 100644 --- a/application/palemoon/components/feeds/FeedWriter.js +++ b/application/palemoon/components/feeds/FeedWriter.js @@ -149,12 +149,12 @@ FeedWriter.prototype = { _mimeSvc : Cc["@mozilla.org/mime;1"]. getService(Ci.nsIMIMEService), - _getPropertyAsBag: function FW__getPropertyAsBag(container, property) { + _getPropertyAsBag: function (container, property) { return container.fields.getProperty(property). QueryInterface(Ci.nsIPropertyBag2); }, - _getPropertyAsString: function FW__getPropertyAsString(container, property) { + _getPropertyAsString: function (container, property) { try { return container.fields.getPropertyAsAString(property); } @@ -163,7 +163,7 @@ FeedWriter.prototype = { return ""; }, - _setContentText: function FW__setContentText(id, text) { + _setContentText: function (id, text) { this._contentSandbox.element = this._document.getElementById(id); this._contentSandbox.textNode = text.createDocumentFragment(this._contentSandbox.element); var codeStr = @@ -190,7 +190,7 @@ FeedWriter.prototype = { * The URI spec to set as the href */ _safeSetURIAttribute: - function FW__safeSetURIAttribute(element, attribute, uri) { + function (element, attribute, uri) { var secman = Cc["@mozilla.org/scriptsecuritymanager;1"]. getService(Ci.nsIScriptSecurityManager); const flags = Ci.nsIScriptSecurityManager.DISALLOW_INHERIT_PRINCIPAL; @@ -243,7 +243,7 @@ FeedWriter.prototype = { * @param aElement * the XUL element to call doCommand() on. */ - _safeDoCommand: function FW___safeDoCommand(aElement) { + _safeDoCommand: function (aElement) { this._contentSandbox.element = aElement; Cu.evalInSandbox("element.doCommand();", this._contentSandbox); this._contentSandbox.element = null; @@ -268,16 +268,16 @@ FeedWriter.prototype = { return this.__bundle; }, - _getFormattedString: function FW__getFormattedString(key, params) { + _getFormattedString: function (key, params) { return this._bundle.formatStringFromName(key, params, params.length); }, - _getString: function FW__getString(key) { + _getString: function (key) { return this._bundle.GetStringFromName(key); }, /* Magic helper methods to be used instead of xbl properties */ - _getSelectedItemFromMenulist: function FW__getSelectedItemFromList(aList) { + _getSelectedItemFromMenulist: function (aList) { var node = aList.firstChild.firstChild; while (node) { if (node.localName == "menuitem" && node.getAttribute("selected") == "true") @@ -289,7 +289,7 @@ FeedWriter.prototype = { return null; }, - _setCheckboxCheckedState: function FW__setCheckboxCheckedState(aCheckbox, aValue) { + _setCheckboxCheckedState: function (aCheckbox, aValue) { // see checkbox.xml, xbl bindings are not applied within the sandbox! this._contentSandbox.checkbox = aCheckbox; var codeStr; @@ -315,7 +315,7 @@ FeedWriter.prototype = { * @param dateString * A date as extracted from a feed entry. (entry.updated) */ - _parseDate: function FW__parseDate(dateString) { + _parseDate: function (dateString) { // Convert the date into the user's local time zone dateObj = new Date(dateString); @@ -334,7 +334,7 @@ FeedWriter.prototype = { * Returns the feed type. */ __feedType: null, - _getFeedType: function FW__getFeedType() { + _getFeedType: function () { if (this.__feedType != null) return this.__feedType; @@ -352,7 +352,7 @@ FeedWriter.prototype = { /** * Maps a feed type to a maybe-feed mimetype. */ - _getMimeTypeForFeedType: function FW__getMimeTypeForFeedType() { + _getMimeTypeForFeedType: function () { switch (this._getFeedType()) { case Ci.nsIFeed.TYPE_VIDEO: return TYPE_MAYBE_VIDEO_FEED; @@ -370,7 +370,7 @@ FeedWriter.prototype = { * @param container * The feed container */ - _setTitleText: function FW__setTitleText(container) { + _setTitleText: function (container) { if (container.title) { var title = container.title.plainText(); this._setContentText(TITLE_ID, container.title); @@ -390,7 +390,7 @@ FeedWriter.prototype = { * @param container * The feed container */ - _setTitleImage: function FW__setTitleImage(container) { + _setTitleImage: function (container) { try { var parts = container.image; @@ -432,7 +432,7 @@ FeedWriter.prototype = { * @param container * The container of entries in the feed */ - _writeFeedContent: function FW__writeFeedContent(container) { + _writeFeedContent: function (container) { // Build the actual feed content var feed = container.QueryInterface(Ci.nsIFeed); if (feed.items.length == 0) @@ -532,7 +532,7 @@ FeedWriter.prototype = { * The URL string from which to create a display name * @returns a string */ - _getURLDisplayName: function FW__getURLDisplayName(aURL) { + _getURLDisplayName: function (aURL) { var url = makeURI(aURL); url.QueryInterface(Ci.nsIURL); if (url == null || url.fileName.length == 0) @@ -548,7 +548,7 @@ FeedWriter.prototype = { * FeedEntry with enclosures * @returns element */ - _buildEnclosureDiv: function FW__buildEnclosureDiv(entry) { + _buildEnclosureDiv: function (entry) { var enclosuresDiv = this._document.createElementNS(HTML_NS, "div"); enclosuresDiv.className = "enclosures"; @@ -628,7 +628,7 @@ FeedWriter.prototype = { * @returns A valid nsIFeedContainer object containing the contents of * the feed. */ - _getContainer: function FW__getContainer(result) { + _getContainer: function (result) { var feedService = Cc["@mozilla.org/browser/feeds/result-service;1"]. getService(Ci.nsIFeedResultService); @@ -668,7 +668,7 @@ FeedWriter.prototype = { * A nsIFile to look up the name of * @returns The display name of the application represented by the file. */ - _getFileDisplayName: function FW__getFileDisplayName(file) { + _getFileDisplayName: function (file) { #ifdef XP_WIN if (file instanceof Ci.nsILocalFileWin) { try { @@ -710,7 +710,7 @@ FeedWriter.prototype = { * Helper method to get an element in the XBL binding where the handler * selection UI lives */ - _getUIElement: function FW__getUIElement(id) { + _getUIElement: function (id) { return this._document.getAnonymousElementByAttribute( this._document.getElementById("feedSubscribeLine"), "anonid", id); }, @@ -720,7 +720,7 @@ FeedWriter.prototype = { * @param aCallback the callback method, passes in true if a feed reader was * selected, false otherwise. */ - _chooseClientApp: function FW__chooseClientApp(aCallback) { + _chooseClientApp: function (aCallback) { try { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { @@ -766,7 +766,7 @@ FeedWriter.prototype = { } }, - _setAlwaysUseCheckedState: function FW__setAlwaysUseCheckedState(feedType) { + _setAlwaysUseCheckedState: function (feedType) { var checkbox = this._getUIElement("alwaysUse"); if (checkbox) { var alwaysUse = false; @@ -781,7 +781,7 @@ FeedWriter.prototype = { } }, - _setSubscribeUsingLabel: function FW__setSubscribeUsingLabel() { + _setSubscribeUsingLabel: function () { var stringLabel = "subscribeFeedUsing"; switch (this._getFeedType()) { case Ci.nsIFeed.TYPE_VIDEO: @@ -800,7 +800,7 @@ FeedWriter.prototype = { Cu.evalInSandbox(codeStr, this._contentSandbox); }, - _setAlwaysUseLabel: function FW__setAlwaysUseLabel() { + _setAlwaysUseLabel: function () { var checkbox = this._getUIElement("alwaysUse"); if (checkbox) { if (this._handlersMenuList) { @@ -864,7 +864,7 @@ FeedWriter.prototype = { } }, - _setSelectedHandler: function FW__setSelectedHandler(feedType) { + _setSelectedHandler: function (feedType) { var prefs = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefBranch); @@ -927,7 +927,7 @@ FeedWriter.prototype = { } }, - _initSubscriptionUI: function FW__initSubscriptionUI() { + _initSubscriptionUI: function () { var handlersMenuPopup = this._getUIElement("handlersMenuPopup"); if (!handlersMenuPopup) return; @@ -1105,7 +1105,7 @@ FeedWriter.prototype = { * @param aWindow * The window of the document invoking the BrowserFeedWriter */ - _getOriginalURI: function FW__getOriginalURI(aWindow) { + _getOriginalURI: function (aWindow) { var chan = aWindow.QueryInterface(Ci.nsIInterfaceRequestor). getInterface(Ci.nsIWebNavigation). QueryInterface(Ci.nsIDocShell).currentDocumentChannel; @@ -1135,7 +1135,7 @@ FeedWriter.prototype = { _handlersMenuList: null, // BrowserFeedWriter WebIDL methods - init: function FW_init(aWindow) { + init: function (aWindow) { var window = aWindow; this._feedURI = this._getOriginalURI(window); if (!this._feedURI) @@ -1171,7 +1171,7 @@ FeedWriter.prototype = { prefs.addObserver(PREF_AUDIO_SELECTED_APP, this, false); }, - writeContent: function FW_writeContent() { + writeContent: function () { if (!this._window) return; @@ -1190,7 +1190,7 @@ FeedWriter.prototype = { } }, - close: function FW_close() { + close: function () { this._getUIElement("handlersMenuPopup") .removeEventListener("command", this, false); this._getUIElement("subscribeButton") @@ -1220,7 +1220,7 @@ FeedWriter.prototype = { this.__contentSandbox = null; }, - _removeFeedFromCache: function FW__removeFeedFromCache() { + _removeFeedFromCache: function () { if (this._feedURI) { var feedService = Cc["@mozilla.org/browser/feeds/result-service;1"]. getService(Ci.nsIFeedResultService); @@ -1229,7 +1229,7 @@ FeedWriter.prototype = { } }, - subscribe: function FW_subscribe() { + subscribe: function () { var feedType = this._getFeedType(); // Subscribe to the feed using the selected handler and save prefs @@ -1313,7 +1313,7 @@ FeedWriter.prototype = { }, // nsIObserver - observe: function FW_observe(subject, topic, data) { + observe: function (subject, topic, data) { if (!this._window) { // this._window is null unless this.init was called with a trusted // window object. @@ -1356,7 +1356,7 @@ FeedWriter.prototype = { * to the icon url. See Bug 358878 for details. */ _setFaviconForWebReader: - function FW__setFaviconForWebReader(aReaderUrl, aMenuItem) { + function (aReaderUrl, aMenuItem) { var readerURI = makeURI(aReaderUrl); if (!/^https?$/.test(readerURI.scheme)) { // Don't try to get a favicon for non http(s) URIs. diff --git a/application/palemoon/components/feeds/WebContentConverter.js b/application/palemoon/components/feeds/WebContentConverter.js index 42e2edee03..0ade021141 100644 --- a/application/palemoon/components/feeds/WebContentConverter.js +++ b/application/palemoon/components/feeds/WebContentConverter.js @@ -73,19 +73,19 @@ const NS_ERROR_DOM_SYNTAX_ERR = NS_ERROR_MODULE_DOM + 12; function WebContentConverter() { } WebContentConverter.prototype = { - convert: function WCC_convert() { }, - asyncConvertData: function WCC_asyncConvertData() { }, - onDataAvailable: function WCC_onDataAvailable() { }, - onStopRequest: function WCC_onStopRequest() { }, + convert: function () { }, + asyncConvertData: function () { }, + onDataAvailable: function () { }, + onStopRequest: function () { }, - onStartRequest: function WCC_onStartRequest(request, context) { + onStartRequest: function (request, context) { var wccr = Cc[WCCR_CONTRACTID]. getService(Ci.nsIWebContentConverterService); wccr.loadPreferredHandler(request); }, - QueryInterface: function WCC_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIStreamConverter) || iid.equals(Ci.nsIStreamListener) || iid.equals(Ci.nsISupports)) @@ -95,13 +95,13 @@ WebContentConverter.prototype = { }; var WebContentConverterFactory = { - createInstance: function WCCF_createInstance(outer, iid) { + createInstance: function (outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return new WebContentConverter().QueryInterface(iid); }, - QueryInterface: function WCC_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIFactory) || iid.equals(Ci.nsISupports)) return this; @@ -125,7 +125,7 @@ ServiceInfo.prototype = { /** * See nsIHandlerApp */ - equals: function SI_equals(aHandlerApp) { + equals: function (aHandlerApp) { if (!aHandlerApp) throw Cr.NS_ERROR_NULL_POINTER; @@ -154,11 +154,11 @@ ServiceInfo.prototype = { /** * See nsIWebContentHandlerInfo */ - getHandlerURI: function SI_getHandlerURI(uri) { + getHandlerURI: function (uri) { return this._uri.replace(/%s/gi, encodeURIComponent(uri)); }, - QueryInterface: function SI_QueryInterface(iid) { + QueryInterface: function (iid) { if (iid.equals(Ci.nsIWebContentHandlerInfo) || iid.equals(Ci.nsISupports)) return this; @@ -180,11 +180,11 @@ WebContentConverterRegistrar.prototype = { return WebContentConverterRegistrar.prototype.stringBundle = sb; }, - _getFormattedString: function WCCR__getFormattedString(key, params) { + _getFormattedString: function (key, params) { return this.stringBundle.formatStringFromName(key, params, params.length); }, - _getString: function WCCR_getString(key) { + _getString: function (key) { return this.stringBundle.GetStringFromName(key); }, @@ -192,7 +192,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getAutoHandler: - function WCCR_getAutoHandler(contentType) { + function (contentType) { contentType = this._resolveContentType(contentType); if (contentType in this._autoHandleContentTypes) return this._autoHandleContentTypes[contentType]; @@ -203,7 +203,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ setAutoHandler: - function WCCR_setAutoHandler(contentType, handler) { + function (contentType, handler) { if (handler && !this._typeIsRegistered(contentType, handler.uri)) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -226,7 +226,7 @@ WebContentConverterRegistrar.prototype = { * Update the internal data structure (not persistent) */ _setAutoHandler: - function WCCR__setAutoHandler(contentType, handler) { + function (contentType, handler) { if (handler) this._autoHandleContentTypes[contentType] = handler; else if (contentType in this._autoHandleContentTypes) @@ -237,7 +237,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getWebContentHandlerByURI: - function WCCR_getWebContentHandlerByURI(contentType, uri) { + function (contentType, uri) { var handlers = this.getContentHandlers(contentType, { }); for (var i = 0; i < handlers.length; ++i) { if (handlers[i].uri == uri) @@ -250,7 +250,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ loadPreferredHandler: - function WCCR_loadPreferredHandler(request) { + function (request) { var channel = request.QueryInterface(Ci.nsIChannel); var contentType = this._resolveContentType(channel.contentType); var handler = this.getAutoHandler(contentType); @@ -269,7 +269,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ removeProtocolHandler: - function WCCR_removeProtocolHandler(aProtocol, aURITemplate) { + function (aProtocol, aURITemplate) { var eps = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. getService(Ci.nsIExternalProtocolService); var handlerInfo = eps.getProtocolHandlerInfo(aProtocol); @@ -292,7 +292,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ removeContentHandler: - function WCCR_removeContentHandler(contentType, uri) { + function (contentType, uri) { function notURI(serviceInfo) { return serviceInfo.uri != uri; } @@ -326,7 +326,7 @@ WebContentConverterRegistrar.prototype = { * @returns The resolved contentType value. */ _resolveContentType: - function WCCR__resolveContentType(contentType) { + function (contentType) { if (contentType in this._mappings) return this._mappings[contentType]; return contentType; @@ -339,7 +339,7 @@ WebContentConverterRegistrar.prototype = { }, _checkAndGetURI: - function WCCR_checkAndGetURI(aURIString, aContentWindow) + function (aURIString, aContentWindow) { try { let baseURI = aContentWindow.document.baseURIObject; @@ -382,7 +382,7 @@ WebContentConverterRegistrar.prototype = { * @return true if it is already registered, false otherwise. */ _protocolHandlerRegistered: - function WCCR_protocolHandlerRegistered(aProtocol, aURITemplate) { + function (aProtocol, aURITemplate) { var eps = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. getService(Ci.nsIExternalProtocolService); var handlerInfo = eps.getProtocolHandlerInfo(aProtocol); @@ -401,7 +401,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentHandlerRegistrar */ registerProtocolHandler: - function WCCR_registerProtocolHandler(aProtocol, aURIString, aTitle, aContentWindow) { + function (aProtocol, aURIString, aTitle, aContentWindow) { LOG("registerProtocolHandler(" + aProtocol + "," + aURIString + "," + aTitle + ")"); var uri = this._checkAndGetURI(aURIString, aContentWindow); @@ -455,7 +455,7 @@ WebContentConverterRegistrar.prototype = { protocolInfo: { protocol: aProtocol, uri: uri.spec, name: aTitle }, callback: - function WCCR_addProtocolHandlerButtonCallback(aNotification, aButtonInfo) { + function (aNotification, aButtonInfo) { var protocol = aButtonInfo.protocolInfo.protocol; var uri = aButtonInfo.protocolInfo.uri; var name = aButtonInfo.protocolInfo.name; @@ -496,7 +496,7 @@ WebContentConverterRegistrar.prototype = { * prompt the user to confirm the registration. */ registerContentHandler: - function WCCR_registerContentHandler(aContentType, aURIString, aTitle, aContentWindow) { + function (aContentType, aURIString, aTitle, aContentWindow) { LOG("registerContentHandler(" + aContentType + "," + aURIString + "," + aTitle + ")"); // Check against the type blacklist. @@ -526,7 +526,7 @@ WebContentConverterRegistrar.prototype = { * Returns the browser chrome window in which the content window is in */ _getBrowserWindowForContentWindow: - function WCCR__getBrowserWindowForContentWindow(aContentWindow) { + function (aContentWindow) { return aContentWindow.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIWebNavigation) .QueryInterface(Ci.nsIDocShellTreeItem) @@ -547,7 +547,7 @@ WebContentConverterRegistrar.prototype = { * (i.e. the content window of a frame/iframe). */ _getBrowserForContentWindow: - function WCCR__getBrowserForContentWindow(aBrowserWindow, aContentWindow) { + function (aBrowserWindow, aContentWindow) { // This depends on pseudo APIs of browser.js and tabbrowser.xml aContentWindow = aContentWindow.top; var browsers = aBrowserWindow.gBrowser.browsers; @@ -579,7 +579,7 @@ WebContentConverterRegistrar.prototype = { * @return true if a notification has been appended, false otherwise. */ _appendFeedReaderNotification: - function WCCR__appendFeedReaderNotification(aURI, aName, aNotificationBox) { + function (aURI, aName, aNotificationBox) { var uriSpec = aURI.spec; var notificationValue = "feed reader notification: " + uriSpec; var notificationIcon = aURI.prePath + "/favicon.ico"; @@ -603,7 +603,7 @@ WebContentConverterRegistrar.prototype = { /* static */ callback: - function WCCR__addFeedReaderButtonCallback(aNotification, aButtonInfo) { + function (aNotification, aButtonInfo) { var uri = aButtonInfo.feedReaderInfo.uri; var name = aButtonInfo.feedReaderInfo.name; var outer = aButtonInfo._outer; @@ -645,7 +645,7 @@ WebContentConverterRegistrar.prototype = { * browser.contentHandlers.title0 = Foo 2.0alphr */ _saveContentHandlerToPrefs: - function WCCR__saveContentHandlerToPrefs(contentType, uri, title) { + function (contentType, uri, title) { var ps = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefService); @@ -685,7 +685,7 @@ WebContentConverterRegistrar.prototype = { * @param uri * The uri of the */ - _typeIsRegistered: function WCCR__typeIsRegistered(contentType, uri) { + _typeIsRegistered: function (contentType, uri) { if (!(contentType in this._contentTypes)) return false; @@ -705,7 +705,7 @@ WebContentConverterRegistrar.prototype = { * @returns A contract id to construct a converter to convert between the * contentType and *\/*. */ - _getConverterContractID: function WCCR__getConverterContractID(contentType) { + _getConverterContractID: function (contentType) { const template = "@mozilla.org/streamconv;1?from=%s&to=*/*"; return template.replace(/%s/, contentType); }, @@ -721,7 +721,7 @@ WebContentConverterRegistrar.prototype = { * the human readable name of the web service */ _registerContentHandler: - function WCCR__registerContentHandler(contentType, uri, title) { + function (contentType, uri, title) { this._updateContentTypeHandlerMap(contentType, uri, title); this._saveContentHandlerToPrefs(contentType, uri, title); @@ -754,7 +754,7 @@ WebContentConverterRegistrar.prototype = { * The human readable name of the web service */ _updateContentTypeHandlerMap: - function WCCR__updateContentTypeHandlerMap(contentType, uri, title) { + function (contentType, uri, title) { if (!(contentType in this._contentTypes)) this._contentTypes[contentType] = []; @@ -776,7 +776,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getContentHandlers: - function WCCR_getContentHandlers(contentType, countRef) { + function (contentType, countRef) { countRef.value = 0; if (!(contentType in this._contentTypes)) return []; @@ -790,7 +790,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ resetHandlersForType: - function WCCR_resetHandlersForType(contentType) { + function (contentType) { // currently unused within the tree, so only useful for extensions; previous // impl. was buggy (and even infinite-looped!), so I argue that this is a // definite improvement @@ -833,7 +833,7 @@ WebContentConverterRegistrar.prototype = { * Load the auto handler, content handler and protocol tables from * preferences. */ - _init: function WCCR__init() { + _init: function () { var ps = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefService); @@ -883,7 +883,7 @@ WebContentConverterRegistrar.prototype = { /** * See nsIObserver */ - observe: function WCCR_observe(subject, topic, data) { + observe: function (subject, topic, data) { var os = Cc["@mozilla.org/observer-service;1"]. getService(Ci.nsIObserverService); @@ -901,7 +901,7 @@ WebContentConverterRegistrar.prototype = { /** * See nsIFactory */ - createInstance: function WCCR_createInstance(outer, iid) { + createInstance: function (outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return this.QueryInterface(iid); diff --git a/application/palemoon/components/feeds/content/subscribe.js b/application/palemoon/components/feeds/content/subscribe.js index ab2eac4ebc..7cf7a9e198 100644 --- a/application/palemoon/components/feeds/content/subscribe.js +++ b/application/palemoon/components/feeds/content/subscribe.js @@ -9,15 +9,15 @@ var SubscribeHandler = { */ _feedWriter: null, - init: function SH_init() { + init: function () { this._feedWriter = new BrowserFeedWriter(); }, - writeContent: function SH_writeContent() { + writeContent: function () { this._feedWriter.writeContent(); }, - uninit: function SH_uninit() { + uninit: function () { this._feedWriter.close(); } }; From f5a1756738b39c816d675f3b59d68c2a984ec6a2 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:49:24 -0600 Subject: [PATCH 09/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/fuel. --- .../components/fuel/fuelApplication.js | 82 +++++++++---------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/application/palemoon/components/fuel/fuelApplication.js b/application/palemoon/components/fuel/fuelApplication.js index bc3a091eaa..be0b23667d 100644 --- a/application/palemoon/components/fuel/fuelApplication.js +++ b/application/palemoon/components/fuel/fuelApplication.js @@ -49,14 +49,14 @@ var Utilities = { return this.windowMediator; }, - makeURI: function fuelutil_makeURI(aSpec) { + makeURI: function (aSpec) { if (!aSpec) return null; var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService); return ios.newURI(aSpec, null, null); }, - free: function fuelutil_free() { + free: function () { delete this.bookmarks; delete this.bookmarksObserver; delete this.annotations; @@ -103,12 +103,12 @@ Window.prototype = { * Helper used to setup event handlers on the XBL element. Note that the events * are actually dispatched to tabs, so we capture them. */ - _watch: function win_watch(aType) { + _watch: function (aType) { this._tabbrowser.tabContainer.addEventListener(aType, this, /* useCapture = */ true); }, - handleEvent: function win_handleEvent(aEvent) { + handleEvent: function (aEvent) { this._events.dispatch(aEvent.type, getBrowserTab(this, aEvent.originalTarget.linkedBrowser)); }, @@ -124,7 +124,7 @@ Window.prototype = { return getBrowserTab(this, this._tabbrowser.selectedBrowser); }, - open: function win_open(aURI) { + open: function (aURI) { return getBrowserTab(this, this._tabbrowser.addTab(aURI.spec).linkedBrowser); }, @@ -192,12 +192,12 @@ BrowserTab.prototype = { /* * Helper used to setup event handlers on the XBL element */ - _watch: function bt_watch(aType) { + _watch: function (aType) { this._browser.addEventListener(aType, this, /* useCapture = */ true); }, - handleEvent: function bt_handleEvent(aEvent) { + handleEvent: function (aEvent) { if (aEvent.type == "load") { if (!(aEvent.originalTarget instanceof Ci.nsIDOMDocument)) return; @@ -211,29 +211,29 @@ BrowserTab.prototype = { /* * Helper used to determine the index offset of the browsertab */ - _getTab: function bt_gettab() { + _getTab: function () { var tabs = this._tabbrowser.tabs; return tabs[this.index] || null; }, - load: function bt_load(aURI) { + load: function (aURI) { this._browser.loadURI(aURI.spec, null, null); }, - focus: function bt_focus() { + focus: function () { this._tabbrowser.selectedTab = this._getTab(); this._tabbrowser.focus(); }, - close: function bt_close() { + close: function () { this._tabbrowser.removeTab(this._getTab()); }, - moveBefore: function bt_movebefore(aBefore) { + moveBefore: function (aBefore) { this._tabbrowser.moveTabTo(this._getTab(), aBefore.index); }, - moveToEnd: function bt_moveend() { + moveToEnd: function () { this._tabbrowser.moveTabTo(this._getTab(), this._tabbrowser.browsers.length); }, @@ -252,21 +252,21 @@ Annotations.prototype = { return Utilities.annotations.getItemAnnotationNames(this._id); }, - has: function ann_has(aName) { + has: function (aName) { return Utilities.annotations.itemHasAnnotation(this._id, aName); }, - get: function ann_get(aName) { + get: function (aName) { if (this.has(aName)) return Utilities.annotations.getItemAnnotation(this._id, aName); return null; }, - set: function ann_set(aName, aValue, aExpiration) { + set: function (aName, aValue, aExpiration) { Utilities.annotations.setItemAnnotation(this._id, aName, aValue, 0, aExpiration); }, - remove: function ann_remove(aName) { + remove: function (aName) { if (aName) Utilities.annotations.removeItemAnnotation(this._id, aName); }, @@ -308,33 +308,33 @@ BookmarksObserver.prototype = { onEndUpdateBatch: function () {}, onItemVisited: function () {}, - onItemAdded: function bo_onItemAdded(aId, aFolder, aIndex, aItemType, aURI) { + onItemAdded: function (aId, aFolder, aIndex, aItemType, aURI) { this._rootEvents.dispatch("add", aId); this._dispatchToEvents("addchild", aId, this._folderEventsDict[aFolder]); }, - onItemRemoved: function bo_onItemRemoved(aId, aFolder, aIndex) { + onItemRemoved: function (aId, aFolder, aIndex) { this._rootEvents.dispatch("remove", aId); this._dispatchToEvents("remove", aId, this._eventsDict[aId]); this._dispatchToEvents("removechild", aId, this._folderEventsDict[aFolder]); }, - onItemChanged: function bo_onItemChanged(aId, aProperty, aIsAnnotationProperty, aValue) { + onItemChanged: function (aId, aProperty, aIsAnnotationProperty, aValue) { this._rootEvents.dispatch("change", aProperty); this._dispatchToEvents("change", aProperty, this._eventsDict[aId]); }, - onItemMoved: function bo_onItemMoved(aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { + onItemMoved: function (aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { this._dispatchToEvents("move", aId, this._eventsDict[aId]); }, - _dispatchToEvents: function bo_dispatchToEvents(aEvent, aData, aEvents) { + _dispatchToEvents: function (aEvent, aData, aEvents) { if (aEvents) { aEvents.dispatch(aEvent, aData); } }, - _addListenerToDict: function bo_addListenerToDict(aId, aEvent, aListener, aDict) { + _addListenerToDict: function (aId, aEvent, aListener, aDict) { var events = aDict[aId]; if (!events) { events = new Events(); @@ -343,7 +343,7 @@ BookmarksObserver.prototype = { events.addListener(aEvent, aListener); }, - _removeListenerFromDict: function bo_removeListenerFromDict(aId, aEvent, aListener, aDict) { + _removeListenerFromDict: function (aId, aEvent, aListener, aDict) { var events = aDict[aId]; if (!events) { return; @@ -354,27 +354,27 @@ BookmarksObserver.prototype = { } }, - addListener: function bo_addListener(aId, aEvent, aListener) { + addListener: function (aId, aEvent, aListener) { this._addListenerToDict(aId, aEvent, aListener, this._eventsDict); }, - removeListener: function bo_removeListener(aId, aEvent, aListener) { + removeListener: function (aId, aEvent, aListener) { this._removeListenerFromDict(aId, aEvent, aListener, this._eventsDict); }, - addFolderListener: function addFolderListener(aId, aEvent, aListener) { + addFolderListener: function (aId, aEvent, aListener) { this._addListenerToDict(aId, aEvent, aListener, this._folderEventsDict); }, - removeFolderListener: function removeFolderListener(aId, aEvent, aListener) { + removeFolderListener: function (aId, aEvent, aListener) { this._removeListenerFromDict(aId, aEvent, aListener, this._folderEventsDict); }, - addRootListener: function addRootListener(aEvent, aListener) { + addRootListener: function (aEvent, aListener) { this._rootEvents.addListener(aEvent, aListener); }, - removeRootListener: function removeRootListener(aEvent, aListener) { + removeRootListener: function (aEvent, aListener) { this._rootEvents.removeListener(aEvent, aListener); }, @@ -408,10 +408,10 @@ function Bookmark(aId, aParent, aType) { // Our _events object forwards to bookmarksObserver. var self = this; this._events = { - addListener: function bookmarkevents_al(aEvent, aListener) { + addListener: function (aEvent, aListener) { Utilities.bookmarksObserver.addListener(self._id, aEvent, aListener); }, - removeListener: function bookmarkevents_rl(aEvent, aListener) { + removeListener: function (aEvent, aListener) { Utilities.bookmarksObserver.removeListener(self._id, aEvent, aListener); }, QueryInterface: XPCOMUtils.generateQI([Ci.extIEvents]) @@ -479,7 +479,7 @@ Bookmark.prototype = { return this._events; }, - remove : function bm_remove() { + remove : function () { Utilities.bookmarks.removeItem(this._id); }, @@ -528,7 +528,7 @@ function BookmarkFolder(aId, aParent) { var self = this; this._events = { - addListener: function bmfevents_al(aEvent, aListener) { + addListener: function (aEvent, aListener) { if (self._parent) { if (/child$/.test(aEvent)) { Utilities.bookmarksObserver.addFolderListener(self._id, aEvent, aListener); @@ -541,7 +541,7 @@ function BookmarkFolder(aId, aParent) { Utilities.bookmarksObserver.addRootListener(aEvent, aListener); } }, - removeListener: function bmfevents_rl(aEvent, aListener) { + removeListener: function (aEvent, aListener) { if (self._parent) { if (/child$/.test(aEvent)) { Utilities.bookmarksObserver.removeFolderListener(self._id, aEvent, aListener); @@ -633,25 +633,25 @@ BookmarkFolder.prototype = { return items; }, - addBookmark: function bmf_addbm(aTitle, aUri) { + addBookmark: function (aTitle, aUri) { var newBookmarkID = Utilities.bookmarks.insertBookmark(this._id, aUri, Utilities.bookmarks.DEFAULT_INDEX, aTitle); var newBookmark = new Bookmark(newBookmarkID, this, "bookmark"); return newBookmark; }, - addSeparator: function bmf_addsep() { + addSeparator: function () { var newBookmarkID = Utilities.bookmarks.insertSeparator(this._id, Utilities.bookmarks.DEFAULT_INDEX); var newBookmark = new Bookmark(newBookmarkID, this, "separator"); return newBookmark; }, - addFolder: function bmf_addfolder(aTitle) { + addFolder: function (aTitle) { var newFolderID = Utilities.bookmarks.createFolder(this._id, aTitle, Utilities.bookmarks.DEFAULT_INDEX); var newFolder = new BookmarkFolder(newFolderID, this); return newFolder; }, - remove: function bmf_remove() { + remove: function () { Utilities.bookmarks.removeItem(this._id); }, @@ -662,7 +662,7 @@ BookmarkFolder.prototype = { onItemRemoved : function () {}, onItemChanged : function () {}, - onItemMoved: function bf_onItemMoved(aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { + onItemMoved: function (aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { if (this._id == aId) { this._parent = new BookmarkFolder(aNewParent, Utilities.bookmarks.getFolderIdForItem(aNewParent)); } @@ -718,7 +718,7 @@ BookmarkRoots.prototype = { // See bug 386535. var gSingleton = null; var ApplicationFactory = { - createInstance: function af_ci(aOuter, aIID) { + createInstance: function (aOuter, aIID) { if (aOuter != null) throw Components.results.NS_ERROR_NO_AGGREGATION; From 3d1be0ea0fd0e331a0a3022dab78293b72dde645 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:50:12 -0600 Subject: [PATCH 10/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/newtab. --- .../palemoon/components/newtab/cells.js | 6 ++-- .../palemoon/components/newtab/drag.js | 10 +++---- .../components/newtab/dragDataHelper.js | 2 +- .../palemoon/components/newtab/drop.js | 16 +++++----- .../palemoon/components/newtab/dropPreview.js | 16 +++++----- .../components/newtab/dropTargetShim.js | 2 +- .../palemoon/components/newtab/grid.js | 14 ++++----- .../palemoon/components/newtab/page.js | 12 ++++---- .../palemoon/components/newtab/sites.js | 30 +++++++++---------- .../components/newtab/transformations.js | 30 +++++++++---------- .../palemoon/components/newtab/undo.js | 12 ++++---- .../palemoon/components/newtab/updater.js | 14 ++++----- 12 files changed, 82 insertions(+), 82 deletions(-) diff --git a/application/palemoon/components/newtab/cells.js b/application/palemoon/components/newtab/cells.js index 47d4ef52d7..7319175154 100644 --- a/application/palemoon/components/newtab/cells.js +++ b/application/palemoon/components/newtab/cells.js @@ -81,7 +81,7 @@ Cell.prototype = { * Checks whether the cell contains a pinned site. * @return Whether the cell contains a pinned site. */ - containsPinnedSite: function Cell_containsPinnedSite() { + containsPinnedSite: function () { let site = this.site; return site && site.isPinned(); }, @@ -90,14 +90,14 @@ Cell.prototype = { * Checks whether the cell contains a site (is empty). * @return Whether the cell is empty. */ - isEmpty: function Cell_isEmpty() { + isEmpty: function () { return !this.site; }, /** * Handles all cell events. */ - handleEvent: function Cell_handleEvent(aEvent) { + handleEvent: function (aEvent) { // We're not responding to external drag/drop events // when our parent window is in private browsing mode. if (inPrivateBrowsingMode() && !gDrag.draggedSite) diff --git a/application/palemoon/components/newtab/drag.js b/application/palemoon/components/newtab/drag.js index e3928ebd0b..ac4f09abfc 100644 --- a/application/palemoon/components/newtab/drag.js +++ b/application/palemoon/components/newtab/drag.js @@ -33,7 +33,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragstart' event. */ - start: function Drag_start(aSite, aEvent) { + start: function (aSite, aEvent) { this._draggedSite = aSite; // Mark nodes as being dragged. @@ -66,7 +66,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'drag' event. */ - drag: function Drag_drag(aSite, aEvent) { + drag: function (aSite, aEvent) { // Get the viewport size. let {clientWidth, clientHeight} = document.documentElement; @@ -90,7 +90,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragend' event. */ - end: function Drag_end(aSite, aEvent) { + end: function (aSite, aEvent) { let nodes = gGrid.node.querySelectorAll("[dragged]") for (let i = 0; i < nodes.length; i++) nodes[i].removeAttribute("dragged"); @@ -106,7 +106,7 @@ var gDrag = { * @param aEvent The drag event to check. * @return Whether we should handle this drag and drop operation. */ - isValid: function Drag_isValid(aEvent) { + isValid: function (aEvent) { let link = gDragDataHelper.getLinkFromDragEvent(aEvent); // Check that the drag data is non-empty. @@ -125,7 +125,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragstart' event. */ - _setDragData: function Drag_setDragData(aSite, aEvent) { + _setDragData: function (aSite, aEvent) { let {url, title} = aSite; let dt = aEvent.dataTransfer; diff --git a/application/palemoon/components/newtab/dragDataHelper.js b/application/palemoon/components/newtab/dragDataHelper.js index 675ff26711..c8a70f76da 100644 --- a/application/palemoon/components/newtab/dragDataHelper.js +++ b/application/palemoon/components/newtab/dragDataHelper.js @@ -9,7 +9,7 @@ var gDragDataHelper = { return "text/x-moz-url"; }, - getLinkFromDragEvent: function DragDataHelper_getLinkFromDragEvent(aEvent) { + getLinkFromDragEvent: function (aEvent) { let dt = aEvent.dataTransfer; if (!dt || !dt.types.includes(this.mimeType)) { return null; diff --git a/application/palemoon/components/newtab/drop.js b/application/palemoon/components/newtab/drop.js index 748652455c..d9601866b6 100644 --- a/application/palemoon/components/newtab/drop.js +++ b/application/palemoon/components/newtab/drop.js @@ -21,7 +21,7 @@ var gDrop = { * Handles the 'dragenter' event. * @param aCell The drop target cell. */ - enter: function Drop_enter(aCell) { + enter: function (aCell) { this._delayedRearrange(aCell); }, @@ -30,7 +30,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - exit: function Drop_exit(aCell, aEvent) { + exit: function (aCell, aEvent) { if (aEvent.dataTransfer && !aEvent.dataTransfer.mozUserCancelled) { this._delayedRearrange(); } else { @@ -45,7 +45,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - drop: function Drop_drop(aCell, aEvent) { + drop: function (aCell, aEvent) { // The cell that is the drop target could contain a pinned site. We need // to find out where that site has gone and re-pin it there. if (aCell.containsPinnedSite()) @@ -64,7 +64,7 @@ var gDrop = { * Re-pins all pinned sites in their (new) positions. * @param aCell The drop target cell. */ - _repinSitesAfterDrop: function Drop_repinSitesAfterDrop(aCell) { + _repinSitesAfterDrop: function (aCell) { let sites = gDropPreview.rearrange(aCell); // Filter out pinned sites. @@ -81,7 +81,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - _pinDraggedSite: function Drop_pinDraggedSite(aCell, aEvent) { + _pinDraggedSite: function (aCell, aEvent) { let index = aCell.index; let draggedSite = gDrag.draggedSite; @@ -105,7 +105,7 @@ var gDrop = { * Time a rearrange with a little delay. * @param aCell The drop target cell. */ - _delayedRearrange: function Drop_delayedRearrange(aCell) { + _delayedRearrange: function (aCell) { // The last drop target didn't change so there's no need to re-arrange. if (this._lastDropTarget == aCell) return; @@ -127,7 +127,7 @@ var gDrop = { /** * Cancels a timed rearrange, if any. */ - _cancelDelayedArrange: function Drop_cancelDelayedArrange() { + _cancelDelayedArrange: function () { if (this._rearrangeTimeout) { clearTimeout(this._rearrangeTimeout); this._rearrangeTimeout = null; @@ -138,7 +138,7 @@ var gDrop = { * Rearrange all sites in the grid depending on the current drop target. * @param aCell The drop target cell. */ - _rearrange: function Drop_rearrange(aCell) { + _rearrange: function (aCell) { let sites = gGrid.sites; // We need to rearrange the grid only if there's a current drop target. diff --git a/application/palemoon/components/newtab/dropPreview.js b/application/palemoon/components/newtab/dropPreview.js index fd7587a35e..9baa9410db 100644 --- a/application/palemoon/components/newtab/dropPreview.js +++ b/application/palemoon/components/newtab/dropPreview.js @@ -16,7 +16,7 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The re-arranged array of sites. */ - rearrange: function DropPreview_rearrange(aCell) { + rearrange: function (aCell) { let sites = gGrid.sites; // Insert the dragged site into the current grid. @@ -34,7 +34,7 @@ var gDropPreview = { * @param aSites The array of sites to insert into. * @param aCell The drop target cell. */ - _insertDraggedSite: function DropPreview_insertDraggedSite(aSites, aCell) { + _insertDraggedSite: function (aSites, aCell) { let dropIndex = aCell.index; let draggedSite = gDrag.draggedSite; @@ -61,7 +61,7 @@ var gDropPreview = { * @param aCell The drop target cell. */ _repositionPinnedSites: - function DropPreview_repositionPinnedSites(aSites, aCell) { + function (aSites, aCell) { // Collect all pinned sites. let pinnedSites = this._filterPinnedSites(aSites, aCell); @@ -85,7 +85,7 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The filtered array of sites. */ - _filterPinnedSites: function DropPreview_filterPinnedSites(aSites, aCell) { + _filterPinnedSites: function (aSites, aCell) { let draggedSite = gDrag.draggedSite; // When dropping on a cell that contains a pinned site make sure that all @@ -109,7 +109,7 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The range of pinned cells. */ - _getPinnedRange: function DropPreview_getPinnedRange(aCell) { + _getPinnedRange: function (aCell) { let dropIndex = aCell.index; let range = {start: dropIndex, end: dropIndex}; @@ -139,7 +139,7 @@ var gDropPreview = { * @return Whether there is an overflowed pinned cell. */ _hasOverflowedPinnedSite: - function DropPreview_hasOverflowedPinnedSite(aSites, aCell) { + function (aSites, aCell) { // If the drop target isn't pinned there's no way a pinned site has been // pushed out of the grid so we can just exit here. @@ -166,7 +166,7 @@ var gDropPreview = { * @param aCell The drop target cell. */ _repositionOverflowedPinnedSite: - function DropPreview_repositionOverflowedPinnedSite(aSites, aCell) { + function (aSites, aCell) { // Try to find a lower-priority cell (empty or containing an unpinned site). let index = this._indexOfLowerPrioritySite(aSites, aCell); @@ -197,7 +197,7 @@ var gDropPreview = { * @return The cell's index. */ _indexOfLowerPrioritySite: - function DropPreview_indexOfLowerPrioritySite(aSites, aCell) { + function (aSites, aCell) { let cells = gGrid.cells; let dropIndex = aCell.index; diff --git a/application/palemoon/components/newtab/dropTargetShim.js b/application/palemoon/components/newtab/dropTargetShim.js index 57a97fa00a..d3998cd16b 100644 --- a/application/palemoon/components/newtab/dropTargetShim.js +++ b/application/palemoon/components/newtab/dropTargetShim.js @@ -204,7 +204,7 @@ var gDropTargetShim = { * Gets the positions of all cell nodes. * @return The (cached) cell positions. */ - _getCellPositions: function DropTargetShim_getCellPositions() { + _getCellPositions: function () { if (this._cellPositions) return this._cellPositions; diff --git a/application/palemoon/components/newtab/grid.js b/application/palemoon/components/newtab/grid.js index e63ea54a6d..fcb466d8aa 100644 --- a/application/palemoon/components/newtab/grid.js +++ b/application/palemoon/components/newtab/grid.js @@ -48,7 +48,7 @@ var gGrid = { * Initializes the grid. * @param aSelector The query selector of the grid. */ - init: function Grid_init() { + init: function () { this._node = document.getElementById("newtab-grid"); this._gridDefaultContent = this._node.lastChild; this._createSiteFragment(); @@ -65,7 +65,7 @@ var gGrid = { * @param aCell The cell that will contain the new site. * @return The newly created site. */ - createSite: function Grid_createSite(aLink, aCell) { + createSite: function (aLink, aCell) { let node = aCell.node; node.appendChild(this._siteFragment.cloneNode(true)); return new Site(node.firstElementChild, aLink); @@ -74,21 +74,21 @@ var gGrid = { /** * Handles all grid events. */ - handleEvent: function Grid_handleEvent(aEvent) { + handleEvent: function (aEvent) { // Any specific events should go here. }, /** * Locks the grid to block all pointer events. */ - lock: function Grid_lock() { + lock: function () { this.node.setAttribute("locked", "true"); }, /** * Unlocks the grid to allow all pointer events. */ - unlock: function Grid_unlock() { + unlock: function () { this.node.removeAttribute("locked"); }, @@ -142,7 +142,7 @@ var gGrid = { /** * Creates the DOM fragment that is re-used when creating sites. */ - _createSiteFragment: function Grid_createSiteFragment() { + _createSiteFragment: function () { let site = document.createElementNS(HTML_NAMESPACE, "div"); site.classList.add("newtab-site"); site.setAttribute("draggable", "true"); @@ -167,7 +167,7 @@ var gGrid = { * Test a tile at a given position for being pinned or history * @param position Position in sites array */ - _isHistoricalTile: function Grid_isHistoricalTile(aPos) { + _isHistoricalTile: function (aPos) { let site = this.sites[aPos]; return site && (site.isPinned() || site.link && site.link.type == "history"); } diff --git a/application/palemoon/components/newtab/page.js b/application/palemoon/components/newtab/page.js index 34387fd440..fe9fd34556 100644 --- a/application/palemoon/components/newtab/page.js +++ b/application/palemoon/components/newtab/page.js @@ -15,7 +15,7 @@ var gPage = { /** * Initializes the page. */ - init: function Page_init() { + init: function () { // Add ourselves to the list of pages to receive notifications. gAllPages.register(this); @@ -42,7 +42,7 @@ var gPage = { /** * Listens for notifications specific to this page. */ - observe: function Page_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { if (aTopic == "nsPref:changed") { let enabled = gAllPages.enabled; this._updateAttributes(enabled); @@ -102,7 +102,7 @@ var gPage = { * Internally initializes the page. This runs only when/if the feature * is/gets enabled. */ - _init: function Page_init() { + _init: function () { if (this._initialized) return; @@ -136,7 +136,7 @@ var gPage = { * Updates the 'page-disabled' attributes of the respective DOM nodes. * @param aValue Whether the New Tab Page is enabled or not. */ - _updateAttributes: function Page_updateAttributes(aValue) { + _updateAttributes: function (aValue) { // Set the nodes' states. let nodeSelector = "#newtab-grid, #searchContainer"; for (let node of document.querySelectorAll(nodeSelector)) { @@ -159,14 +159,14 @@ var gPage = { /** * Handles unload event */ - _handleUnloadEvent: function Page_handleUnloadEvent() { + _handleUnloadEvent: function () { gAllPages.unregister(this); }, /** * Handles all page events. */ - handleEvent: function Page_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "load": this.onPageVisibleAndLoaded(); diff --git a/application/palemoon/components/newtab/sites.js b/application/palemoon/components/newtab/sites.js index cb5675238c..c2ea001972 100644 --- a/application/palemoon/components/newtab/sites.js +++ b/application/palemoon/components/newtab/sites.js @@ -55,7 +55,7 @@ Site.prototype = { * @param aIndex The pinned index (optional). * @return true if link changed type after pin */ - pin: function Site_pin(aIndex) { + pin: function (aIndex) { if (typeof aIndex == "undefined") aIndex = this.cell.index; @@ -71,7 +71,7 @@ Site.prototype = { /** * Unpins the site and calls the given callback when done. */ - unpin: function Site_unpin() { + unpin: function () { if (this.isPinned()) { this._updateAttributes(false); gPinnedLinks.unpin(this._link); @@ -83,7 +83,7 @@ Site.prototype = { * Checks whether this site is pinned. * @return Whether this site is pinned. */ - isPinned: function Site_isPinned() { + isPinned: function () { return gPinnedLinks.isPinned(this._link); }, @@ -91,7 +91,7 @@ Site.prototype = { * Blocks the site (removes it from the grid) and calls the given callback * when done. */ - block: function Site_block() { + block: function () { if (!gBlockedLinks.isBlocked(this._link)) { gUndoDialog.show(this); gBlockedLinks.block(this._link); @@ -104,7 +104,7 @@ Site.prototype = { * @param aSelector The query selector. * @return The DOM node we found. */ - _querySelector: function Site_querySelector(aSelector) { + _querySelector: function (aSelector) { return this.node.querySelector(aSelector); }, @@ -139,7 +139,7 @@ Site.prototype = { /** * Checks for and modifies link at campaign end time */ - _checkLinkEndTime: function Site_checkLinkEndTime() { + _checkLinkEndTime: function () { if (this.link.endTime && this.link.endTime < Date.now()) { let oldUrl = this.url; // chop off the path part from url @@ -155,7 +155,7 @@ Site.prototype = { /** * Renders the site's data (fills the HTML fragment). */ - _render: function Site_render() { + _render: function () { // first check for end time, as it may modify the link this._checkLinkEndTime(); // setup display variables @@ -189,7 +189,7 @@ Site.prototype = { * Since the newtab may be preloaded long before it's displayed, * check for changed conditions and re-render if needed */ - onFirstVisible: function Site_onFirstVisible() { + onFirstVisible: function () { if (this.link.endTime && this.link.endTime < Date.now()) { // site needs to change landing url and background image this._render(); @@ -203,7 +203,7 @@ Site.prototype = { * Captures the site's thumbnail in the background, but only if there's no * existing thumbnail and the page allows background captures. */ - captureIfMissing: function Site_captureIfMissing() { + captureIfMissing: function () { if (!document.hidden && !this.link.imageURI) { BackgroundPageThumbs.captureIfMissing(this.url); } @@ -212,7 +212,7 @@ Site.prototype = { /** * Refreshes the thumbnail for the site. */ - refreshThumbnail: function Site_refreshThumbnail() { + refreshThumbnail: function () { let link = this.link; let thumbnail = this._querySelector(".newtab-thumbnail.thumbnail"); @@ -249,7 +249,7 @@ Site.prototype = { /** * Adds event handlers for the site and its buttons. */ - _addEventHandlers: function Site_addEventHandlers() { + _addEventHandlers: function () { // Register drag-and-drop event handlers. this._node.addEventListener("dragstart", this, false); this._node.addEventListener("dragend", this, false); @@ -259,7 +259,7 @@ Site.prototype = { /** * Speculatively opens a connection to the current site. */ - _speculativeConnect: function Site_speculativeConnect() { + _speculativeConnect: function () { let sc = Services.io.QueryInterface(Ci.nsISpeculativeConnect); let uri = Services.io.newURI(this.url, null, null); try { @@ -272,7 +272,7 @@ Site.prototype = { /** * Record interaction with site using telemetry. */ - _recordSiteClicked: function Site_recordSiteClicked(aIndex) { + _recordSiteClicked: function (aIndex) { if (Services.prefs.prefHasUserValue("browser.newtabpage.rows") || Services.prefs.prefHasUserValue("browser.newtabpage.columns") || aIndex > 8) { @@ -297,7 +297,7 @@ Site.prototype = { /** * Handles site click events. */ - onClick: function Site_onClick(aEvent) { + onClick: function (aEvent) { let action; let pinned = this.isPinned(); let tileIndex = this.cell.index; @@ -336,7 +336,7 @@ Site.prototype = { /** * Handles all site events. */ - handleEvent: function Site_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "mouseover": this._node.removeEventListener("mouseover", this, false); diff --git a/application/palemoon/components/newtab/transformations.js b/application/palemoon/components/newtab/transformations.js index f7db0ad84f..e9dafcd334 100644 --- a/application/palemoon/components/newtab/transformations.js +++ b/application/palemoon/components/newtab/transformations.js @@ -33,7 +33,7 @@ var gTransformation = { * @param aNode The DOM node. * @return A Rect instance with the position. */ - getNodePosition: function Transformation_getNodePosition(aNode) { + getNodePosition: function (aNode) { let {left, top, width, height} = aNode.getBoundingClientRect(); return new Rect(left + scrollX, top + scrollY, width, height); }, @@ -43,7 +43,7 @@ var gTransformation = { * @param aNode The node to fade. * @param aCallback The callback to call when finished. */ - fadeNodeIn: function Transformation_fadeNodeIn(aNode, aCallback) { + fadeNodeIn: function (aNode, aCallback) { this._setNodeOpacity(aNode, 1, function () { // Clear the style property. aNode.style.opacity = ""; @@ -58,7 +58,7 @@ var gTransformation = { * @param aNode The node to fade. * @param aCallback The callback to call when finished. */ - fadeNodeOut: function Transformation_fadeNodeOut(aNode, aCallback) { + fadeNodeOut: function (aNode, aCallback) { this._setNodeOpacity(aNode, 0, aCallback); }, @@ -67,7 +67,7 @@ var gTransformation = { * @param aSite The site to fade. * @param aCallback The callback to call when finished. */ - showSite: function Transformation_showSite(aSite, aCallback) { + showSite: function (aSite, aCallback) { this.fadeNodeIn(aSite.node, aCallback); }, @@ -76,7 +76,7 @@ var gTransformation = { * @param aSite The site to fade. * @param aCallback The callback to call when finished. */ - hideSite: function Transformation_hideSite(aSite, aCallback) { + hideSite: function (aSite, aCallback) { this.fadeNodeOut(aSite.node, aCallback); }, @@ -85,7 +85,7 @@ var gTransformation = { * @param aSite The site to re-position. * @param aPosition The desired position for the given site. */ - setSitePosition: function Transformation_setSitePosition(aSite, aPosition) { + setSitePosition: function (aSite, aPosition) { let style = aSite.node.style; let {top, left} = aPosition; @@ -97,7 +97,7 @@ var gTransformation = { * Freezes a site in its current position by positioning it absolute. * @param aSite The site to freeze. */ - freezeSitePosition: function Transformation_freezeSitePosition(aSite) { + freezeSitePosition: function (aSite) { if (this._isFrozen(aSite)) return; @@ -114,7 +114,7 @@ var gTransformation = { * Unfreezes a site by removing its absolute positioning. * @param aSite The site to unfreeze. */ - unfreezeSitePosition: function Transformation_unfreezeSitePosition(aSite) { + unfreezeSitePosition: function (aSite) { if (!this._isFrozen(aSite)) return; @@ -131,7 +131,7 @@ var gTransformation = { * unfreeze - unfreeze the site after sliding * callback - the callback to call when finished */ - slideSiteTo: function Transformation_slideSiteTo(aSite, aTarget, aOptions) { + slideSiteTo: function (aSite, aTarget, aOptions) { let currentPosition = this.getNodePosition(aSite.node); let targetPosition = this.getNodePosition(aTarget.node) let callback = aOptions && aOptions.callback; @@ -168,7 +168,7 @@ var gTransformation = { * unfreeze - unfreeze the site after rearranging * callback - the callback to call when finished */ - rearrangeSites: function Transformation_rearrangeSites(aSites, aOptions) { + rearrangeSites: function (aSites, aOptions) { let batch = []; let cells = gGrid.cells; let callback = aOptions && aOptions.callback; @@ -206,7 +206,7 @@ var gTransformation = { * @param aCallback The callback to call when finished. */ _whenTransitionEnded: - function Transformation_whenTransitionEnded(aNode, aProperties, aCallback) { + function (aNode, aProperties, aCallback) { let props = new Set(aProperties); aNode.addEventListener("transitionend", function onEnd(e) { @@ -222,7 +222,7 @@ var gTransformation = { * @param aNode The node to get the opacity value from. * @return The node's opacity value. */ - _getNodeOpacity: function Transformation_getNodeOpacity(aNode) { + _getNodeOpacity: function (aNode) { let cstyle = window.getComputedStyle(aNode, null); return cstyle.getPropertyValue("opacity"); }, @@ -234,7 +234,7 @@ var gTransformation = { * @param aCallback The callback to call when finished. */ _setNodeOpacity: - function Transformation_setNodeOpacity(aNode, aOpacity, aCallback) { + function (aNode, aOpacity, aCallback) { if (this._getNodeOpacity(aNode) == aOpacity) { if (aCallback) @@ -254,7 +254,7 @@ var gTransformation = { * @param aIndex The target cell's index. * @param aOptions Options that are directly passed to slideSiteTo(). */ - _moveSite: function Transformation_moveSite(aSite, aIndex, aOptions) { + _moveSite: function (aSite, aIndex, aOptions) { this.freezeSitePosition(aSite); this.slideSiteTo(aSite, gGrid.cells[aIndex], aOptions); }, @@ -264,7 +264,7 @@ var gTransformation = { * @param aSite The site to check. * @return Whether the given site is frozen. */ - _isFrozen: function Transformation_isFrozen(aSite) { + _isFrozen: function (aSite) { return aSite.node.hasAttribute("frozen"); } }; diff --git a/application/palemoon/components/newtab/undo.js b/application/palemoon/components/newtab/undo.js index b856914d2c..6649e1cad5 100644 --- a/application/palemoon/components/newtab/undo.js +++ b/application/palemoon/components/newtab/undo.js @@ -22,7 +22,7 @@ var gUndoDialog = { /** * Initializes the undo dialog. */ - init: function UndoDialog_init() { + init: function () { this._undoContainer = document.getElementById("newtab-undo-container"); this._undoContainer.addEventListener("click", this, false); this._undoButton = document.getElementById("newtab-undo-button"); @@ -34,7 +34,7 @@ var gUndoDialog = { * Shows the undo dialog. * @param aSite The site that just got removed. */ - show: function UndoDialog_show(aSite) { + show: function (aSite) { if (this._undoData) clearTimeout(this._undoData.timeout); @@ -54,7 +54,7 @@ var gUndoDialog = { /** * Hides the undo dialog. */ - hide: function UndoDialog_hide() { + hide: function () { if (!this._undoData) return; @@ -70,7 +70,7 @@ var gUndoDialog = { * The undo dialog event handler. * @param aEvent The event to handle. */ - handleEvent: function UndoDialog_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.target.id) { case "newtab-undo-button": this._undo(); @@ -87,7 +87,7 @@ var gUndoDialog = { /** * Undo the last blocked site. */ - _undo: function UndoDialog_undo() { + _undo: function () { if (!this._undoData) return; @@ -105,7 +105,7 @@ var gUndoDialog = { /** * Undo all blocked sites. */ - _undoAll: function UndoDialog_undoAll() { + _undoAll: function () { NewTabUtils.undoAll(function() { gUpdater.updateGrid(); this.hide(); diff --git a/application/palemoon/components/newtab/updater.js b/application/palemoon/components/newtab/updater.js index 2bab74d708..6af0dfa6ae 100644 --- a/application/palemoon/components/newtab/updater.js +++ b/application/palemoon/components/newtab/updater.js @@ -14,7 +14,7 @@ var gUpdater = { * This removes old, moves existing and creates new sites to fill gaps. * @param aCallback The callback to call when finished. */ - updateGrid: function Updater_updateGrid(aCallback) { + updateGrid: function (aCallback) { let links = gLinks.getLinks().slice(0, gGrid.cells.length); // Find all sites that remain in the grid. @@ -50,7 +50,7 @@ var gUpdater = { * @param aLinks The array of links to find sites for. * @return Array of sites mapped to the given links (can contain null values). */ - _findRemainingSites: function Updater_findRemainingSites(aLinks) { + _findRemainingSites: function (aLinks) { let map = {}; // Create a map to easily retrieve the site for a given URL. @@ -69,7 +69,7 @@ var gUpdater = { * Freezes the given sites' positions. * @param aSites The array of sites to freeze. */ - _freezeSitePositions: function Updater_freezeSitePositions(aSites) { + _freezeSitePositions: function (aSites) { aSites.forEach(function (aSite) { if (aSite) gTransformation.freezeSitePosition(aSite); @@ -80,7 +80,7 @@ var gUpdater = { * Moves the given sites' DOM nodes to their new positions. * @param aSites The array of sites to move. */ - _moveSiteNodes: function Updater_moveSiteNodes(aSites) { + _moveSiteNodes: function (aSites) { let cells = gGrid.cells; // Truncate the given array of sites to not have more sites than cells. @@ -112,7 +112,7 @@ var gUpdater = { * @param aSites The array of sites to re-arrange. * @param aCallback The callback to call when finished. */ - _rearrangeSites: function Updater_rearrangeSites(aSites, aCallback) { + _rearrangeSites: function (aSites, aCallback) { let options = {callback: aCallback, unfreeze: true}; gTransformation.rearrangeSites(aSites, options); }, @@ -123,7 +123,7 @@ var gUpdater = { * @param aSites The array of sites remaining in the grid. * @param aCallback The callback to call when finished. */ - _removeLegacySites: function Updater_removeLegacySites(aSites, aCallback) { + _removeLegacySites: function (aSites, aCallback) { let batch = []; // Delete sites that were removed from the grid. @@ -152,7 +152,7 @@ var gUpdater = { * @param aLinks The array of links. * @param aCallback The callback to call when finished. */ - _fillEmptyCells: function Updater_fillEmptyCells(aLinks, aCallback) { + _fillEmptyCells: function (aLinks, aCallback) { let {cells, sites} = gGrid; // Find empty cells and fill them. From 85de6bf035bdc608633a034962ed18b1d6872c1e Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:50:43 -0600 Subject: [PATCH 11/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/pageinfo. --- .../palemoon/components/pageinfo/permissions.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/application/palemoon/components/pageinfo/permissions.js b/application/palemoon/components/pageinfo/permissions.js index 4f8382f661..15cb2cb3e0 100644 --- a/application/palemoon/components/pageinfo/permissions.js +++ b/application/palemoon/components/pageinfo/permissions.js @@ -18,21 +18,21 @@ var gPrefs; var gUsageRequest; var gPermObj = { - image: function getImageDefaultPermission() + image: function () { if (gPrefs.getIntPref("permissions.default.image") == IMAGE_DENY) { return DENY; } return ALLOW; }, - popup: function getPopupDefaultPermission() + popup: function () { if (gPrefs.getBoolPref("dom.disable_open_during_load")) { return DENY; } return ALLOW; }, - cookie: function getCookieDefaultPermission() + cookie: function () { if (gPrefs.getIntPref("network.cookie.cookieBehavior") == COOKIE_DENY) { return DENY; @@ -42,28 +42,28 @@ var gPermObj = { } return ALLOW; }, - "desktop-notification": function getNotificationDefaultPermission() + "desktop-notification": function () { if (!gPrefs.getBoolPref("dom.webnotifications.enabled")) { return DENY; } return UNKNOWN; }, - install: function getInstallDefaultPermission() + install: function () { if (Services.prefs.getBoolPref("xpinstall.whitelist.required")) { return DENY; } return ALLOW; }, - geo: function getGeoDefaultPermissions() + geo: function () { if (!gPrefs.getBoolPref("geo.enabled")) { return DENY; } return ALLOW; }, - plugins: function getPluginsDefaultPermissions() + plugins: function () { return UNKNOWN; }, From e6be1fd9c321809aa257bb733d1421ec1878c22a Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:51:38 -0600 Subject: [PATCH 12/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/places. --- .../components/places/PlacesUIUtils.jsm | 64 ++++----- .../places/content/bookmarkProperties.js | 46 +++---- .../places/content/browserPlacesViews.js | 128 +++++++++--------- .../components/places/content/controller.js | 92 ++++++------- .../places/content/editBookmarkOverlay.js | 72 +++++----- .../places/content/moveBookmarks.js | 4 +- .../components/places/content/places.js | 104 +++++++------- .../components/places/content/sidebarUtils.js | 8 +- .../components/places/content/treeView.js | 108 +++++++-------- 9 files changed, 313 insertions(+), 313 deletions(-) diff --git a/application/palemoon/components/places/PlacesUIUtils.jsm b/application/palemoon/components/places/PlacesUIUtils.jsm index e3a9e13220..e9e6415694 100644 --- a/application/palemoon/components/places/PlacesUIUtils.jsm +++ b/application/palemoon/components/places/PlacesUIUtils.jsm @@ -42,11 +42,11 @@ this.PlacesUIUtils = { * The string spec of the URI * @returns A URI object for the spec. */ - createFixedURI: function PUIU_createFixedURI(aSpec) { + createFixedURI: function (aSpec) { return URIFixup.createFixupURI(aSpec, Ci.nsIURIFixup.FIXUP_FLAG_NONE); }, - getFormattedString: function PUIU_getFormattedString(key, params) { + getFormattedString: function (key, params) { return bundle.formatStringFromName(key, params, params.length); }, @@ -65,7 +65,7 @@ this.PlacesUIUtils = { * @see https://developer.mozilla.org/en/Localization_and_Plurals * @return The localized plural string. */ - getPluralString: function PUIU_getPluralString(aKey, aNumber, aParams) { + getPluralString: function (aKey, aNumber, aParams) { let str = PluralForm.get(aNumber, bundle.GetStringFromName(aKey)); // Replace #1 with aParams[0], #2 with aParams[1], and so on. @@ -75,7 +75,7 @@ this.PlacesUIUtils = { }); }, - getString: function PUIU_getString(key) { + getString: function (key) { return bundle.GetStringFromName(key); }, @@ -103,7 +103,7 @@ this.PlacesUIUtils = { * @see this._copyableAnnotations for the list of copyable annotations. */ _getURIItemCopyTransaction: - function PUIU__getURIItemCopyTransaction(aData, aContainer, aIndex) + function (aData, aContainer, aIndex) { let transactions = []; if (aData.dateAdded) { @@ -257,7 +257,7 @@ this.PlacesUIUtils = { * @see this._copyableAnnotations for the list of copyable annotations. */ _getLivemarkCopyTransaction: - function PUIU__getLivemarkCopyTransaction(aData, aContainer, aIndex) + function (aData, aContainer, aIndex) { if (!aData.livemark || !aData.annos) { throw new Error("node is not a livemark"); @@ -291,7 +291,7 @@ this.PlacesUIUtils = { * @note Maybe this should be removed later, see bug 1072833. */ _isLivemark: - function PUIU__isLivemark(aItemId) + function (aItemId) { // Since this check may be done on each dragover event, it's worth maintaining // a cache. @@ -344,7 +344,7 @@ this.PlacesUIUtils = { * the move/insert. */ makeTransaction: - function PUIU_makeTransaction(data, type, container, index, copy) + function (data, type, container, index, copy) { switch (data.type) { case PlacesUtils.TYPE_X_MOZ_PLACE_CONTAINER: @@ -399,7 +399,7 @@ this.PlacesUIUtils = { * @return true if any transaction has been performed, false otherwise. */ showBookmarkDialog: - function PUIU_showBookmarkDialog(aInfo, aParentWindow) { + function (aInfo, aParentWindow) { // Preserve size attributes differently based on the fact the dialog has // a folder picker or not, since it needs more horizontal space than the // other controls. @@ -415,7 +415,7 @@ this.PlacesUIUtils = { return ("performed" in aInfo && aInfo.performed); }, - _getTopBrowserWin: function PUIU__getTopBrowserWin() { + _getTopBrowserWin: function () { return RecentWindow.getMostRecentBrowserWindow(); }, @@ -425,7 +425,7 @@ this.PlacesUIUtils = { * a DOM node * @return the closet ancestor places view if exists, null otherwsie. */ - getViewForNode: function PUIU_getViewForNode(aNode) { + getViewForNode: function (aNode) { let node = aNode; // The view for a of which its associated menupopup is a places @@ -454,7 +454,7 @@ this.PlacesUIUtils = { * organizer. If this is not called visits will be marked as * TRANSITION_LINK. */ - markPageAsTyped: function PUIU_markPageAsTyped(aURL) { + markPageAsTyped: function (aURL) { PlacesUtils.history.markPageAsTyped(this.createFixedURI(aURL)); }, @@ -465,7 +465,7 @@ this.PlacesUIUtils = { * personal toolbar, and bookmarks from within the places organizer. * If this is not called visits will be marked as TRANSITION_LINK. */ - markPageAsFollowedBookmark: function PUIU_markPageAsFollowedBookmark(aURL) { + markPageAsFollowedBookmark: function (aURL) { PlacesUtils.history.markPageAsFollowedBookmark(this.createFixedURI(aURL)); }, @@ -475,7 +475,7 @@ this.PlacesUIUtils = { * This is actually used to distinguish user-initiated visits in frames * so automatic visits can be correctly ignored. */ - markPageAsFollowedLink: function PUIU_markPageAsFollowedLink(aURL) { + markPageAsFollowedLink: function (aURL) { PlacesUtils.history.markPageAsFollowedLink(this.createFixedURI(aURL)); }, @@ -489,7 +489,7 @@ this.PlacesUIUtils = { * @return true if it's safe to open the node in the browser, false otherwise. * */ - checkURLSecurity: function PUIU_checkURLSecurity(aURINode, aWindow) { + checkURLSecurity: function (aURINode, aWindow) { if (PlacesUtils.nodeIsBookmark(aURINode)) return true; @@ -516,7 +516,7 @@ this.PlacesUIUtils = { * @returns A description string if a META element was discovered with a * "description" or "httpequiv" attribute, empty string otherwise. */ - getDescriptionFromDocument: function PUIU_getDescriptionFromDocument(doc) { + getDescriptionFromDocument: function (doc) { var metaElements = doc.getElementsByTagName("META"); for (var i = 0; i < metaElements.length; ++i) { if (metaElements[i].name.toLowerCase() == "description" || @@ -534,7 +534,7 @@ this.PlacesUIUtils = { * @returns the description of the given item, or an empty string if it is * not set. */ - getItemDescription: function PUIU_getItemDescription(aItemId) { + getItemDescription: function (aItemId) { if (PlacesUtils.annotations.itemHasAnnotation(aItemId, this.DESCRIPTION_ANNO)) return PlacesUtils.annotations.getItemAnnotation(aItemId, this.DESCRIPTION_ANNO); return ""; @@ -631,7 +631,7 @@ this.PlacesUIUtils = { * Gives the user a chance to cancel loading lots of tabs at once */ _confirmOpenInTabs: - function PUIU__confirmOpenInTabs(numTabsToOpen, aWindow) { + function (numTabsToOpen, aWindow) { const WARN_ON_OPEN_PREF = "browser.tabs.warnOnOpen"; var reallyOpen = true; @@ -673,7 +673,7 @@ this.PlacesUIUtils = { /** aItemsToOpen needs to be an array of objects of the form: * {uri: string, isBookmark: boolean} */ - _openTabset: function PUIU__openTabset(aItemsToOpen, aEvent, aWindow) { + _openTabset: function (aItemsToOpen, aEvent, aWindow) { if (!aItemsToOpen.length) return; @@ -722,7 +722,7 @@ this.PlacesUIUtils = { }, openLiveMarkNodesInTabs: - function PUIU_openLiveMarkNodesInTabs(aNode, aEvent, aView) { + function (aNode, aEvent, aView) { let window = aView.ownerWindow; PlacesUtils.livemarks.getLivemark({id: aNode.itemId}) @@ -741,7 +741,7 @@ this.PlacesUIUtils = { }, openContainerNodeInTabs: - function PUIU_openContainerInTabs(aNode, aEvent, aView) { + function (aNode, aEvent, aView) { let window = aView.ownerWindow; let urlsToOpen = PlacesUtils.getURLsForContainerNode(aNode); @@ -750,7 +750,7 @@ this.PlacesUIUtils = { } }, - openURINodesInTabs: function PUIU_openURINodesInTabs(aNodes, aEvent, aView) { + openURINodesInTabs: function (aNodes, aEvent, aView) { let window = aView.ownerWindow; let urlsToOpen = []; @@ -775,7 +775,7 @@ this.PlacesUIUtils = { * The controller associated with aNode. */ openNodeWithEvent: - function PUIU_openNodeWithEvent(aNode, aEvent, aView) { + function (aNode, aEvent, aView) { let window = aView.ownerWindow; this._openNodeIn(aNode, window.whereToOpenLink(aEvent, false, true), window); }, @@ -785,12 +785,12 @@ this.PlacesUIUtils = { * web panel. * see also openUILinkIn */ - openNodeIn: function PUIU_openNodeIn(aNode, aWhere, aView, aPrivate) { + openNodeIn: function (aNode, aWhere, aView, aPrivate) { let window = aView.ownerWindow; this._openNodeIn(aNode, aWhere, window, aPrivate); }, - _openNodeIn: function PUIU_openNodeIn(aNode, aWhere, aWindow, aPrivate=false) { + _openNodeIn: function (aNode, aWhere, aWindow, aPrivate=false) { if (aNode && PlacesUtils.nodeIsURI(aNode) && this.checkURLSecurity(aNode, aWindow)) { let isBookmark = PlacesUtils.nodeIsBookmark(aNode); @@ -831,11 +831,11 @@ this.PlacesUIUtils = { * * @note this is not supposed be perfect, so use it only for UI purposes. */ - guessUrlSchemeForUI: function PUIU_guessUrlSchemeForUI(aUrlString) { + guessUrlSchemeForUI: function (aUrlString) { return aUrlString.substr(0, aUrlString.indexOf(":")); }, - getBestTitle: function PUIU_getBestTitle(aNode, aDoNotCutTitle) { + getBestTitle: function (aNode, aDoNotCutTitle) { var title; if (!aNode.title && PlacesUtils.nodeIsURI(aNode)) { // if node title is empty, try to set the label using host and filename @@ -1016,7 +1016,7 @@ this.PlacesUIUtils = { // Create a new left pane folder. var callback = { // Helper to create an organizer special query. - create_query: function CB_create_query(aQueryName, aParentId, aQueryUrl) { + create_query: function (aQueryName, aParentId, aQueryUrl) { let itemId = bs.insertBookmark(aParentId, PlacesUtils._uri(aQueryUrl), bs.DEFAULT_INDEX, @@ -1033,7 +1033,7 @@ this.PlacesUIUtils = { }, // Helper to create an organizer special folder. - create_folder: function CB_create_folder(aFolderName, aParentId, aIsRoot) { + create_folder: function (aFolderName, aParentId, aIsRoot) { // Left Pane Root Folder. let folderId = bs.createFolder(aParentId, queries[aFolderName].title, @@ -1057,7 +1057,7 @@ this.PlacesUIUtils = { return folderId; }, - runBatched: function CB_runBatched(aUserData) { + runBatched: function (aUserData) { delete PlacesUIUtils.leftPaneQueries; PlacesUIUtils.leftPaneQueries = { }; @@ -1125,7 +1125,7 @@ this.PlacesUIUtils = { * @param aItemId id of a container * @returns the name of the query, or empty string if not a left-pane query */ - getLeftPaneQueryNameFromId: function PUIU_getLeftPaneQueryNameFromId(aItemId) { + getLeftPaneQueryNameFromId: function (aItemId) { var queryName = ""; // If the let pane hasn't been built, use the annotation service // directly, to avoid building the left pane too early. @@ -1170,7 +1170,7 @@ this.PlacesUIUtils = { * @return The URL with the fragment at the end */ getImageURLForResolution: - function PUIU_getImageURLForResolution(aWindow, aURL, aWidth, aHeight) { + function (aWindow, aURL, aWidth, aHeight) { return aURL; } }; diff --git a/application/palemoon/components/places/content/bookmarkProperties.js b/application/palemoon/components/places/content/bookmarkProperties.js index e1d1077ab6..5b479b02a7 100644 --- a/application/palemoon/components/places/content/bookmarkProperties.js +++ b/application/palemoon/components/places/content/bookmarkProperties.js @@ -107,7 +107,7 @@ var BookmarkPropertiesPanel = { * This method returns the correct label for the dialog's "accept" * button based on the variant of the dialog. */ - _getAcceptLabel: function BPP__getAcceptLabel() { + _getAcceptLabel: function () { if (this._action == ACTION_ADD) { if (this._URIs.length) return this._strings.getString("dialogAcceptLabelAddMulti"); @@ -127,7 +127,7 @@ var BookmarkPropertiesPanel = { * This method returns the correct title for the current variant * of this dialog. */ - _getDialogTitle: function BPP__getDialogTitle() { + _getDialogTitle: function () { if (this._action == ACTION_ADD) { if (this._itemType == BOOKMARK_ITEM) return this._strings.getString("dialogTitleAddBookmark"); @@ -150,7 +150,7 @@ var BookmarkPropertiesPanel = { /** * Determines the initial data for the item edited or added by this dialog */ - _determineItemInfo: function BPP__determineItemInfo() { + _determineItemInfo: function () { var dialogInfo = window.arguments[0]; this._action = dialogInfo.action == "add" ? ACTION_ADD : ACTION_EDIT; this._hiddenRows = dialogInfo.hiddenRows ? dialogInfo.hiddenRows : []; @@ -294,7 +294,7 @@ var BookmarkPropertiesPanel = { * * @returns a title string */ - _getURITitleFromHistory: function BPP__getURITitleFromHistory(aURI) { + _getURITitleFromHistory: function (aURI) { NS_ASSERT(aURI instanceof Ci.nsIURI); // get the title from History @@ -305,7 +305,7 @@ var BookmarkPropertiesPanel = { * This method should be called by the onload of the Bookmark Properties * dialog to initialize the state of the panel. */ - onDialogLoad: Task.async(function* BPP_onDialogLoad() { + onDialogLoad: Task.async(function* () { this._determineItemInfo(); document.title = this._getDialogTitle(); @@ -390,7 +390,7 @@ var BookmarkPropertiesPanel = { }), // nsIDOMEventListener - handleEvent: function BPP_handleEvent(aEvent) { + handleEvent: function (aEvent) { var target = aEvent.target; switch (aEvent.type) { case "input": @@ -413,7 +413,7 @@ var BookmarkPropertiesPanel = { } }, - _beginBatch: function BPP__beginBatch() { + _beginBatch: function () { if (this._batching) return; @@ -421,7 +421,7 @@ var BookmarkPropertiesPanel = { this._batching = true; }, - _endBatch: function BPP__endBatch() { + _endBatch: function () { if (!this._batching) return; @@ -429,13 +429,13 @@ var BookmarkPropertiesPanel = { this._batching = false; }, - _fillEditProperties: function BPP__fillEditProperties() { + _fillEditProperties: function () { gEditItemOverlay.initPanel(this._itemId, { hiddenRows: this._hiddenRows, forceReadOnly: this._readOnly }); }, - _fillAddProperties: Task.async(function* BPP__fillAddProperties() { + _fillAddProperties: Task.async(function* () { yield this._createNewItem(); // Edit the new item gEditItemOverlay.initPanel(this._itemId, @@ -449,7 +449,7 @@ var BookmarkPropertiesPanel = { }), // nsISupports - QueryInterface: function BPP_QueryInterface(aIID) { + QueryInterface: function (aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsISupports)) return this; @@ -457,11 +457,11 @@ var BookmarkPropertiesPanel = { throw Cr.NS_NOINTERFACE; }, - _element: function BPP__element(aID) { + _element: function (aID) { return document.getElementById("editBMPanel_" + aID); }, - onDialogUnload: function BPP_onDialogUnload() { + onDialogUnload: function () { // gEditItemOverlay does not exist anymore here, so don't rely on it. this._mutationObserver.disconnect(); delete this._mutationObserver; @@ -478,7 +478,7 @@ var BookmarkPropertiesPanel = { .removeEventListener("input", this, false); }, - onDialogAccept: function BPP_onDialogAccept() { + onDialogAccept: function () { // We must blur current focused element to save its changes correctly document.commandDispatcher.focusedElement.blur(); // The order here is important! We have to uninit the panel first, otherwise @@ -488,7 +488,7 @@ var BookmarkPropertiesPanel = { window.arguments[0].performed = true; }, - onDialogCancel: function BPP_onDialogCancel() { + onDialogCancel: function () { // The order here is important! We have to uninit the panel first, otherwise // changes done as part of Undo may change the panel contents and by // that force it to commit more transactions. @@ -503,7 +503,7 @@ var BookmarkPropertiesPanel = { * * @returns true if the input is valid, false otherwise */ - _inputIsValid: function BPP__inputIsValid() { + _inputIsValid: function () { if (this._itemType == BOOKMARK_ITEM && !this._containsValidURI("locationField")) return false; @@ -522,7 +522,7 @@ var BookmarkPropertiesPanel = { * * @returns true if the textbox contains a valid URI string, false otherwise */ - _containsValidURI: function BPP__containsValidURI(aTextboxID) { + _containsValidURI: function (aTextboxID) { try { var value = this._element(aTextboxID).value; if (value) { @@ -540,7 +540,7 @@ var BookmarkPropertiesPanel = { * The container-identifier and insertion-index are returned separately in * the form of [containerIdentifier, insertionIndex] */ - _getInsertionPointDetails: function BPP__getInsertionPointDetails() { + _getInsertionPointDetails: function () { var containerId = this._defaultInsertionPoint.itemId; var indexInContainer = this._defaultInsertionPoint.index; @@ -552,7 +552,7 @@ var BookmarkPropertiesPanel = { * various fields and opening arguments of the dialog. */ _getCreateNewBookmarkTransaction: - function BPP__getCreateNewBookmarkTransaction(aContainer, aIndex) { + function (aContainer, aIndex) { var annotations = []; var childTransactions = []; @@ -598,7 +598,7 @@ var BookmarkPropertiesPanel = { * Returns a childItems-transactions array representing the URIList with * which the dialog has been opened. */ - _getTransactionsForURIList: function BPP__getTransactionsForURIList() { + _getTransactionsForURIList: function () { var transactions = []; for (var i = 0; i < this._URIs.length; ++i) { var uri = this._URIs[i]; @@ -616,7 +616,7 @@ var BookmarkPropertiesPanel = { * various fields and opening arguments of the dialog. */ _getCreateNewFolderTransaction: - function BPP__getCreateNewFolderTransaction(aContainer, aIndex) { + function (aContainer, aIndex) { var annotations = []; var childItemsTransactions; if (this._URIs.length) @@ -635,7 +635,7 @@ var BookmarkPropertiesPanel = { * the various fields and opening arguments of the dialog. */ _getCreateNewLivemarkTransaction: - function BPP__getCreateNewLivemarkTransaction(aContainer, aIndex) { + function (aContainer, aIndex) { return new PlacesCreateLivemarkTransaction(this._feedURI, this._siteURI, this._title, aContainer, aIndex); @@ -644,7 +644,7 @@ var BookmarkPropertiesPanel = { /** * Dialog-accept code-path for creating a new item (any type) */ - _createNewItem: Task.async(function* BPP__getCreateItemTransaction() { + _createNewItem: Task.async(function* () { var [container, index] = this._getInsertionPointDetails(); var txn; diff --git a/application/palemoon/components/places/content/browserPlacesViews.js b/application/palemoon/components/places/content/browserPlacesViews.js index 8b90dd280e..6e4926e77a 100644 --- a/application/palemoon/components/places/content/browserPlacesViews.js +++ b/application/palemoon/components/places/content/browserPlacesViews.js @@ -92,7 +92,7 @@ PlacesViewBase.prototype = { * @throws if there is no DOM node set for aPlacesNode. */ _getDOMNodeForPlacesNode: - function PVB__getDOMNodeForPlacesNode(aPlacesNode) { + function (aPlacesNode) { let node = this._domNodes.get(aPlacesNode, null); if (!node) { throw new Error("No DOM node set for aPlacesNode.\nnode.type: " + @@ -182,17 +182,17 @@ PlacesViewBase.prototype = { index, orientation, isTag); }, - buildContextMenu: function PVB_buildContextMenu(aPopup) { + buildContextMenu: function (aPopup) { this._contextMenuShown = aPopup; window.updateCommands("places"); return this.controller.buildContextMenu(aPopup); }, - destroyContextMenu: function PVB_destroyContextMenu(aPopup) { + destroyContextMenu: function (aPopup) { this._contextMenuShown = null; }, - _cleanPopup: function PVB_cleanPopup(aPopup, aDelay) { + _cleanPopup: function (aPopup, aDelay) { // Remove Places nodes from the popup. let child = aPopup._startMarker; while (child.nextSibling != aPopup._endMarker) { @@ -215,7 +215,7 @@ PlacesViewBase.prototype = { } }, - _rebuildPopup: function PVB__rebuildPopup(aPopup) { + _rebuildPopup: function (aPopup) { let resultNode = aPopup._placesNode; if (!resultNode.containerOpen) return; @@ -244,7 +244,7 @@ PlacesViewBase.prototype = { aPopup._built = true; }, - _removeChild: function PVB__removeChild(aChild) { + _removeChild: function (aChild) { // If document.popupNode pointed to this child, null it out, // otherwise controller's command-updating may rely on the removed // item still being "selected". @@ -255,7 +255,7 @@ PlacesViewBase.prototype = { }, _setEmptyPopupStatus: - function PVB__setEmptyPopupStatus(aPopup, aEmpty) { + function (aPopup, aEmpty) { if (!aPopup._emptyMenuitem) { let label = PlacesUIUtils.getString("bookmarksMenuEmptyFolder"); aPopup._emptyMenuitem = document.createElement("menuitem"); @@ -279,7 +279,7 @@ PlacesViewBase.prototype = { }, _createMenuItemForPlacesNode: - function PVB__createMenuItemForPlacesNode(aPlacesNode) { + function (aPlacesNode) { this._domNodes.delete(aPlacesNode); let element; @@ -357,7 +357,7 @@ PlacesViewBase.prototype = { }, _insertNewItemToPopup: - function PVB__insertNewItemToPopup(aNewChild, aPopup, aBefore) { + function (aNewChild, aPopup, aBefore) { let element = this._createMenuItemForPlacesNode(aNewChild); let before = aBefore || aPopup._endMarker; aPopup.insertBefore(element, before); @@ -365,7 +365,7 @@ PlacesViewBase.prototype = { }, _setLivemarkSiteURIMenuItem: - function PVB__setLivemarkSiteURIMenuItem(aPopup) { + function (aPopup) { let livemarkInfo = this.controller.getCachedLivemarkInfo(aPopup._placesNode); let siteUrl = livemarkInfo && livemarkInfo.siteURI ? livemarkInfo.siteURI.spec : null; @@ -408,7 +408,7 @@ PlacesViewBase.prototype = { * The livemark status */ _setLivemarkStatusMenuItem: - function PVB_setLivemarkStatusMenuItem(aPopup, aStatus) { + function (aPopup, aStatus) { let statusMenuitem = aPopup._statusMenuitem; if (!statusMenuitem) { // Create the status menuitem and cache it in the popup object. @@ -434,7 +434,7 @@ PlacesViewBase.prototype = { } }, - toggleCutNode: function PVB_toggleCutNode(aPlacesNode, aValue) { + toggleCutNode: function (aPlacesNode, aValue) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // We may get the popup for menus, but we need the menu itself. @@ -446,7 +446,7 @@ PlacesViewBase.prototype = { elt.removeAttribute("cutting"); }, - nodeURIChanged: function PVB_nodeURIChanged(aPlacesNode, aURIString) { + nodeURIChanged: function (aPlacesNode, aURIString) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // Here we need the . @@ -456,7 +456,7 @@ PlacesViewBase.prototype = { elt.setAttribute("scheme", PlacesUIUtils.guessUrlSchemeForUI(aURIString)); }, - nodeIconChanged: function PVB_nodeIconChanged(aPlacesNode) { + nodeIconChanged: function (aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's nothing to @@ -477,7 +477,7 @@ PlacesViewBase.prototype = { }, nodeAnnotationChanged: - function PVB_nodeAnnotationChanged(aPlacesNode, aAnno) { + function (aPlacesNode, aAnno) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // All livemarks have a feedURI, so use it as our indicator of a livemark @@ -504,7 +504,7 @@ PlacesViewBase.prototype = { }, nodeTitleChanged: - function PVB_nodeTitleChanged(aPlacesNode, aNewTitle) { + function (aPlacesNode, aNewTitle) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's @@ -528,7 +528,7 @@ PlacesViewBase.prototype = { }, nodeRemoved: - function PVB_nodeRemoved(aParentPlacesNode, aPlacesNode, aIndex) { + function (aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); let elt = this._getDOMNodeForPlacesNode(aPlacesNode); @@ -548,7 +548,7 @@ PlacesViewBase.prototype = { }, nodeHistoryDetailsChanged: - function PVB_nodeHistoryDetailsChanged(aPlacesNode, aTime, aCount) { + function (aPlacesNode, aTime, aCount) { if (aPlacesNode.parent && this.controller.hasCachedLivemarkInfo(aPlacesNode.parent)) { // Find the node in the parent. @@ -575,7 +575,7 @@ PlacesViewBase.prototype = { batching: function() { }, nodeInserted: - function PVB_nodeInserted(aParentPlacesNode, aPlacesNode, aIndex) { + function (aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); if (!parentElt._built) return; @@ -588,7 +588,7 @@ PlacesViewBase.prototype = { }, nodeMoved: - function PBV_nodeMoved(aPlacesNode, + function (aPlacesNode, aOldParentPlacesNode, aOldIndex, aNewParentPlacesNode, aNewIndex) { // Note: the current implementation of moveItem does not actually @@ -617,7 +617,7 @@ PlacesViewBase.prototype = { }, containerStateChanged: - function PVB_containerStateChanged(aPlacesNode, aOldState, aNewState) { + function (aPlacesNode, aOldState, aNewState) { if (aNewState == Ci.nsINavHistoryContainerResultNode.STATE_OPENED || aNewState == Ci.nsINavHistoryContainerResultNode.STATE_CLOSED) { this.invalidateContainer(aPlacesNode); @@ -649,7 +649,7 @@ PlacesViewBase.prototype = { } }, - _populateLivemarkPopup: function PVB__populateLivemarkPopup(aPopup) + _populateLivemarkPopup: function (aPopup) { this._setLivemarkSiteURIMenuItem(aPopup); // Show the loading status only if there are no entries yet. @@ -679,7 +679,7 @@ PlacesViewBase.prototype = { }, Components.utils.reportError); }, - invalidateContainer: function PVB_invalidateContainer(aPlacesNode) { + invalidateContainer: function (aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); elt._built = false; @@ -688,7 +688,7 @@ PlacesViewBase.prototype = { this._rebuildPopup(elt); }, - uninit: function PVB_uninit() { + uninit: function () { if (this._result) { this._result.removeObserver(this); this._resultNode.containerOpen = false; @@ -729,7 +729,7 @@ PlacesViewBase.prototype = { * @param aPopup * a Places popup. */ - _mayAddCommandsItems: function PVB__mayAddCommandsItems(aPopup) { + _mayAddCommandsItems: function (aPopup) { // The command items are never added to the root popup. if (aPopup == this._rootElt) return; @@ -794,7 +794,7 @@ PlacesViewBase.prototype = { } }, - _ensureMarkers: function PVB__ensureMarkers(aPopup) { + _ensureMarkers: function (aPopup) { if (aPopup._startMarker) return; @@ -830,7 +830,7 @@ PlacesViewBase.prototype = { } }, - _onPopupShowing: function PVB__onPopupShowing(aEvent) { + _onPopupShowing: function (aEvent) { // Avoid handling popupshowing of inner views. let popup = aEvent.originalTarget; @@ -854,14 +854,14 @@ PlacesViewBase.prototype = { }, _addEventListeners: - function PVB__addEventListeners(aObject, aEventNames, aCapturing) { + function (aObject, aEventNames, aCapturing) { for (let i = 0; i < aEventNames.length; i++) { aObject.addEventListener(aEventNames[i], this, aCapturing); } }, _removeEventListeners: - function PVB__removeEventListeners(aObject, aEventNames, aCapturing) { + function (aObject, aEventNames, aCapturing) { for (let i = 0; i < aEventNames.length; i++) { aObject.removeEventListener(aEventNames[i], this, aCapturing); } @@ -914,7 +914,7 @@ PlacesToolbar.prototype = { _cbEvents: ["dragstart", "dragover", "dragexit", "dragend", "drop", "mousemove", "mouseover", "mouseout"], - QueryInterface: function PT_QueryInterface(aIID) { + QueryInterface: function (aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsITimerCallback)) return this; @@ -922,7 +922,7 @@ PlacesToolbar.prototype = { return PlacesViewBase.prototype.QueryInterface.apply(this, arguments); }, - uninit: function PT_uninit() { + uninit: function () { this._removeEventListeners(this._viewElt, this._cbEvents, false); this._removeEventListeners(this._rootElt, ["popupshowing", "popuphidden"], true); @@ -936,7 +936,7 @@ PlacesToolbar.prototype = { _openedMenuButton: null, _allowPopupShowing: true, - _rebuild: function PT__rebuild() { + _rebuild: function () { // Clear out references to existing nodes, since they will be removed // and re-added. if (this._overFolder.elt) @@ -961,7 +961,7 @@ PlacesToolbar.prototype = { }, _insertNewItem: - function PT__insertNewItem(aChild, aBefore) { + function (aChild, aBefore) { this._domNodes.delete(aChild); let type = aChild.type; @@ -1022,7 +1022,7 @@ PlacesToolbar.prototype = { }, _updateChevronPopupNodesVisibility: - function PT__updateChevronPopupNodesVisibility() { + function () { for (let i = 0, node = this._chevronPopup._startMarker.nextSibling; node != this._chevronPopup._endMarker; i++, node = node.nextSibling) { @@ -1031,7 +1031,7 @@ PlacesToolbar.prototype = { }, _onChevronPopupShowing: - function PT__onChevronPopupShowing(aEvent) { + function (aEvent) { // Handle popupshowing only for the chevron popup, not for nested ones. if (aEvent.target != this._chevronPopup) return; @@ -1042,7 +1042,7 @@ PlacesToolbar.prototype = { this._updateChevronPopupNodesVisibility(); }, - handleEvent: function PT_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "unload": this.uninit(); @@ -1120,7 +1120,7 @@ PlacesToolbar.prototype = { } }, - updateChevron: function PT_updateChevron() { + updateChevron: function () { // If the chevron is collapsed there's nothing to update. if (this._chevron.collapsed) return; @@ -1133,7 +1133,7 @@ PlacesToolbar.prototype = { this._updateChevronTimer = this._setTimer(100); }, - _updateChevronTimerCallback: function PT__updateChevronTimerCallback() { + _updateChevronTimerCallback: function () { let scrollRect = this._rootElt.getBoundingClientRect(); let childOverflowed = false; for (let i = 0; i < this._rootElt.childNodes.length; i++) { @@ -1155,7 +1155,7 @@ PlacesToolbar.prototype = { }, nodeInserted: - function PT_nodeInserted(aParentPlacesNode, aPlacesNode, aIndex) { + function (aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); if (parentElt == this._rootElt) { let children = this._rootElt.childNodes; @@ -1169,7 +1169,7 @@ PlacesToolbar.prototype = { }, nodeRemoved: - function PT_nodeRemoved(aParentPlacesNode, aPlacesNode, aIndex) { + function (aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); let elt = this._getDOMNodeForPlacesNode(aPlacesNode); @@ -1187,7 +1187,7 @@ PlacesToolbar.prototype = { }, nodeMoved: - function PT_nodeMoved(aPlacesNode, + function (aPlacesNode, aOldParentPlacesNode, aOldIndex, aNewParentPlacesNode, aNewIndex) { let parentElt = this._getDOMNodeForPlacesNode(aNewParentPlacesNode); @@ -1219,7 +1219,7 @@ PlacesToolbar.prototype = { }, nodeAnnotationChanged: - function PT_nodeAnnotationChanged(aPlacesNode, aAnno) { + function (aPlacesNode, aAnno) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); if (elt == this._rootElt) return; @@ -1248,7 +1248,7 @@ PlacesToolbar.prototype = { } }, - nodeTitleChanged: function PT_nodeTitleChanged(aPlacesNode, aNewTitle) { + nodeTitleChanged: function (aPlacesNode, aNewTitle) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's @@ -1268,7 +1268,7 @@ PlacesToolbar.prototype = { } }, - invalidateContainer: function PT_invalidateContainer(aPlacesNode) { + invalidateContainer: function (aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); if (elt == this._rootElt) { // Container is the toolbar itself. @@ -1284,7 +1284,7 @@ PlacesToolbar.prototype = { hoverTime: 350, closeTimer: null }, - _clearOverFolder: function PT__clearOverFolder() { + _clearOverFolder: function () { // The mouse is no longer dragging over the stored menubutton. // Close the menubutton, clear out drag styles, and clear all // timers for opening/closing it. @@ -1312,7 +1312,7 @@ PlacesToolbar.prototype = { * - beforeIndex: child index to drop before, for the drop indicator. * - folderElt: the folder to drop into, if applicable. */ - _getDropPoint: function PT__getDropPoint(aEvent) { + _getDropPoint: function (aEvent) { let result = this.result; if (!PlacesUtils.nodeIsFolder(this._resultNode)) return null; @@ -1395,13 +1395,13 @@ PlacesToolbar.prototype = { return dropPoint; }, - _setTimer: function PT_setTimer(aTime) { + _setTimer: function (aTime) { let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer); timer.initWithCallback(this, aTime, timer.TYPE_ONE_SHOT); return timer; }, - notify: function PT_notify(aTimer) { + notify: function (aTimer) { if (aTimer == this._updateChevronTimer) { this._updateChevronTimer = null; this._updateChevronTimerCallback(); @@ -1446,18 +1446,18 @@ PlacesToolbar.prototype = { } }, - _onMouseOver: function PT__onMouseOver(aEvent) { + _onMouseOver: function (aEvent) { let button = aEvent.target; if (button.parentNode == this._rootElt && button._placesNode && PlacesUtils.nodeIsURI(button._placesNode)) window.XULBrowserWindow.setOverLink(aEvent.target._placesNode.uri, null); }, - _onMouseOut: function PT__onMouseOut(aEvent) { + _onMouseOut: function (aEvent) { window.XULBrowserWindow.setOverLink("", null); }, - _cleanupDragDetails: function PT__cleanupDragDetails() { + _cleanupDragDetails: function () { // Called on dragend and drop. PlacesControllerDragHelper.currentDropTarget = null; this._draggedElt = null; @@ -1467,7 +1467,7 @@ PlacesToolbar.prototype = { this._dropIndicator.collapsed = true; }, - _onDragStart: function PT__onDragStart(aEvent) { + _onDragStart: function (aEvent) { // Sub menus have their own d&d handlers. let draggedElt = aEvent.target; if (draggedElt.parentNode != this._rootElt || !draggedElt._placesNode) @@ -1502,7 +1502,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDragOver: function PT__onDragOver(aEvent) { + _onDragOver: function (aEvent) { // Cache the dataTransfer PlacesControllerDragHelper.currentDropTarget = aEvent.target; let dt = aEvent.dataTransfer; @@ -1578,7 +1578,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDrop: function PT__onDrop(aEvent) { + _onDrop: function (aEvent) { PlacesControllerDragHelper.currentDropTarget = aEvent.target; let dropPoint = this._getDropPoint(aEvent); @@ -1591,7 +1591,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDragExit: function PT__onDragExit(aEvent) { + _onDragExit: function (aEvent) { PlacesControllerDragHelper.currentDropTarget = null; // Set timer to turn off indicator bar (if we turn it off @@ -1606,11 +1606,11 @@ PlacesToolbar.prototype = { this._overFolder.closeTimer = this._setTimer(this._overFolder.hoverTime); }, - _onDragEnd: function PT_onDragEnd(aEvent) { + _onDragEnd: function (aEvent) { this._cleanupDragDetails(); }, - _onPopupShowing: function PT__onPopupShowing(aEvent) { + _onPopupShowing: function (aEvent) { if (!this._allowPopupShowing) { this._allowPopupShowing = true; aEvent.preventDefault(); @@ -1624,7 +1624,7 @@ PlacesToolbar.prototype = { PlacesViewBase.prototype._onPopupShowing.apply(this, arguments); }, - _onPopupHidden: function PT__onPopupHidden(aEvent) { + _onPopupHidden: function (aEvent) { let popup = aEvent.target; let placesNode = popup._placesNode; // Avoid handling popuphidden of inner views @@ -1650,7 +1650,7 @@ PlacesToolbar.prototype = { } }, - _onMouseMove: function PT__onMouseMove(aEvent) { + _onMouseMove: function (aEvent) { // Used in dragStart to prevent dragging folders when dragging down. this._cachedMouseMoveEvent = aEvent; @@ -1696,18 +1696,18 @@ function PlacesMenu(aPopupShowingEvent, aPlace) { PlacesMenu.prototype = { __proto__: PlacesViewBase.prototype, - QueryInterface: function PM_QueryInterface(aIID) { + QueryInterface: function (aIID) { if (aIID.equals(Ci.nsIDOMEventListener)) return this; return PlacesViewBase.prototype.QueryInterface.apply(this, arguments); }, - _removeChild: function PM_removeChild(aChild) { + _removeChild: function (aChild) { PlacesViewBase.prototype._removeChild.apply(this, arguments); }, - uninit: function PM_uninit() { + uninit: function () { this._removeEventListeners(this._rootElt, ["popupshowing", "popuphidden"], true); this._removeEventListeners(window, ["unload"], false); @@ -1715,7 +1715,7 @@ PlacesMenu.prototype = { PlacesViewBase.prototype.uninit.apply(this, arguments); }, - handleEvent: function PM_handleEvent(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "unload": this.uninit(); @@ -1729,7 +1729,7 @@ PlacesMenu.prototype = { } }, - _onPopupHidden: function PM__onPopupHidden(aEvent) { + _onPopupHidden: function (aEvent) { // Avoid handling popuphidden of inner views. let popup = aEvent.originalTarget; let placesNode = popup._placesNode; diff --git a/application/palemoon/components/places/content/controller.js b/application/palemoon/components/places/content/controller.js index f4e272e2f3..663eddfc0c 100644 --- a/application/palemoon/components/places/content/controller.js +++ b/application/palemoon/components/places/content/controller.js @@ -97,15 +97,15 @@ PlacesController.prototype = { ]), // nsIClipboardOwner - LosingOwnership: function PC_LosingOwnership (aXferable) { + LosingOwnership: function (aXferable) { this.cutNodes = []; }, - terminate: function PC_terminate() { + terminate: function () { this._releaseClipboardOwnership(); }, - supportsCommand: function PC_supportsCommand(aCommand) { + supportsCommand: function (aCommand) { // Non-Places specific commands that we also support switch (aCommand) { case "cmd_undo": @@ -124,7 +124,7 @@ PlacesController.prototype = { return (aCommand.substr(0, CMD_PREFIX.length) == CMD_PREFIX); }, - isCommandEnabled: function PC_isCommandEnabled(aCommand) { + isCommandEnabled: function (aCommand) { switch (aCommand) { case "cmd_undo": return PlacesUtils.transactionManager.numberOfUndoItems > 0; @@ -199,7 +199,7 @@ PlacesController.prototype = { } }, - doCommand: function PC_doCommand(aCommand) { + doCommand: function (aCommand) { switch (aCommand) { case "cmd_undo": PlacesUtils.transactionManager.undoTransaction(); @@ -291,7 +291,7 @@ PlacesController.prototype = { } }, - onEvent: function PC_onEvent(eventName) { }, + onEvent: function (eventName) { }, /** @@ -328,7 +328,7 @@ PlacesController.prototype = { /** * Determines whether or not nodes can be inserted relative to the selection. */ - _canInsert: function PC__canInsert(isPaste) { + _canInsert: function (isPaste) { var ip = this._view.insertionPoint; return ip != null && (isPaste || ip.isTag != true); }, @@ -341,7 +341,7 @@ PlacesController.prototype = { - clipboard data is of type TEXT_UNICODE and is a valid URI. */ - _isClipboardDataPasteable: function PC__isClipboardDataPasteable() { + _isClipboardDataPasteable: function () { // if the clipboard contains TYPE_X_MOZ_PLACE_* data, it is definitely // pasteable, with no need to unwrap all the nodes. @@ -401,7 +401,7 @@ PlacesController.prototype = { * Notes: * 1) This can be slow, so don't call it anywhere performance critical! */ - _buildSelectionMetadata: function PC__buildSelectionMetadata() { + _buildSelectionMetadata: function () { var metadata = []; var nodes = this._view.selectedNodes; @@ -484,7 +484,7 @@ PlacesController.prototype = { * @returns true if the conditions (see buildContextMenu) are satisfied * and the item can be displayed, false otherwise. */ - _shouldShowMenuItem: function PC__shouldShowMenuItem(aMenuItem, aMetaData) { + _shouldShowMenuItem: function (aMenuItem, aMetaData) { var selectiontype = aMenuItem.getAttribute("selectiontype"); if (!selectiontype) { selectiontype = "single|multiple"; @@ -577,7 +577,7 @@ PlacesController.prototype = { * The menupopup to build children into. * @return true if at least one item is visible, false otherwise. */ - buildContextMenu: function PC_buildContextMenu(aPopup) { + buildContextMenu: function (aPopup) { var metadata = this._buildSelectionMetadata(); var ip = this._view.insertionPoint; var noIp = !ip || ip.isTag; @@ -648,7 +648,7 @@ PlacesController.prototype = { /** * Select all links in the current view. */ - selectAll: function PC_selectAll() { + selectAll: function () { this._view.selectAll(); }, @@ -656,7 +656,7 @@ PlacesController.prototype = { * Opens the bookmark properties for the selected URI Node. */ showBookmarkPropertiesForSelection: - function PC_showBookmarkPropertiesForSelection() { + function () { var node = this._view.selectedNode; if (!node) return; @@ -684,7 +684,7 @@ PlacesController.prototype = { * This method can be run on a URI parameter to ensure that it didn't * receive a string instead of an nsIURI object. */ - _assertURINotString: function PC__assertURINotString(value) { + _assertURINotString: function (value) { NS_ASSERT((typeof(value) == "object") && !(value instanceof String), "This method should be passed a URI as a nsIURI object, not as a string."); }, @@ -692,7 +692,7 @@ PlacesController.prototype = { /** * Reloads the selected livemark if any. */ - reloadSelectedLivemark: function PC_reloadSelectedLivemark() { + reloadSelectedLivemark: function () { var selectedNode = this._view.selectedNode; if (selectedNode) { let itemId = selectedNode.itemId; @@ -706,7 +706,7 @@ PlacesController.prototype = { /** * Opens the links in the selected folder, or the selected links in new tabs. */ - openSelectionInTabs: function PC_openLinksInTabs(aEvent) { + openSelectionInTabs: function (aEvent) { var node = this._view.selectedNode; var nodes = this._view.selectedNodes; // In the case of no selection, open the root node: @@ -725,7 +725,7 @@ PlacesController.prototype = { * @param aType * the type of the new item (bookmark/livemark/folder) */ - newItem: function PC_newItem(aType) { + newItem: function (aType) { let ip = this._view.insertionPoint; if (!ip) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -747,7 +747,7 @@ PlacesController.prototype = { /** * Create a new Bookmark separator somewhere. */ - newSeparator: function PC_newSeparator() { + newSeparator: function () { var ip = this._view.insertionPoint; if (!ip) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -762,7 +762,7 @@ PlacesController.prototype = { /** * Opens a dialog for moving the selected nodes. */ - moveSelectedBookmarks: function PC_moveBookmarks() { + moveSelectedBookmarks: function () { window.openDialog("chrome://browser/content/places/moveBookmarks.xul", "", "chrome, modal", this._view.selectedNodes); @@ -771,7 +771,7 @@ PlacesController.prototype = { /** * Sort the selected folder by name. */ - sortFolderByName: function PC_sortFolderByName() { + sortFolderByName: function () { var itemId = PlacesUtils.getConcreteItemId(this._view.selectedNode); var txn = new PlacesSortFolderByNameTransaction(itemId); PlacesUtils.transactionManager.doTransaction(txn); @@ -780,7 +780,7 @@ PlacesController.prototype = { /** * Open the parent folder for the selected bookmarks search result. */ - openParentFolder: function PC_openParentFolder() { + openParentFolder: function () { var view; if (!document.popupNode) { view = document.commandDispatcher.focusedElement; @@ -796,7 +796,7 @@ PlacesController.prototype = { this.selectFolderByItemId(view, aFolderItemId, aItemId); }, - getParentFolderByItemId: function PC_getParentFolderByItemId(aItemId) { + getParentFolderByItemId: function (aItemId) { var bmsvc = Components.classes["@mozilla.org/browser/nav-bookmarks-service;1"]. getService(Components.interfaces.nsINavBookmarksService); var parentFolderId = bmsvc.getFolderIdForItem(aItemId); @@ -804,7 +804,7 @@ PlacesController.prototype = { return parentFolderId; }, - selectItems2: function PC_selectItems2(view, aIDs) { + selectItems2: function (view, aIDs) { var ids = aIDs; // Don't manipulate the caller's array. // Array of nodes found by findNodes which are to be selected @@ -904,7 +904,7 @@ PlacesController.prototype = { selection.selectEventsSuppressed = false; }, - selectFolderByItemId: function PC_selectFolderByItemId(view, aFolderItemId, aItemId) { + selectFolderByItemId: function (view, aFolderItemId, aItemId) { // Library if (view.getAttribute("id") == "placeContent") { view = document.getElementById("placesList"); @@ -1062,7 +1062,7 @@ PlacesController.prototype = { * List of folders the calling function has already traversed * @returns true if the node should be skipped, false otherwise. */ - _shouldSkipNode: function PC_shouldSkipNode(node, pastFolders) { + _shouldSkipNode: function (node, pastFolders) { /** * Determines if a node is contained by another node within a resultset. * @param node @@ -1098,7 +1098,7 @@ PlacesController.prototype = { * @param [optional] removedFolders * An array of folder nodes that have already been removed. */ - _removeRange: function PC__removeRange(range, transactions, removedFolders) { + _removeRange: function (range, transactions, removedFolders) { NS_ASSERT(transactions instanceof Array, "Must pass a transactions array"); if (!removedFolders) removedFolders = []; @@ -1167,7 +1167,7 @@ PlacesController.prototype = { * @param txnName * See |remove|. */ - _removeRowsFromBookmarks: function PC__removeRowsFromBookmarks(txnName) { + _removeRowsFromBookmarks: function (txnName) { var ranges = this._view.removableSelectionRanges; var transactions = []; var removedFolders = []; @@ -1186,7 +1186,7 @@ PlacesController.prototype = { * * @note history deletes are not undoable. */ - _removeRowsFromHistory: function PC__removeRowsFromHistory() { + _removeRowsFromHistory: function () { let nodes = this._view.selectedNodes; let URIs = []; for (let i = 0; i < nodes.length; ++i) { @@ -1229,7 +1229,7 @@ PlacesController.prototype = { * * @note history deletes are not undoable. */ - _removeHistoryContainer: function PC__removeHistoryContainer(aContainerNode) { + _removeHistoryContainer: function (aContainerNode) { if (PlacesUtils.nodeIsHost(aContainerNode)) { // Site container. PlacesUtils.bhistory.removePagesFromHost(aContainerNode.title, true); @@ -1255,7 +1255,7 @@ PlacesController.prototype = { * A name for the transaction if this is being performed * as part of another operation. */ - remove: function PC_remove(aTxnName) { + remove: function (aTxnName) { if (!this._hasRemovableSelection()) return; @@ -1284,7 +1284,7 @@ PlacesController.prototype = { * @param aEvent * The dragstart event. */ - setDataTransfer: function PC_setDataTransfer(aEvent) { + setDataTransfer: function (aEvent) { let dt = aEvent.dataTransfer; let doCopy = ["copyLink", "copy", "link"].indexOf(dt.effectAllowed) != -1; @@ -1355,14 +1355,14 @@ PlacesController.prototype = { return action; }, - _releaseClipboardOwnership: function PC__releaseClipboardOwnership() { + _releaseClipboardOwnership: function () { if (this.cutNodes.length > 0) { // This clears the logical clipboard, doesn't remove data. this.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard); } }, - _clearClipboard: function PC__clearClipboard() { + _clearClipboard: function () { let xferable = Cc["@mozilla.org/widget/transferable;1"]. createInstance(Ci.nsITransferable); xferable.init(null); @@ -1373,7 +1373,7 @@ PlacesController.prototype = { this.clipboard.setData(xferable, null, Ci.nsIClipboard.kGlobalClipboard); }, - _populateClipboard: function PC__populateClipboard(aNodes, aAction) { + _populateClipboard: function (aNodes, aAction) { // This order is _important_! It controls how this and other applications // select data to be inserted based on type. let contents = [ @@ -1455,7 +1455,7 @@ PlacesController.prototype = { /** * Copy Bookmarks and Folders to the clipboard */ - copy: function PC_copy() { + copy: function () { let result = this._view.result; let didSuppressNotifications = result.suppressNotifications; if (!didSuppressNotifications) @@ -1472,7 +1472,7 @@ PlacesController.prototype = { /** * Cut Bookmarks and Folders to the clipboard */ - cut: function PC_cut() { + cut: function () { let result = this._view.result; let didSuppressNotifications = result.suppressNotifications; if (!didSuppressNotifications) @@ -1490,7 +1490,7 @@ PlacesController.prototype = { /** * Paste Bookmarks and Folders from the clipboard */ - paste: function PC_paste() { + paste: function () { // No reason to proceed if there isn't a valid insertion point. let ip = this._view.insertionPoint; if (!ip) @@ -1572,7 +1572,7 @@ PlacesController.prototype = { * @param aLivemarkInfo * a mozILivemarkInfo object. */ - cacheLivemarkInfo: function PC_cacheLivemarkInfo(aNode, aLivemarkInfo) { + cacheLivemarkInfo: function (aNode, aLivemarkInfo) { this._cachedLivemarkInfoObjects.set(aNode, aLivemarkInfo); }, @@ -1583,7 +1583,7 @@ PlacesController.prototype = { * @return true if there's a cached mozILivemarkInfo object for * aNode, false otherwise. */ - hasCachedLivemarkInfo: function PC_hasCachedLivemarkInfo(aNode) + hasCachedLivemarkInfo: function (aNode) this._cachedLivemarkInfoObjects.has(aNode), /** @@ -1593,7 +1593,7 @@ PlacesController.prototype = { * a places result node. * @return the mozILivemarkInfo object for aNode, if set, null otherwise. */ - getCachedLivemarkInfo: function PC_getCachedLivemarkInfo(aNode) + getCachedLivemarkInfo: function (aNode) this._cachedLivemarkInfoObjects.get(aNode, null) }; @@ -1618,7 +1618,7 @@ var PlacesControllerDragHelper = { * @returns true if the user is dragging over a node within the hierarchy of * the container, false otherwise. */ - draggingOverChildNode: function PCDH_draggingOverChildNode(node) { + draggingOverChildNode: function (node) { let currentNode = this.currentDropTarget; while (currentNode) { if (currentNode == node) @@ -1631,7 +1631,7 @@ var PlacesControllerDragHelper = { /** * @returns The current active drag session. Returns null if there is none. */ - getSession: function PCDH__getSession() { + getSession: function () { return this.dragService.getCurrentSession(); }, @@ -1640,7 +1640,7 @@ var PlacesControllerDragHelper = { * @param aFlavors * The flavors list of type nsIDOMDOMStringList. */ - getFirstValidFlavor: function PCDH_getFirstValidFlavor(aFlavors) { + getFirstValidFlavor: function (aFlavors) { for (let i = 0; i < aFlavors.length; i++) { if (this.GENERIC_VIEW_DROP_TYPES.indexOf(aFlavors[i]) != -1) return aFlavors[i]; @@ -1662,7 +1662,7 @@ var PlacesControllerDragHelper = { * @param ip * The insertion point where the items should be dropped. */ - canDrop: function PCDH_canDrop(ip, dt) { + canDrop: function (ip, dt) { let dropCount = dt.mozItemCount; // Check every dragged item. @@ -1724,7 +1724,7 @@ var PlacesControllerDragHelper = { * @returns True if the node can be moved, false otherwise. */ canMoveNode: - function PCDH_canMoveNode(aNode) { + function (aNode) { // Only bookmark items are movable. if (aNode.itemId == -1) return false; @@ -1743,7 +1743,7 @@ var PlacesControllerDragHelper = { * @param insertionPoint * The insertion point where the items should be dropped */ - onDrop: function PCDH_onDrop(insertionPoint, dt) { + onDrop: function (insertionPoint, dt) { let doCopy = ["copy", "link"].indexOf(dt.dropEffect) != -1; let transactions = []; diff --git a/application/palemoon/components/places/content/editBookmarkOverlay.js b/application/palemoon/components/places/content/editBookmarkOverlay.js index 69d7d32eb5..abfb83883c 100644 --- a/application/palemoon/components/places/content/editBookmarkOverlay.js +++ b/application/palemoon/components/places/content/editBookmarkOverlay.js @@ -42,7 +42,7 @@ var gEditItemOverlay = { /** * Determines the initial data for the item edited or added by this dialog */ - _determineInfo: function EIO__determineInfo(aInfo) { + _determineInfo: function (aInfo) { // hidden rows if (aInfo && aInfo.hiddenRows) this._hiddenRows = aInfo.hiddenRows; @@ -55,7 +55,7 @@ var gEditItemOverlay = { this._onPanelReady = aInfo && aInfo.onPanelReady; }, - _showHideRows: function EIO__showHideRows() { + _showHideRows: function () { var isBookmark = this._itemId != -1 && this._itemType == Ci.nsINavBookmarksService.TYPE_BOOKMARK; var isQuery = false; @@ -102,7 +102,7 @@ var gEditItemOverlay = { * * forceReadOnly - set this flag to initialize the panel to its * read-only (view) mode even if the given item is editable. */ - initPanel: function EIO_initPanel(aFor, aInfo) { + initPanel: function (aFor, aInfo) { // For sanity ensure that the implementer has uninited the panel before // trying to init it again, or we could end up leaking due to observers. if (this._initialized) @@ -266,7 +266,7 @@ var gEditItemOverlay = { * @return the new menu item. */ _appendFolderItemToMenupopup: - function EIO__appendFolderItemToMenuList(aMenupopup, aFolderId) { + function (aMenupopup, aFolderId) { // First make sure the folders-separator is visible this._element("foldersSeparator").hidden = false; @@ -279,7 +279,7 @@ var gEditItemOverlay = { return folderMenuItem; }, - _initFolderMenuList: function EIO__initFolderMenuList(aSelectedFolder) { + _initFolderMenuList: function (aSelectedFolder) { // clean up first var menupopup = this._folderMenuList.menupopup; while (menupopup.childNodes.length > 6) @@ -345,7 +345,7 @@ var gEditItemOverlay = { this._folderMenuList.disabled = this._readOnly; }, - QueryInterface: function EIO_QueryInterface(aIID) { + QueryInterface: function (aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsINavBookmarkObserver) || aIID.equals(Ci.nsISupports)) @@ -354,11 +354,11 @@ var gEditItemOverlay = { throw Cr.NS_ERROR_NO_INTERFACE; }, - _element: function EIO__element(aID) { + _element: function (aID) { return document.getElementById("editBMPanel_" + aID); }, - _editorTransactionManagerClear: function EIO__editorTransactionManagerClear(aItem) { + _editorTransactionManagerClear: function (aItem) { // Clear the editor's undo stack let transactionManager; try { @@ -378,7 +378,7 @@ var gEditItemOverlay = { } }, - _getItemStaticTitle: function EIO__getItemStaticTitle() { + _getItemStaticTitle: function () { if (this._titleOverride) return this._titleOverride; @@ -392,14 +392,14 @@ var gEditItemOverlay = { return title; }, - _initNamePicker: function EIO_initNamePicker() { + _initNamePicker: function () { var namePicker = this._element("namePicker"); namePicker.value = this._getItemStaticTitle(); namePicker.readOnly = this._readOnly; this._editorTransactionManagerClear(namePicker); }, - uninitPanel: function EIO_uninitPanel(aHideCollapsibleElements) { + uninitPanel: function (aHideCollapsibleElements) { if (aHideCollapsibleElements) { // hide the folder tree if it was previously visible var folderTreeRow = this._element("folderTreeRow"); @@ -438,18 +438,18 @@ var gEditItemOverlay = { this._readOnly = false; }, - onTagsFieldBlur: function EIO_onTagsFieldBlur() { + onTagsFieldBlur: function () { if (this._updateTags()) // if anything has changed this._mayUpdateFirstEditField("tagsField"); }, - _updateTags: function EIO__updateTags() { + _updateTags: function () { if (this._multiEdit) return this._updateMultipleTagsForItems(); return this._updateSingleTagForItem(); }, - _updateSingleTagForItem: function EIO__updateSingleTagForItem() { + _updateSingleTagForItem: function () { var currentTags = PlacesUtils.tagging.getTagsForURI(this._uri); var tags = this._getTagsArrayFromTagField(); if (tags.length > 0 || currentTags.length > 0) { @@ -494,7 +494,7 @@ var gEditItemOverlay = { * the id of the field that may be set (without the "editBMPanel_" * prefix) */ - _mayUpdateFirstEditField: function EIO__mayUpdateFirstEditField(aNewField) { + _mayUpdateFirstEditField: function (aNewField) { // * The first-edit-field behavior is not applied in the multi-edit case // * if this._firstEditedField is already set, this is not the first field, // so there's nothing to do @@ -509,7 +509,7 @@ var gEditItemOverlay = { prefs.setCharPref("browser.bookmarks.editDialog.firstEditField", aNewField); }, - _updateMultipleTagsForItems: function EIO__updateMultipleTagsForItems() { + _updateMultipleTagsForItems: function () { var tags = this._getTagsArrayFromTagField(); if (tags.length > 0 || this._allTags.length > 0) { var tagsToRemove = []; @@ -562,7 +562,7 @@ var gEditItemOverlay = { return false; }, - onNamePickerBlur: function EIO_onNamePickerBlur() { + onNamePickerBlur: function () { if (this._itemId == -1) return; @@ -582,7 +582,7 @@ var gEditItemOverlay = { } }, - onDescriptionFieldBlur: function EIO_onDescriptionFieldBlur() { + onDescriptionFieldBlur: function () { var description = this._element("descriptionField").value; if (description != PlacesUIUtils.getItemDescription(this._itemId)) { var annoObj = { name : PlacesUIUtils.DESCRIPTION_ANNO, @@ -595,7 +595,7 @@ var gEditItemOverlay = { } }, - onLocationFieldBlur: function EIO_onLocationFieldBlur() { + onLocationFieldBlur: function () { var uri; try { uri = PlacesUIUtils.createFixedURI(this._element("locationField").value); @@ -609,7 +609,7 @@ var gEditItemOverlay = { } }, - onKeywordFieldBlur: function EIO_onKeywordFieldBlur() { + onKeywordFieldBlur: function () { let oldKeyword = this._keyword; let keyword = this._keyword = this._element("keywordField").value; if (keyword != oldKeyword) { @@ -622,7 +622,7 @@ var gEditItemOverlay = { }, onLoadInSidebarCheckboxCommand: - function EIO_onLoadInSidebarCheckboxCommand() { + function () { let annoObj = { name : PlacesUIUtils.LOAD_IN_SIDEBAR_ANNO }; if (this._element("loadInSidebarCheckbox").checked) annoObj.value = true; @@ -630,7 +630,7 @@ var gEditItemOverlay = { PlacesUtils.transactionManager.doTransaction(txn); }, - toggleFolderTreeVisibility: function EIO_toggleFolderTreeVisibility() { + toggleFolderTreeVisibility: function () { var expander = this._element("foldersExpander"); var folderTreeRow = this._element("folderTreeRow"); if (!folderTreeRow.collapsed) { @@ -664,7 +664,7 @@ var gEditItemOverlay = { }, _getFolderIdFromMenuList: - function EIO__getFolderIdFromMenuList() { + function () { var selectedItem = this._folderMenuList.selectedItem; NS_ASSERT("folderId" in selectedItem, "Invalid menuitem in the folders-menulist"); @@ -680,7 +680,7 @@ var gEditItemOverlay = { * The identifier of the bookmarks folder. */ _getFolderMenuItem: - function EIO__getFolderMenuItem(aFolderId) { + function (aFolderId) { var menupopup = this._folderMenuList.menupopup; for (let i = 0; i < menupopup.childNodes.length; i++) { @@ -696,7 +696,7 @@ var gEditItemOverlay = { return this._appendFolderItemToMenupopup(menupopup, aFolderId); }, - onFolderMenuListCommand: function EIO_onFolderMenuListCommand(aEvent) { + onFolderMenuListCommand: function (aEvent) { // Set a selectedIndex attribute to show special icons this._folderMenuList.setAttribute("selectedIndex", this._folderMenuList.selectedIndex); @@ -739,7 +739,7 @@ var gEditItemOverlay = { } }, - onFolderTreeSelect: function EIO_onFolderTreeSelect() { + onFolderTreeSelect: function () { var selectedNode = this._folderTree.selectedNode; // Disable the "New Folder" button if we cannot create a new folder @@ -759,7 +759,7 @@ var gEditItemOverlay = { }, _markFolderAsRecentlyUsed: - function EIO__markFolderAsRecentlyUsed(aFolderId) { + function (aFolderId) { var txns = []; // Expire old unused recent folders @@ -789,7 +789,7 @@ var gEditItemOverlay = { * with the transaction manager. */ _getLastUsedAnnotationObject: - function EIO__getLastUsedAnnotationObject(aLastUsed) { + function (aLastUsed) { var anno = { name: LAST_USED_ANNO, type: Ci.nsIAnnotationService.TYPE_INT32, flags: 0, @@ -799,7 +799,7 @@ var gEditItemOverlay = { return anno; }, - _rebuildTagsSelectorList: function EIO__rebuildTagsSelectorList() { + _rebuildTagsSelectorList: function () { var tagsSelector = this._element("tagsSelector"); var tagsSelectorRow = this._element("tagsSelectorRow"); if (tagsSelectorRow.collapsed) @@ -842,7 +842,7 @@ var gEditItemOverlay = { } }, - toggleTagsSelector: function EIO_toggleTagsSelector() { + toggleTagsSelector: function () { var tagsSelector = this._element("tagsSelector"); var tagsSelectorRow = this._element("tagsSelectorRow"); var expander = this._element("tagsSelectorExpander"); @@ -869,14 +869,14 @@ var gEditItemOverlay = { * * @return Array of tag strings found in the field value. */ - _getTagsArrayFromTagField: function EIO__getTagsArrayFromTagField() { + _getTagsArrayFromTagField: function () { let tags = this._element("tagsField").value; return tags.trim() .split(/\s*,\s*/) // Split on commas and remove spaces. .filter(function (tag) tag.length > 0); // Kill empty tags. }, - newFolder: function EIO_newFolder() { + newFolder: function () { var ip = this._folderTree.insertionPoint; // default to the bookmarks menu folder @@ -897,7 +897,7 @@ var gEditItemOverlay = { }, // nsIDOMEventListener - handleEvent: function EIO_nsIDOMEventListener(aEvent) { + handleEvent: function (aEvent) { switch (aEvent.type) { case "CheckboxStateChange": // Update the tags field when items are checked/unchecked in the listbox @@ -927,7 +927,7 @@ var gEditItemOverlay = { }, // nsINavBookmarkObserver - onItemChanged: function EIO_onItemChanged(aItemId, aProperty, + onItemChanged: function (aItemId, aProperty, aIsAnnotationProperty, aValue, aLastModified, aItemType) { if (aProperty == "tags") { @@ -1038,7 +1038,7 @@ var gEditItemOverlay = { } }, - onItemMoved: function EIO_onItemMoved(aItemId, aOldParent, aOldIndex, + onItemMoved: function (aItemId, aOldParent, aOldIndex, aNewParent, aNewIndex, aItemType) { if (aItemId != this._itemId || aNewParent == this._getFolderIdFromMenuList()) @@ -1051,7 +1051,7 @@ var gEditItemOverlay = { this._folderMenuList.selectedItem = folderItem; }, - onItemAdded: function EIO_onItemAdded(aItemId, aParentId, aIndex, aItemType, + onItemAdded: function (aItemId, aParentId, aIndex, aItemType, aURI) { this._lastNewItem = aItemId; }, diff --git a/application/palemoon/components/places/content/moveBookmarks.js b/application/palemoon/components/places/content/moveBookmarks.js index 964604f6d3..d019e06df2 100644 --- a/application/palemoon/components/places/content/moveBookmarks.js +++ b/application/palemoon/components/places/content/moveBookmarks.js @@ -22,7 +22,7 @@ var gMoveBookmarksDialog = { PlacesUIUtils.allBookmarksFolderId; }, - onOK: function MBD_onOK(aEvent) { + onOK: function (aEvent) { var selectedNode = this.foldersTree.selectedNode; NS_ASSERT(selectedNode, "selectedNode must be set in a single-selection tree with initial selection set"); @@ -46,7 +46,7 @@ var gMoveBookmarksDialog = { } }, - newFolder: function MBD_newFolder() { + newFolder: function () { // The command is disabled when the tree is not focused this.foldersTree.focus(); goDoCommand("placesCmd_new:folder"); diff --git a/application/palemoon/components/places/content/places.js b/application/palemoon/components/places/content/places.js index 40dbcb9b86..0cdc753bca 100644 --- a/application/palemoon/components/places/content/places.js +++ b/application/palemoon/components/places/content/places.js @@ -30,7 +30,7 @@ var PlacesOrganizer = { this._places.place = "place:excludeItems=1&expandQueries=0&folder=" + leftPaneRoot; }, - selectLeftPaneQuery: function PO_selectLeftPaneQuery(aQueryName) { + selectLeftPaneQuery: function (aQueryName) { var itemId = PlacesUIUtils.leftPaneQueries[aQueryName]; this._places.selectItems([itemId]); // Forcefully expand all-bookmarks @@ -38,7 +38,7 @@ var PlacesOrganizer = { PlacesUtils.asContainer(this._places.selectedNode).containerOpen = true; }, - init: function PO_init() { + init: function () { ContentArea.init(); this._places = document.getElementById("placesList"); @@ -91,7 +91,7 @@ var PlacesOrganizer = { ContentArea.focus(); }, - QueryInterface: function PO_QueryInterface(aIID) { + QueryInterface: function (aIID) { if (aIID.equals(Components.interfaces.nsIDOMEventListener) || aIID.equals(Components.interfaces.nsISupports)) return this; @@ -99,7 +99,7 @@ var PlacesOrganizer = { throw new Components.Exception("", Components.results.NS_NOINTERFACE); }, - handleEvent: function PO_handleEvent(aEvent) { + handleEvent: function (aEvent) { if (aEvent.type != "AppCommand") return; @@ -119,7 +119,7 @@ var PlacesOrganizer = { } }, - destroy: function PO_destroy() { + destroy: function () { }, _location: null, @@ -161,13 +161,13 @@ var PlacesOrganizer = { _backHistory: [], _forwardHistory: [], - back: function PO_back() { + back: function () { this._forwardHistory.unshift(this.location); var historyEntry = this._backHistory.shift(); this._location = null; this.location = historyEntry; }, - forward: function PO_forward() { + forward: function () { this._backHistory.unshift(this.location); var historyEntry = this._forwardHistory.shift(); this._location = null; @@ -185,7 +185,7 @@ var PlacesOrganizer = { * deleting its text, this will be false. */ _cachedLeftPaneSelectedURI: null, - onPlaceSelected: function PO_onPlaceSelected(resetSearchBox) { + onPlaceSelected: function (resetSearchBox) { // Don't change the right-hand pane contents when there's no selection. if (!this._places.hasSelection) return; @@ -243,7 +243,7 @@ var PlacesOrganizer = { * @param aNode * the node to set up scope from */ - _setSearchScopeForNode: function PO__setScopeForNode(aNode) { + _setSearchScopeForNode: function (aNode) { let itemId = aNode.itemId; // Set default buttons status. @@ -279,7 +279,7 @@ var PlacesOrganizer = { * @param aEvent * The mouse event. */ - onPlacesListClick: function PO_onPlacesListClick(aEvent) { + onPlacesListClick: function (aEvent) { // Only handle clicks on tree children. if (aEvent.target.localName != "treechildren") return; @@ -299,7 +299,7 @@ var PlacesOrganizer = { /** * Handle focus changes on the places list and the current content view. */ - updateDetailsPane: function PO_updateDetailsPane() { + updateDetailsPane: function () { if (!ContentArea.currentViewOptions.showDetailsPane) return; let view = PlacesUIUtils.getViewForNode(document.activeElement); @@ -310,7 +310,7 @@ var PlacesOrganizer = { } }, - openFlatContainer: function PO_openFlatContainerFlatContainer(aContainer) { + openFlatContainer: function (aContainer) { if (aContainer.itemId != -1) this._places.selectItems([aContainer.itemId]); else if (PlacesUtils.nodeIsQuery(aContainer)) @@ -321,7 +321,7 @@ var PlacesOrganizer = { * Returns the options associated with the query currently loaded in the * main places pane. */ - getCurrentOptions: function PO_getCurrentOptions() { + getCurrentOptions: function () { return PlacesUtils.asQuery(ContentArea.currentView.result.root).queryOptions; }, @@ -329,14 +329,14 @@ var PlacesOrganizer = { * Returns the queries associated with the query currently loaded in the * main places pane. */ - getCurrentQueries: function PO_getCurrentQueries() { + getCurrentQueries: function () { return PlacesUtils.asQuery(ContentArea.currentView.result.root).getQueries(); }, /** * Open a file-picker and import the selected file into the bookmarks store */ - importFromFile: function PO_importFromFile() { + importFromFile: function () { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { if (aResult != Ci.nsIFilePicker.returnCancel && fp.fileURL) { @@ -355,7 +355,7 @@ var PlacesOrganizer = { /** * Allows simple exporting of bookmarks. */ - exportBookmarks: function PO_exportBookmarks() { + exportBookmarks: function () { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { if (aResult != Ci.nsIFilePicker.returnCancel) { @@ -375,7 +375,7 @@ var PlacesOrganizer = { /** * Populates the restore menu with the dates of the backups available. */ - populateRestoreMenu: function PO_populateRestoreMenu() { + populateRestoreMenu: function () { let restorePopup = document.getElementById("fileRestorePopup"); let dateSvc = Cc["@mozilla.org/intl/scriptabledateformat;1"]. @@ -432,7 +432,7 @@ var PlacesOrganizer = { /** * Called when a menuitem is selected from the restore menu. */ - onRestoreMenuItemClick: function PO_onRestoreMenuItemClick(aMenuItem) { + onRestoreMenuItemClick: function (aMenuItem) { Task.spawn(function() { let backupName = aMenuItem.getAttribute("value"); let backupFilePaths = yield PlacesBackups.getBackupFiles(); @@ -449,7 +449,7 @@ var PlacesOrganizer = { * Called when 'Choose File...' is selected from the restore menu. * Prompts for a file and restores bookmarks to those in the file. */ - onRestoreBookmarksFromFile: function PO_onRestoreBookmarksFromFile() { + onRestoreBookmarksFromFile: function () { let dirSvc = Cc["@mozilla.org/file/directory_service;1"]. getService(Ci.nsIProperties); let backupsDir = dirSvc.get("Desk", Ci.nsILocalFile); @@ -472,7 +472,7 @@ var PlacesOrganizer = { /** * Restores bookmarks from a JSON file. */ - restoreBookmarksFromFile: function PO_restoreBookmarksFromFile(aFile) { + restoreBookmarksFromFile: function (aFile) { // check file extension let filePath = aFile.path; if (!filePath.toLowerCase().endsWith("json") && @@ -498,7 +498,7 @@ var PlacesOrganizer = { }); }, - _showErrorAlert: function PO__showErrorAlert(aMsg) { + _showErrorAlert: function (aMsg) { var brandShortName = document.getElementById("brandStrings"). getString("brandShortName"); @@ -512,7 +512,7 @@ var PlacesOrganizer = { * The file is a JSON serialization of bookmarks, tags and any annotations * of those items. */ - backupBookmarks: function PO_backupBookmarks() { + backupBookmarks: function () { let dirSvc = Cc["@mozilla.org/file/directory_service;1"]. getService(Ci.nsIProperties); let backupsDir = dirSvc.get("Desk", Ci.nsILocalFile); @@ -534,7 +534,7 @@ var PlacesOrganizer = { _paneDisabled: false, _setDetailsFieldsDisabledState: - function PO__setDetailsFieldsDisabledState(aDisabled) { + function (aDisabled) { if (aDisabled) { document.getElementById("paneElementsBroadcaster") .setAttribute("disabled", "true"); @@ -546,7 +546,7 @@ var PlacesOrganizer = { }, _detectAndSetDetailsPaneMinimalState: - function PO__detectAndSetDetailsPaneMinimalState(aNode) { + function (aNode) { /** * The details of simple folder-items (as opposed to livemarks) or the * of livemark-children are not likely to fill the infoBox anyway, @@ -583,7 +583,7 @@ var PlacesOrganizer = { }, // NOT YET USED - updateThumbnailProportions: function PO_updateThumbnailProportions() { + updateThumbnailProportions: function () { var previewBox = document.getElementById("previewBox"); var canvas = document.getElementById("itemThumbnail"); var height = previewBox.boxObject.height; @@ -592,7 +592,7 @@ var PlacesOrganizer = { canvas.height = height; }, - _fillDetailsPane: function PO__fillDetailsPane(aNodeList) { + _fillDetailsPane: function (aNodeList) { var infoBox = document.getElementById("infoBox"); var detailsDeck = document.getElementById("detailsDeck"); @@ -716,7 +716,7 @@ var PlacesOrganizer = { }, // NOT YET USED - _updateThumbnail: function PO__updateThumbnail() { + _updateThumbnail: function () { var bo = document.getElementById("previewBox").boxObject; var width = bo.width; var height = bo.height; @@ -737,7 +737,7 @@ var PlacesOrganizer = { ctx.restore(); }, - toggleAdditionalInfoFields: function PO_toggleAdditionalInfoFields() { + toggleAdditionalInfoFields: function () { var infoBox = document.getElementById("infoBox"); var infoBoxExpander = document.getElementById("infoBoxExpander"); var infoBoxExpanderLabel = document.getElementById("infoBoxExpanderLabel"); @@ -762,7 +762,7 @@ var PlacesOrganizer = { /** * Save the current search (or advanced query) to the bookmarks root. */ - saveSearch: function PO_saveSearch() { + saveSearch: function () { // Get the place: uri for the query. // If the advanced query builder is showing, use that. var options = this.getCurrentOptions(); @@ -840,7 +840,7 @@ var PlacesSearchBox = { * @param filterString * The text to search for. */ - search: function PSB_search(filterString) { + search: function (filterString) { var PO = PlacesOrganizer; // If the user empties the search box manually, reset it and load all // contents of the current scope. @@ -909,7 +909,7 @@ var PlacesSearchBox = { /** * Finds across all history, downloads or all bookmarks. */ - findAll: function PSB_findAll() { + findAll: function () { switch (this.filterCollection) { case "history": PlacesQueryBuilder.setScope("history"); @@ -929,7 +929,7 @@ var PlacesSearchBox = { * @param aTitle * The title of the current collection. */ - updateCollectionTitle: function PSB_updateCollectionTitle(aTitle) { + updateCollectionTitle: function (aTitle) { let title = ""; // This is needed when a user performs a folder-specific search // using the scope bar, removes the search-string, and unfocuses @@ -978,14 +978,14 @@ var PlacesSearchBox = { /** * Focus the search box */ - focus: function PSB_focus() { + focus: function () { this.searchFilter.focus(); }, /** * Set up the gray text in the search bar as the Places View loads. */ - init: function PSB_init() { + init: function () { this.updateCollectionTitle(); }, @@ -999,13 +999,13 @@ var PlacesSearchBox = { return this.searchFilter.value = value; }, - showSearchUI: function PSB_showSearchUI() { + showSearchUI: function () { // Hide the advanced search controls when the user hasn't searched var searchModifiers = document.getElementById("searchModifiers"); searchModifiers.hidden = false; }, - hideSearchUI: function PSB_hideSearchUI() { + hideSearchUI: function () { var searchModifiers = document.getElementById("searchModifiers"); searchModifiers.hidden = true; } @@ -1024,7 +1024,7 @@ var PlacesQueryBuilder = { * @param aButton * the scope button that was selected */ - onScopeSelected: function PQB_onScopeSelected(aButton) { + onScopeSelected: function (aButton) { switch (aButton.id) { case "scopeBarHistory": this.setScope("history"); @@ -1054,7 +1054,7 @@ var PlacesQueryBuilder = { * The search scope: "bookmarks", "collection", "downloads" or * "history". */ - setScope: function PQB_setScope(aScope) { + setScope: function (aScope) { // Determine filterCollection, folders, and scopeButtonId based on aScope. var filterCollection; var folders = []; @@ -1130,7 +1130,7 @@ var ViewMenu = { * @returns The element for the caller to insert new items before, * null if the caller should just append to the popup. */ - _clean: function VM__clean(popup, startID, endID) { + _clean: function (popup, startID, endID) { if (endID) NS_ASSERT(startID, "meaningless to have valid endID and null startID"); if (startID) { @@ -1179,7 +1179,7 @@ var ViewMenu = { * If propertyPrefix is null, the column label is used as label and * no accesskey is assigned. */ - fillWithColumns: function VM_fillWithColumns(event, startID, endID, type, propertyPrefix) { + fillWithColumns: function (event, startID, endID, type, propertyPrefix) { var popup = event.target; var pivot = this._clean(popup, startID, endID); @@ -1242,7 +1242,7 @@ var ViewMenu = { /** * Set up the content of the view menu. */ - populateSortMenu: function VM_populateSortMenu(event) { + populateSortMenu: function (event) { this.fillWithColumns(event, "viewUnsorted", "directionSeparator", "radio", "view.sortBy."); var sortColumn = this._getSortColumn(); @@ -1273,7 +1273,7 @@ var ViewMenu = { * @param element * The menuitem element for the column */ - showHideColumn: function VM_showHideColumn(element) { + showHideColumn: function (element) { var column = element.column; var splitter = column.nextSibling; @@ -1296,7 +1296,7 @@ var ViewMenu = { * Gets the last column that was sorted. * @returns the currently sorted column, null if there is no sorted column. */ - _getSortColumn: function VM__getSortColumn() { + _getSortColumn: function () { var content = document.getElementById("placeContent"); var cols = content.columns; for (var i = 0; i < cols.count; ++i) { @@ -1319,7 +1319,7 @@ var ViewMenu = { * * If both aColumnID and aDirection are null, the view will be unsorted. */ - setSortColumn: function VM_setSortColumn(aColumn, aDirection) { + setSortColumn: function (aColumn, aDirection) { var result = document.getElementById("placeContent").result; if (!aColumn && !aDirection) { result.sortingMode = Ci.nsINavHistoryQueryOptions.SORT_BY_NONE; @@ -1380,7 +1380,7 @@ var ViewMenu = { var ContentArea = { _specialViews: new Map(), - init: function CA_init() { + init: function () { this._deck = document.getElementById("placesViewsDeck"); this._toolbar = document.getElementById("placesToolbar"); ContentTree.init(); @@ -1397,7 +1397,7 @@ var ContentArea = { * @return the view to be used for loading aQueryString. */ getContentViewForQueryString: - function CA_getContentViewForQueryString(aQueryString) { + function (aQueryString) { try { if (this._specialViews.has(aQueryString)) { let { view, options } = this._specialViews.get(aQueryString); @@ -1427,7 +1427,7 @@ var ContentArea = { * @see ContentTree.viewOptions for supported options and default values. */ setContentViewForQueryString: - function CA_setContentViewForQueryString(aQueryString, aView, aOptions) { + function (aQueryString, aView, aOptions) { if (!aQueryString || typeof aView != "object" && typeof aView != "function") throw new Components.Exception("Invalid arguments", @@ -1468,7 +1468,7 @@ var ContentArea = { /** * Applies view options. */ - _setupView: function CA__setupView() { + _setupView: function () { let options = this.currentViewOptions; // showDetailsPane. @@ -1512,7 +1512,7 @@ var ContentArea = { }; var ContentTree = { - init: function CT_init() { + init: function () { this._view = document.getElementById("placeContent"); }, @@ -1523,12 +1523,12 @@ var ContentTree = { toolbarSet: "back-button, forward-button, organizeButton, viewMenu, maintenanceButton, libraryToolbarSpacer, searchFilter" }), - openSelectedNode: function CT_openSelectedNode(aEvent) { + openSelectedNode: function (aEvent) { let view = this.view; PlacesUIUtils.openNodeWithEvent(view.selectedNode, aEvent, view); }, - onClick: function CT_onClick(aEvent) { + onClick: function (aEvent) { let node = this.view.selectedNode; if (node) { let doubleClick = aEvent.button == 0 && aEvent.detail == 2; @@ -1546,7 +1546,7 @@ var ContentTree = { } }, - onKeyPress: function CT_onKeyPress(aEvent) { + onKeyPress: function (aEvent) { if (aEvent.keyCode == KeyEvent.DOM_VK_RETURN) this.openSelectedNode(aEvent); } diff --git a/application/palemoon/components/places/content/sidebarUtils.js b/application/palemoon/components/places/content/sidebarUtils.js index 06ed537531..bf6c465664 100644 --- a/application/palemoon/components/places/content/sidebarUtils.js +++ b/application/palemoon/components/places/content/sidebarUtils.js @@ -4,7 +4,7 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. var SidebarUtils = { - handleTreeClick: function SU_handleTreeClick(aTree, aEvent, aGutterSelect) { + handleTreeClick: function (aTree, aEvent, aGutterSelect) { // right-clicks are not handled here if (aEvent.button == 2) return; @@ -61,7 +61,7 @@ var SidebarUtils = { } }, - handleTreeKeyPress: function SU_handleTreeKeyPress(aEvent) { + handleTreeKeyPress: function (aEvent) { // XXX Bug 627901: Post Fx4, this method should take a tree parameter. let tree = aEvent.target; let node = tree.selectedNode; @@ -75,7 +75,7 @@ var SidebarUtils = { * The following function displays the URL of a node that is being * hovered over. */ - handleTreeMouseMove: function SU_handleTreeMouseMove(aEvent) { + handleTreeMouseMove: function (aEvent) { if (aEvent.target.localName != "treechildren") return; @@ -97,7 +97,7 @@ var SidebarUtils = { this.setMouseoverURL(""); }, - setMouseoverURL: function SU_setMouseoverURL(aURL) { + setMouseoverURL: function (aURL) { // When the browser window is closed with an open sidebar, the sidebar // unload event happens after the browser's one. In this case // top.XULBrowserWindow has been nullified already. diff --git a/application/palemoon/components/places/content/treeView.js b/application/palemoon/components/places/content/treeView.js index aba7314700..0d28e42953 100644 --- a/application/palemoon/components/places/content/treeView.js +++ b/application/palemoon/components/places/content/treeView.js @@ -47,7 +47,7 @@ PlacesTreeView.prototype = { /** * This is called once both the result and the tree are set. */ - _finishInit: function PTV__finishInit() { + _finishInit: function () { let selection = this.selection; if (selection) selection.selectEventsSuppressed = true; @@ -88,7 +88,7 @@ PlacesTreeView.prototype = { * * @return true if aContainer is a plain container, false otherwise. */ - _isPlainContainer: function PTV__isPlainContainer(aContainer) { + _isPlainContainer: function (aContainer) { // Livemarks are always plain containers. if (this._controller.hasCachedLivemarkInfo(aContainer)) return true; @@ -137,7 +137,7 @@ PlacesTreeView.prototype = { * otherwise. */ _getRowForNode: - function PTV__getRowForNode(aNode, aForceBuild, aParentRow, aNodeIndex) { + function (aNode, aForceBuild, aParentRow, aNodeIndex) { if (aNode == this._rootNode) throw new Error("The root node is never visible"); @@ -206,7 +206,7 @@ PlacesTreeView.prototype = { * Row number. * @return [parentNode, parentRow] */ - _getParentByChildRow: function PTV__getParentByChildRow(aChildRow) { + _getParentByChildRow: function (aChildRow) { let node = this._getNodeForRow(aChildRow); let parent = (node === null) ? this._rootNode : node.parent; @@ -221,7 +221,7 @@ PlacesTreeView.prototype = { /** * Gets the node at a given row. */ - _getNodeForRow: function PTV__getNodeForRow(aRow) { + _getNodeForRow: function (aRow) { if (aRow < 0) { return null; } @@ -267,7 +267,7 @@ PlacesTreeView.prototype = { * @return the number of rows which were inserted. */ _buildVisibleSection: - function PTV__buildVisibleSection(aContainer, aFirstChildRow, aToOpen) + function (aContainer, aFirstChildRow, aToOpen) { // There's nothing to do if the container is closed. if (!aContainer.containerOpen) @@ -333,7 +333,7 @@ PlacesTreeView.prototype = { * will count the node itself plus any child node following it. */ _countVisibleRowsForNodeAtRow: - function PTV__countVisibleRowsForNodeAtRow(aNodeRow) { + function (aNodeRow) { let node = this._rows[aNodeRow]; // If it's not listed yet, we know that it's a leaf node (instanceof also @@ -353,7 +353,7 @@ PlacesTreeView.prototype = { }, _getSelectedNodesInRange: - function PTV__getSelectedNodesInRange(aFirstRow, aLastRow) { + function (aFirstRow, aLastRow) { let selection = this.selection; let rc = selection.getRangeCount(); if (rc == 0) @@ -404,7 +404,7 @@ PlacesTreeView.prototype = { * found, -1 otherwise. */ _getNewRowForRemovedNode: - function PTV__getNewRowForRemovedNode(aUpdatedContainer, aOldNode) { + function (aUpdatedContainer, aOldNode) { if (aOldNode == undefined) { return -1; } @@ -449,7 +449,7 @@ PlacesTreeView.prototype = { * The container which was updated. */ _restoreSelection: - function PTV__restoreSelection(aNodesInfo, aUpdatedContainer) { + function (aNodesInfo, aUpdatedContainer) { if (aNodesInfo.length == 0) return; @@ -485,7 +485,7 @@ PlacesTreeView.prototype = { this._tree.ensureRowIsVisible(scrollToRow); }, - _convertPRTimeToString: function PTV__convertPRTimeToString(aTime) { + _convertPRTimeToString: function (aTime) { const MS_PER_MINUTE = 60000; const MS_PER_DAY = 86400000; let timeMs = aTime / 1000; // PRTime is in microseconds @@ -524,7 +524,7 @@ PlacesTreeView.prototype = { COLUMN_TYPE_PARENTFOLDER: 10, COLUMN_TYPE_PARENTFOLDERPATH: 11, - _getColumnType: function PTV__getColumnType(aColumn) { + _getColumnType: function (aColumn) { let columnType = aColumn.element.getAttribute("anonid") || aColumn.id; switch (columnType) { @@ -554,7 +554,7 @@ PlacesTreeView.prototype = { return this.COLUMN_TYPE_UNKNOWN; }, - _sortTypeToColumnType: function PTV__sortTypeToColumnType(aSortType) { + _sortTypeToColumnType: function (aSortType) { switch (aSortType) { case Ci.nsINavHistoryQueryOptions.SORT_BY_TITLE_ASCENDING: return [this.COLUMN_TYPE_TITLE, false]; @@ -600,7 +600,7 @@ PlacesTreeView.prototype = { }, // nsINavHistoryResultObserver - nodeInserted: function PTV_nodeInserted(aParentNode, aNode, aNewIndex) { + nodeInserted: function (aParentNode, aNode, aNewIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -674,7 +674,7 @@ PlacesTreeView.prototype = { * However, we won't do this when sorted by date because dates will never * change for visits, and date sorting is the only time things are collapsed. */ - nodeRemoved: function PTV_nodeRemoved(aParentNode, aNode, aOldIndex) { + nodeRemoved: function (aParentNode, aNode, aOldIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -727,7 +727,7 @@ PlacesTreeView.prototype = { }, nodeMoved: - function PTV_nodeMoved(aNode, aOldParent, aOldIndex, aNewParent, aNewIndex) { + function (aNode, aOldParent, aOldIndex, aNewParent, aNewIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -773,7 +773,7 @@ PlacesTreeView.prototype = { } }, - _invalidateCellValue: function PTV__invalidateCellValue(aNode, + _invalidateCellValue: function (aNode, aColumnType) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) @@ -800,7 +800,7 @@ PlacesTreeView.prototype = { } }, - _populateLivemarkContainer: function PTV__populateLivemarkContainer(aNode) { + _populateLivemarkContainer: function (aNode) { PlacesUtils.livemarks.getLivemark({ id: aNode.itemId }) .then(aLivemark => { let placesNode = aNode; @@ -816,20 +816,20 @@ PlacesTreeView.prototype = { }, Components.utils.reportError); }, - nodeTitleChanged: function PTV_nodeTitleChanged(aNode, aNewTitle) { + nodeTitleChanged: function (aNode, aNewTitle) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE); }, - nodeURIChanged: function PTV_nodeURIChanged(aNode, aNewURI) { + nodeURIChanged: function (aNode, aNewURI) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_URI); }, - nodeIconChanged: function PTV_nodeIconChanged(aNode) { + nodeIconChanged: function (aNode) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE); }, nodeHistoryDetailsChanged: - function PTV_nodeHistoryDetailsChanged(aNode, aUpdatedVisitDate, + function (aNode, aUpdatedVisitDate, aUpdatedVisitCount) { if (aNode.parent && this._controller.hasCachedLivemarkInfo(aNode.parent)) { // Find the node in the parent. @@ -849,15 +849,15 @@ PlacesTreeView.prototype = { this._invalidateCellValue(aNode, this.COLUMN_TYPE_VISITCOUNT); }, - nodeTagsChanged: function PTV_nodeTagsChanged(aNode) { + nodeTagsChanged: function (aNode) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TAGS); }, - nodeKeywordChanged: function PTV_nodeKeywordChanged(aNode, aNewKeyword) { + nodeKeywordChanged: function (aNode, aNewKeyword) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_KEYWORD); }, - nodeAnnotationChanged: function PTV_nodeAnnotationChanged(aNode, aAnno) { + nodeAnnotationChanged: function (aNode, aAnno) { if (aAnno == PlacesUIUtils.DESCRIPTION_ANNO) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_DESCRIPTION); } @@ -873,17 +873,17 @@ PlacesTreeView.prototype = { } }, - nodeDateAddedChanged: function PTV_nodeDateAddedChanged(aNode, aNewValue) { + nodeDateAddedChanged: function (aNode, aNewValue) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_DATEADDED); }, nodeLastModifiedChanged: - function PTV_nodeLastModifiedChanged(aNode, aNewValue) { + function (aNode, aNewValue) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_LASTMODIFIED); }, containerStateChanged: - function PTV_containerStateChanged(aNode, aOldState, aNewState) { + function (aNode, aOldState, aNewState) { this.invalidateContainer(aNode); if (PlacesUtils.nodeIsFolder(aNode) || @@ -914,7 +914,7 @@ PlacesTreeView.prototype = { } }, - invalidateContainer: function PTV_invalidateContainer(aContainer) { + invalidateContainer: function (aContainer) { NS_ASSERT(this._result, "Need to have a result to update"); if (!this._tree) return; @@ -1020,7 +1020,7 @@ PlacesTreeView.prototype = { }, _columns: [], - _findColumnByType: function PTV__findColumnByType(aColumnType) { + _findColumnByType: function (aColumnType) { if (this._columns[aColumnType]) return this._columns[aColumnType]; @@ -1039,7 +1039,7 @@ PlacesTreeView.prototype = { return null; }, - sortingChanged: function PTV__sortingChanged(aSortingMode) { + sortingChanged: function (aSortingMode) { if (!this._tree || !this._result) return; @@ -1068,7 +1068,7 @@ PlacesTreeView.prototype = { }, _inBatchMode: false, - batching: function PTV__batching(aToggleMode) { + batching: function (aToggleMode) { if (this._inBatchMode != aToggleMode) { this._inBatchMode = this.selection.selectEventsSuppressed = aToggleMode; if (this._inBatchMode) { @@ -1107,14 +1107,14 @@ PlacesTreeView.prototype = { return val; }, - nodeForTreeIndex: function PTV_nodeForTreeIndex(aIndex) { + nodeForTreeIndex: function (aIndex) { if (aIndex > this._rows.length) throw Cr.NS_ERROR_INVALID_ARG; return this._getNodeForRow(aIndex); }, - treeIndexForNode: function PTV_treeNodeForIndex(aNode) { + treeIndexForNode: function (aNode) { // The API allows passing invisible nodes. try { return this._getRowForNode(aNode, true); @@ -1124,7 +1124,7 @@ PlacesTreeView.prototype = { return Ci.nsINavHistoryResultTreeViewer.INDEX_INVISIBLE; }, - _getResourceForNode: function PTV_getResourceForNode(aNode) + _getResourceForNode: function (aNode) { let uri = aNode.uri; NS_ASSERT(uri, "if there is no uri, we can't persist the open state"); @@ -1139,7 +1139,7 @@ PlacesTreeView.prototype = { getRowProperties: function() { return ""; }, getCellProperties: - function PTV_getCellProperties(aRow, aColumn) { + function (aRow, aColumn) { // for anonid-trees, we need to add the column-type manually var props = ""; let columnType = aColumn.element.getAttribute("anonid"); @@ -1220,7 +1220,7 @@ PlacesTreeView.prototype = { getColumnProperties: function(aColumn) { return ""; }, - isContainer: function PTV_isContainer(aRow) { + isContainer: function (aRow) { // Only leaf nodes aren't listed in the rows array. let node = this._rows[aRow]; if (node === undefined) @@ -1245,7 +1245,7 @@ PlacesTreeView.prototype = { return false; }, - isContainerOpen: function PTV_isContainerOpen(aRow) { + isContainerOpen: function (aRow) { if (this._flatList) return false; @@ -1253,7 +1253,7 @@ PlacesTreeView.prototype = { return this._rows[aRow].containerOpen; }, - isContainerEmpty: function PTV_isContainerEmpty(aRow) { + isContainerEmpty: function (aRow) { if (this._flatList) return true; @@ -1267,18 +1267,18 @@ PlacesTreeView.prototype = { return !node.hasChildren; }, - isSeparator: function PTV_isSeparator(aRow) { + isSeparator: function (aRow) { // All separators are listed in the rows array. let node = this._rows[aRow]; return node && PlacesUtils.nodeIsSeparator(node); }, - isSorted: function PTV_isSorted() { + isSorted: function () { return this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE; }, - canDrop: function PTV_canDrop(aRow, aOrientation, aDataTransfer) { + canDrop: function (aRow, aOrientation, aDataTransfer) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1290,7 +1290,7 @@ PlacesTreeView.prototype = { return ip && PlacesControllerDragHelper.canDrop(ip, aDataTransfer); }, - _getInsertionPoint: function PTV__getInsertionPoint(index, orientation) { + _getInsertionPoint: function (index, orientation) { let container = this._result.root; let dropNearItemId = -1; // When there's no selection, assume the container is the container @@ -1361,7 +1361,7 @@ PlacesTreeView.prototype = { dropNearItemId); }, - drop: function PTV_drop(aRow, aOrientation, aDataTransfer) { + drop: function (aRow, aOrientation, aDataTransfer) { // We are responsible for translating the |index| and |orientation| // parameters into a container id and index within the container, // since this information is specific to the tree view. @@ -1372,12 +1372,12 @@ PlacesTreeView.prototype = { PlacesControllerDragHelper.currentDropTarget = null; }, - getParentIndex: function PTV_getParentIndex(aRow) { + getParentIndex: function (aRow) { let [parentNode, parentRow] = this._getParentByChildRow(aRow); return parentRow; }, - hasNextSibling: function PTV_hasNextSibling(aRow, aAfterIndex) { + hasNextSibling: function (aRow, aAfterIndex) { if (aRow == this._rows.length - 1) { // The last row has no sibling. return false; @@ -1407,7 +1407,7 @@ PlacesTreeView.prototype = { getLevel: function(aRow) this._getNodeForRow(aRow).indentLevel, - getImageSrc: function PTV_getImageSrc(aRow, aColumn) { + getImageSrc: function (aRow, aColumn) { // Only the title column has an image. if (this._getColumnType(aColumn) != this.COLUMN_TYPE_TITLE) return ""; @@ -1418,7 +1418,7 @@ PlacesTreeView.prototype = { getProgressMode: function(aRow, aColumn) { }, getCellValue: function(aRow, aColumn) { }, - getCellText: function PTV_getCellText(aRow, aColumn) { + getCellText: function (aRow, aColumn) { let node = this._getNodeForRow(aRow); switch (this._getColumnType(aColumn)) { case this.COLUMN_TYPE_TITLE: @@ -1515,7 +1515,7 @@ PlacesTreeView.prototype = { return ""; }, - setTree: function PTV_setTree(aTree) { + setTree: function (aTree) { // If we are replacing the tree during a batch, there is a concrete risk // that the treeView goes out of sync, thus it's safer to end the batch now. // This is a no-op if we are not batching. @@ -1538,7 +1538,7 @@ PlacesTreeView.prototype = { } }, - toggleOpenState: function PTV_toggleOpenState(aRow) { + toggleOpenState: function (aRow) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1565,7 +1565,7 @@ PlacesTreeView.prototype = { node.containerOpen = !node.containerOpen; }, - cycleHeader: function PTV_cycleHeader(aColumn) { + cycleHeader: function (aColumn) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1697,7 +1697,7 @@ PlacesTreeView.prototype = { this._result.sortingMode = newSort; }, - isEditable: function PTV_isEditable(aRow, aColumn) { + isEditable: function (aRow, aColumn) { // At this point we only support editing the title field. if (aColumn.index != 0) return false; @@ -1740,7 +1740,7 @@ PlacesTreeView.prototype = { return true; }, - setCellText: function PTV_setCellText(aRow, aColumn, aText) { + setCellText: function (aRow, aColumn, aText) { // We may only get here if the cell is editable. let node = this._rows[aRow]; if (node.title != aText) { @@ -1749,7 +1749,7 @@ PlacesTreeView.prototype = { } }, - toggleCutNode: function PTV_toggleCutNode(aNode, aValue) { + toggleCutNode: function (aNode, aValue) { let currentVal = this._cuttingNodes.has(aNode); if (currentVal != aValue) { if (aValue) From 076489687640b302eae5f1faf0a156b245a25847 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:51:58 -0600 Subject: [PATCH 13/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/preferences. --- .../palemoon/components/preferences/advanced.js | 2 +- .../components/preferences/applicationManager.js | 10 +++++----- .../palemoon/components/preferences/cookies.js | 4 ++-- .../palemoon/components/preferences/privacy.js | 12 ++++++------ .../components/preferences/selectBookmark.js | 8 ++++---- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/application/palemoon/components/preferences/advanced.js b/application/palemoon/components/preferences/advanced.js index ec223f343c..654f9f32a6 100644 --- a/application/palemoon/components/preferences/advanced.js +++ b/application/palemoon/components/preferences/advanced.js @@ -233,7 +233,7 @@ var gAdvancedPane = { Visitor.prototype = { expected: 0, sum: 0, - QueryInterface: function listener_qi(iid) { + QueryInterface: function (iid) { if (iid.equals(Components.interfaces.nsISupports) || iid.equals(Components.interfaces.nsICacheStorageVisitor)) { return this; diff --git a/application/palemoon/components/preferences/applicationManager.js b/application/palemoon/components/preferences/applicationManager.js index 5213183b4d..6d36c693d0 100644 --- a/application/palemoon/components/preferences/applicationManager.js +++ b/application/palemoon/components/preferences/applicationManager.js @@ -10,7 +10,7 @@ var Ci = Components.interfaces; var gAppManagerDialog = { _removed: [], - init: function appManager_init() { + init: function () { this.handlerInfo = window.arguments[0]; var bundle = document.getElementById("appManagerBundle"); @@ -44,7 +44,7 @@ var gAppManagerDialog = { list.selectedIndex = 0; }, - onOK: function appManager_onOK() { + onOK: function () { if (!this._removed.length) { // return early to avoid calling the |store| method. return; @@ -56,11 +56,11 @@ var gAppManagerDialog = { this.handlerInfo.store(); }, - onCancel: function appManager_onCancel() { + onCancel: function () { // do nothing }, - remove: function appManager_remove() { + remove: function () { var list = document.getElementById("appList"); this._removed.push(list.selectedItem.app); var index = list.selectedIndex; @@ -78,7 +78,7 @@ var gAppManagerDialog = { } }, - onSelect: function appManager_onSelect() { + onSelect: function () { var list = document.getElementById("appList"); if (!list.selectedItem) { document.getElementById("remove").disabled = true; diff --git a/application/palemoon/components/preferences/cookies.js b/application/palemoon/components/preferences/cookies.js index 4fa47ee4ed..d50b8c943e 100644 --- a/application/palemoon/components/preferences/cookies.js +++ b/application/palemoon/components/preferences/cookies.js @@ -575,7 +575,7 @@ var gCookiesWindow = { removeSelectedCookies.disabled = !hasRows || !hasSelection; }, - performDeletion: function gCookiesWindow_performDeletion(deleteItems) { + performDeletion: function (deleteItems) { var psvc = Components.classes["@mozilla.org/preferences-service;1"] .getService(Components.interfaces.nsIPrefBranch); var blockFutureCookies = false; @@ -883,7 +883,7 @@ var gCookiesWindow = { } }, - _updateRemoveAllButton: function gCookiesWindow__updateRemoveAllButton() { + _updateRemoveAllButton: function () { let removeAllCookies = document.getElementById("removeAllCookies"); removeAllCookies.disabled = this._view._rowCount == 0; diff --git a/application/palemoon/components/preferences/privacy.js b/application/palemoon/components/preferences/privacy.js index e2a871acce..c1256a5336 100644 --- a/application/palemoon/components/preferences/privacy.js +++ b/application/palemoon/components/preferences/privacy.js @@ -112,7 +112,7 @@ var gPrivacyPane = { /** * Initialize the history mode menulist based on the privacy preferences */ - initializeHistoryMode: function PPP_initializeHistoryMode() + initializeHistoryMode: function () { let mode; let getVal = function (aPref) @@ -133,7 +133,7 @@ var gPrivacyPane = { /** * Update the selected pane based on the history mode menulist */ - updateHistoryModePane: function PPP_updateHistoryModePane() + updateHistoryModePane: function () { let selectedIndex = -1; switch (document.getElementById("historyMode").value) { @@ -154,7 +154,7 @@ var gPrivacyPane = { * Update the private browsing auto-start pref and the history mode * micro-management prefs based on the history mode menulist */ - updateHistoryModePrefs: function PPP_updateHistoryModePrefs() + updateHistoryModePrefs: function () { let pref = document.getElementById("browser.privatebrowsing.autostart"); switch (document.getElementById("historyMode").value) { @@ -187,7 +187,7 @@ var gPrivacyPane = { * Update the privacy micro-management controls based on the * value of the private browsing auto-start checkbox. */ - updatePrivacyMicroControls: function PPP_updatePrivacyMicroControls() + updatePrivacyMicroControls: function () { if (document.getElementById("historyMode").value == "custom") { let disabled = this._autoStartPrivateBrowsing = @@ -229,7 +229,7 @@ var gPrivacyPane = { /** * Initialize the starting state for the auto-start private browsing mode pref reverter. */ - initAutoStartPrivateBrowsingReverter: function PPP_initAutoStartPrivateBrowsingReverter() + initAutoStartPrivateBrowsingReverter: function () { let mode = document.getElementById("historyMode"); let autoStart = document.getElementById("privateBrowsingAutoStart"); @@ -239,7 +239,7 @@ var gPrivacyPane = { _lastMode: null, _lasCheckState: null, - updateAutostart: function PPP_updateAutostart() { + updateAutostart: function () { let mode = document.getElementById("historyMode"); let autoStart = document.getElementById("privateBrowsingAutoStart"); let pref = document.getElementById("browser.privatebrowsing.autostart"); diff --git a/application/palemoon/components/preferences/selectBookmark.js b/application/palemoon/components/preferences/selectBookmark.js index c7ce022c0c..f2f1e50d38 100644 --- a/application/palemoon/components/preferences/selectBookmark.js +++ b/application/palemoon/components/preferences/selectBookmark.js @@ -15,7 +15,7 @@ * closes. */ var SelectBookmarkDialog = { - init: function SBD_init() { + init: function () { document.getElementById("bookmarks").place = "place:queryType=1&folder=" + PlacesUIUtils.allBookmarksFolderId; @@ -27,7 +27,7 @@ var SelectBookmarkDialog = { * Update the disabled state of the OK button as the user changes the * selection within the view. */ - selectionChanged: function SBD_selectionChanged() { + selectionChanged: function () { var accept = document.documentElement.getButton("accept"); var bookmarks = document.getElementById("bookmarks"); var disableAcceptButton = true; @@ -38,7 +38,7 @@ var SelectBookmarkDialog = { accept.disabled = disableAcceptButton; }, - onItemDblClick: function SBD_onItemDblClick() { + onItemDblClick: function () { var bookmarks = document.getElementById("bookmarks"); var selectedNode = bookmarks.selectedNode; if (selectedNode && PlacesUtils.nodeIsURI(selectedNode)) { @@ -54,7 +54,7 @@ var SelectBookmarkDialog = { * User accepts their selection. Set all the selected URLs or the contents * of the selected folder as the list of homepages. */ - accept: function SBD_accept() { + accept: function () { var bookmarks = document.getElementById("bookmarks"); NS_ASSERT(bookmarks.hasSelection, "Should not be able to accept dialog if there is no selected URL!"); From 9e97918159696d1a0b985325033e33e15d519b78 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:52:28 -0600 Subject: [PATCH 14/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/search. --- .../search/content/engineManager.js | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/application/palemoon/components/search/content/engineManager.js b/application/palemoon/components/search/content/engineManager.js index 993d48b06d..0e34b6d6f1 100644 --- a/application/palemoon/components/search/content/engineManager.js +++ b/application/palemoon/components/search/content/engineManager.js @@ -19,7 +19,7 @@ const BROWSER_SUGGEST_PREF = "browser.search.suggest.enabled"; var gEngineView = null; var gEngineManagerDialog = { - init: function engineManager_init() { + init: function () { gEngineView = new EngineView(new EngineStore()); var suggestEnabled = Services.prefs.getBoolPref(BROWSER_SUGGEST_PREF); @@ -31,12 +31,12 @@ var gEngineManagerDialog = { Services.obs.addObserver(this, "browser-search-engine-modified", false); }, - destroy: function engineManager_destroy() { + destroy: function () { // Remove the observer Services.obs.removeObserver(this, "browser-search-engine-modified"); }, - observe: function engineManager_observe(aEngine, aTopic, aVerb) { + observe: function (aEngine, aTopic, aVerb) { if (aTopic == "browser-search-engine-modified") { aEngine.QueryInterface(Ci.nsISearchEngine); switch (aVerb) { @@ -57,7 +57,7 @@ var gEngineManagerDialog = { } }, - onOK: function engineManager_onOK() { + onOK: function () { // Set the preference var newSuggestEnabled = document.getElementById("enableSuggest").checked; Services.prefs.setBoolPref(BROWSER_SUGGEST_PREF, newSuggestEnabled); @@ -66,23 +66,23 @@ var gEngineManagerDialog = { gEngineView._engineStore.commit(); }, - onRestoreDefaults: function engineManager_onRestoreDefaults() { + onRestoreDefaults: function () { var num = gEngineView._engineStore.restoreDefaultEngines(); gEngineView.rowCountChanged(0, num); gEngineView.invalidate(); }, - showRestoreDefaults: function engineManager_showRestoreDefaults(val) { + showRestoreDefaults: function (val) { document.documentElement.getButton("extra2").disabled = !val; }, - loadAddEngines: function engineManager_loadAddEngines() { + loadAddEngines: function () { this.onOK(); window.opener.BrowserSearch.loadAddEngines(); window.close(); }, - remove: function engineManager_remove() { + remove: function () { gEngineView._engineStore.removeEngine(gEngineView.selectedEngine); var index = gEngineView.selectedIndex; gEngineView.rowCountChanged(index, -1); @@ -97,7 +97,7 @@ var gEngineManagerDialog = { * @param aDir * -1 to move the selected engine down, +1 to move it up. */ - bump: function engineManager_move(aDir) { + bump: function (aDir) { var selectedEngine = gEngineView.selectedEngine; var newIndex = gEngineView.selectedIndex - aDir; @@ -110,7 +110,7 @@ var gEngineManagerDialog = { document.getElementById("engineList").focus(); }, - editKeyword: Task.async(function* engineManager_editKeyword() { + editKeyword: Task.async(function* () { var selectedEngine = gEngineView.selectedEngine; if (!selectedEngine) return; @@ -157,7 +157,7 @@ var gEngineManagerDialog = { } }), - onSelect: function engineManager_onSelect() { + onSelect: function () { // Buttons only work if an engine is selected and it's not the last engine, // the latter is true when the selected is first and last at the same time. var lastSelected = (gEngineView.selectedIndex == gEngineView.lastIndex); @@ -197,7 +197,7 @@ function EngineMoveOp(aEngineClone, aNewIndex) { EngineMoveOp.prototype = { _engine: null, _newIndex: null, - commit: function EMO_commit() { + commit: function () { Services.search.moveEngine(this._engine, this._newIndex); } } @@ -209,7 +209,7 @@ function EngineRemoveOp(aEngineClone) { } EngineRemoveOp.prototype = { _engine: null, - commit: function ERO_commit() { + commit: function () { Services.search.removeEngine(this._engine); } } @@ -223,7 +223,7 @@ function EngineUnhideOp(aEngineClone, aNewIndex) { EngineUnhideOp.prototype = { _engine: null, _newIndex: null, - commit: function EUO_commit() { + commit: function () { this._engine.hidden = false; Services.search.moveEngine(this._engine, this._newIndex); } @@ -241,7 +241,7 @@ EngineChangeOp.prototype = { _engine: null, _prop: null, _newValue: null, - commit: function ECO_commit() { + commit: function () { this._engine[this._prop] = this._newValue; } } @@ -269,11 +269,11 @@ EngineStore.prototype = { return val; }, - _getIndexForEngine: function ES_getIndexForEngine(aEngine) { + _getIndexForEngine: function (aEngine) { return this._engines.indexOf(aEngine); }, - _getEngineByName: function ES_getEngineByName(aName) { + _getEngineByName: function (aName) { for each (var engine in this._engines) if (engine.name == aName) return engine; @@ -281,7 +281,7 @@ EngineStore.prototype = { return null; }, - _cloneEngine: function ES_cloneEngine(aEngine) { + _cloneEngine: function (aEngine) { var clonedObj={}; for (var i in aEngine) clonedObj[i] = aEngine[i]; @@ -290,11 +290,11 @@ EngineStore.prototype = { }, // Callback for Array's some(). A thisObj must be passed to some() - _isSameEngine: function ES_isSameEngine(aEngineClone) { + _isSameEngine: function (aEngineClone) { return aEngineClone.originalEngine == this.originalEngine; }, - commit: function ES_commit() { + commit: function () { var currentEngine = this._cloneEngine(Services.search.currentEngine); for (var i = 0; i < this._ops.length; i++) this._ops[i].commit(); @@ -306,11 +306,11 @@ EngineStore.prototype = { Services.search.currentEngine = currentEngine.originalEngine; }, - addEngine: function ES_addEngine(aEngine) { + addEngine: function (aEngine) { this._engines.push(this._cloneEngine(aEngine)); }, - moveEngine: function ES_moveEngine(aEngine, aNewIndex) { + moveEngine: function (aEngine, aNewIndex) { if (aNewIndex < 0 || aNewIndex > this._engines.length - 1) throw new Error("ES_moveEngine: invalid aNewIndex!"); var index = this._getIndexForEngine(aEngine); @@ -327,7 +327,7 @@ EngineStore.prototype = { this._ops.push(new EngineMoveOp(aEngine, aNewIndex)); }, - removeEngine: function ES_removeEngine(aEngine) { + removeEngine: function (aEngine) { var index = this._getIndexForEngine(aEngine); if (index == -1) throw new Error("invalid engine?"); @@ -338,7 +338,7 @@ EngineStore.prototype = { gEngineManagerDialog.showRestoreDefaults(true); }, - restoreDefaultEngines: function ES_restoreDefaultEngines() { + restoreDefaultEngines: function () { var added = 0; for (var i = 0; i < this._defaultEngines.length; ++i) { @@ -358,7 +358,7 @@ EngineStore.prototype = { return added; }, - changeEngine: function ES_changeEngine(aEngine, aProp, aNewValue) { + changeEngine: function (aEngine, aProp, aNewValue) { var index = this._getIndexForEngine(aEngine); if (index == -1) throw new Error("invalid engine?"); @@ -367,7 +367,7 @@ EngineStore.prototype = { this._ops.push(new EngineChangeOp(aEngine, aProp, aNewValue)); }, - reloadIcons: function ES_reloadIcons() { + reloadIcons: function () { this._engines.forEach(function (e) { e.uri = e.originalEngine.uri; }); From 8018d9393e71324250ca5e784d5a126dae8e02e8 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:52:58 -0600 Subject: [PATCH 15/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/sessionstore. --- .../components/sessionstore/DocumentUtils.jsm | 6 +- .../sessionstore/SessionStorage.jsm | 12 +- .../components/sessionstore/SessionStore.jsm | 276 +++++++++--------- .../sessionstore/XPathGenerator.jsm | 10 +- .../components/sessionstore/_SessionFile.jsm | 30 +- .../sessionstore/nsSessionStartup.js | 12 +- 6 files changed, 173 insertions(+), 173 deletions(-) diff --git a/application/palemoon/components/sessionstore/DocumentUtils.jsm b/application/palemoon/components/sessionstore/DocumentUtils.jsm index 6b3f729b54..867a6744ba 100644 --- a/application/palemoon/components/sessionstore/DocumentUtils.jsm +++ b/application/palemoon/components/sessionstore/DocumentUtils.jsm @@ -25,7 +25,7 @@ this.DocumentUtils = { * @return object * Form data encoded in an object. */ - getFormData: function DocumentUtils_getFormData(aDocument) { + getFormData: function (aDocument) { let formNodes = aDocument.evaluate( XPathGenerator.restorableFormNodes, aDocument, @@ -117,7 +117,7 @@ this.DocumentUtils = { * @param aData * Object defining form data. */ - mergeFormData: function DocumentUtils_mergeFormData(aDocument, aData) { + mergeFormData: function (aDocument, aData) { if ("xpath" in aData) { for each (let [xpath, value] in Iterator(aData.xpath)) { let node = XPathGenerator.resolve(aDocument, xpath); @@ -155,7 +155,7 @@ this.DocumentUtils = { * DOMDocument node belongs to. If not defined, node.ownerDocument * is used. */ - restoreFormValue: function DocumentUtils_restoreFormValue(aNode, aValue, aDocument) { + restoreFormValue: function (aNode, aValue, aDocument) { aDocument = aDocument || aNode.ownerDocument; let eventType; diff --git a/application/palemoon/components/sessionstore/SessionStorage.jsm b/application/palemoon/components/sessionstore/SessionStorage.jsm index 64aef35a52..f1320df7ee 100644 --- a/application/palemoon/components/sessionstore/SessionStorage.jsm +++ b/application/palemoon/components/sessionstore/SessionStorage.jsm @@ -20,7 +20,7 @@ this.SessionStorage = { * @param aFullData * always return privacy sensitive data (use with care) */ - serialize: function ssto_serialize(aDocShell, aFullData) { + serialize: function (aDocShell, aFullData) { return DomStorage.read(aDocShell, aFullData); }, @@ -31,7 +31,7 @@ this.SessionStorage = { * @param aStorageData * Storage data to be restored */ - deserialize: function ssto_deserialize(aDocShell, aStorageData) { + deserialize: function (aDocShell, aStorageData) { DomStorage.write(aDocShell, aStorageData); } }; @@ -46,7 +46,7 @@ var DomStorage = { * @param aFullData * Always return privacy sensitive data (use with care) */ - read: function DomStorage_read(aDocShell, aFullData) { + read: function (aDocShell, aFullData) { let data = {}; let isPinned = aDocShell.isAppTab; let shistory = aDocShell.sessionHistory; @@ -81,7 +81,7 @@ var DomStorage = { * @param aStorageData * Storage data to be restored */ - write: function DomStorage_write(aDocShell, aStorageData) { + write: function (aDocShell, aStorageData) { for (let [host, data] in Iterator(aStorageData)) { let uri = Services.io.newURI(host, null, null); let principal = Services.scriptSecurityManager.getDocShellCodebasePrincipal(uri, aDocShell); @@ -116,7 +116,7 @@ var DomStorage = { * @param aDocShell * A tab's docshell (containing the sessionStorage) */ - _readEntry: function DomStorage_readEntry(aPrincipal, aDocShell) { + _readEntry: function (aPrincipal, aDocShell) { let hostData = {}; let storage; @@ -152,7 +152,7 @@ var History = { * @param aDocShell * That tab's docshell */ - getPrincipalForEntry: function History_getPrincipalForEntry(aHistory, + getPrincipalForEntry: function (aHistory, aIndex, aDocShell) { try { diff --git a/application/palemoon/components/sessionstore/SessionStore.jsm b/application/palemoon/components/sessionstore/SessionStore.jsm index e19a578f41..d7cd9ea6da 100644 --- a/application/palemoon/components/sessionstore/SessionStore.jsm +++ b/application/palemoon/components/sessionstore/SessionStore.jsm @@ -109,7 +109,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "ScratchpadManager", "resource://devtools/client/scratchpad/scratchpad-manager.jsm"); Object.defineProperty(this, "HUDService", { - get: function HUDService_getter() { + get: function () { let devtools = Cu.import("resource://devtools/shared/Loader.jsm", {}).devtools; return devtools.require("devtools/client/webconsole/hudservice").HUDService; }, @@ -143,103 +143,103 @@ this.SessionStore = { SessionStoreInternal.canRestoreLastSession = val; }, - init: function ss_init(aWindow) { + init: function (aWindow) { return SessionStoreInternal.init(aWindow); }, - getBrowserState: function ss_getBrowserState() { + getBrowserState: function () { return SessionStoreInternal.getBrowserState(); }, - setBrowserState: function ss_setBrowserState(aState) { + setBrowserState: function (aState) { SessionStoreInternal.setBrowserState(aState); }, - getWindowState: function ss_getWindowState(aWindow) { + getWindowState: function (aWindow) { return SessionStoreInternal.getWindowState(aWindow); }, - setWindowState: function ss_setWindowState(aWindow, aState, aOverwrite) { + setWindowState: function (aWindow, aState, aOverwrite) { SessionStoreInternal.setWindowState(aWindow, aState, aOverwrite); }, - getTabState: function ss_getTabState(aTab) { + getTabState: function (aTab) { return SessionStoreInternal.getTabState(aTab); }, - setTabState: function ss_setTabState(aTab, aState) { + setTabState: function (aTab, aState) { SessionStoreInternal.setTabState(aTab, aState); }, - duplicateTab: function ss_duplicateTab(aWindow, aTab, aDelta) { + duplicateTab: function (aWindow, aTab, aDelta) { return SessionStoreInternal.duplicateTab(aWindow, aTab, aDelta); }, - getClosedTabCount: function ss_getClosedTabCount(aWindow) { + getClosedTabCount: function (aWindow) { return SessionStoreInternal.getClosedTabCount(aWindow); }, - getClosedTabData: function ss_getClosedTabDataAt(aWindow) { + getClosedTabData: function (aWindow) { return SessionStoreInternal.getClosedTabData(aWindow); }, - undoCloseTab: function ss_undoCloseTab(aWindow, aIndex) { + undoCloseTab: function (aWindow, aIndex) { return SessionStoreInternal.undoCloseTab(aWindow, aIndex); }, - forgetClosedTab: function ss_forgetClosedTab(aWindow, aIndex) { + forgetClosedTab: function (aWindow, aIndex) { return SessionStoreInternal.forgetClosedTab(aWindow, aIndex); }, - getClosedWindowCount: function ss_getClosedWindowCount() { + getClosedWindowCount: function () { return SessionStoreInternal.getClosedWindowCount(); }, - getClosedWindowData: function ss_getClosedWindowData() { + getClosedWindowData: function () { return SessionStoreInternal.getClosedWindowData(); }, - undoCloseWindow: function ss_undoCloseWindow(aIndex) { + undoCloseWindow: function (aIndex) { return SessionStoreInternal.undoCloseWindow(aIndex); }, - forgetClosedWindow: function ss_forgetClosedWindow(aIndex) { + forgetClosedWindow: function (aIndex) { return SessionStoreInternal.forgetClosedWindow(aIndex); }, - getWindowValue: function ss_getWindowValue(aWindow, aKey) { + getWindowValue: function (aWindow, aKey) { return SessionStoreInternal.getWindowValue(aWindow, aKey); }, - setWindowValue: function ss_setWindowValue(aWindow, aKey, aStringValue) { + setWindowValue: function (aWindow, aKey, aStringValue) { SessionStoreInternal.setWindowValue(aWindow, aKey, aStringValue); }, - deleteWindowValue: function ss_deleteWindowValue(aWindow, aKey) { + deleteWindowValue: function (aWindow, aKey) { SessionStoreInternal.deleteWindowValue(aWindow, aKey); }, - getTabValue: function ss_getTabValue(aTab, aKey) { + getTabValue: function (aTab, aKey) { return SessionStoreInternal.getTabValue(aTab, aKey); }, - setTabValue: function ss_setTabValue(aTab, aKey, aStringValue) { + setTabValue: function (aTab, aKey, aStringValue) { SessionStoreInternal.setTabValue(aTab, aKey, aStringValue); }, - deleteTabValue: function ss_deleteTabValue(aTab, aKey) { + deleteTabValue: function (aTab, aKey) { SessionStoreInternal.deleteTabValue(aTab, aKey); }, - persistTabAttribute: function ss_persistTabAttribute(aName) { + persistTabAttribute: function (aName) { SessionStoreInternal.persistTabAttribute(aName); }, - restoreLastSession: function ss_restoreLastSession() { + restoreLastSession: function () { SessionStoreInternal.restoreLastSession(); }, - checkPrivacyLevel: function ss_checkPrivacyLevel(aIsHTTPS, aUseDefaultPref) { + checkPrivacyLevel: function (aIsHTTPS, aUseDefaultPref) { return SessionStoreInternal.checkPrivacyLevel(aIsHTTPS, aUseDefaultPref); } }; @@ -354,7 +354,7 @@ var SessionStoreInternal = { /** * Initialize the component */ - initService: function ssi_initService() { + initService: function () { if (this._sessionInitialized) { return; } @@ -375,7 +375,7 @@ var SessionStoreInternal = { ); }, - initSession: function ssi_initSession() { + initSession: function () { let ss = gSessionStartup; try { if (ss.doRestore() || @@ -464,7 +464,7 @@ var SessionStoreInternal = { this._promiseInitialization.resolve(); }, - _initEncoding : function ssi_initEncoding() { + _initEncoding : function () { // The (UTF-8) encoder used to write to files. XPCOMUtils.defineLazyGetter(this, "_writeFileEncoder", function () { return new TextEncoder(); @@ -508,7 +508,7 @@ var SessionStoreInternal = { }, - _initWindow: function ssi_initWindow(aWindow) { + _initWindow: function (aWindow) { if (aWindow) { this.onLoad(aWindow); } else if (this._loadState == STATE_STOPPED) { @@ -527,7 +527,7 @@ var SessionStoreInternal = { * This function also initializes the component if it is not * initialized yet. */ - init: function ssi_init(aWindow) { + init: function (aWindow) { let self = this; this.initService(); return this._promiseInitialization.promise.then( @@ -541,7 +541,7 @@ var SessionStoreInternal = { * Called on application shutdown, after notifications: * quit-application-granted, quit-application */ - _uninit: function ssi_uninit() { + _uninit: function () { // save all data for session resuming if (this._sessionInitialized) this.saveState(true); @@ -559,7 +559,7 @@ var SessionStoreInternal = { /** * Handle notifications */ - observe: function ssi_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { if (this._disabledForMultiProcess) return; @@ -601,7 +601,7 @@ var SessionStoreInternal = { * This method handles incoming messages sent by the session store content * script and thus enables communication with OOP tabs. */ - receiveMessage: function ssi_receiveMessage(aMessage) { + receiveMessage: function (aMessage) { var browser = aMessage.target; var win = browser.ownerDocument.defaultView; @@ -625,7 +625,7 @@ var SessionStoreInternal = { /** * Implement nsIDOMEventListener for handling various window and tab events */ - handleEvent: function ssi_handleEvent(aEvent) { + handleEvent: function (aEvent) { if (this._disabledForMultiProcess) return; @@ -676,7 +676,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onLoad: function ssi_onLoad(aWindow) { + onLoad: function (aWindow) { // return if window has already been initialized if (aWindow && aWindow.__SSi && this._windows[aWindow.__SSi]) return; @@ -845,7 +845,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onOpen: function ssi_onOpen(aWindow) { + onOpen: function (aWindow) { var _this = this; aWindow.addEventListener("load", function(aEvent) { aEvent.currentTarget.removeEventListener("load", arguments.callee, false); @@ -861,7 +861,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onClose: function ssi_onClose(aWindow) { + onClose: function (aWindow) { // this window was about to be restored - conserve its original data, if any let isFullyLoaded = this._isWindowLoaded(aWindow); if (!isFullyLoaded) { @@ -949,7 +949,7 @@ var SessionStoreInternal = { /** * On quit application requested */ - onQuitApplicationRequested: function ssi_onQuitApplicationRequested() { + onQuitApplicationRequested: function () { // get a current snapshot of all windows this._forEachBrowserWindow(function(aWindow) { this._collectWindowData(aWindow); @@ -965,7 +965,7 @@ var SessionStoreInternal = { /** * On quit application granted */ - onQuitApplicationGranted: function ssi_onQuitApplicationGranted() { + onQuitApplicationGranted: function () { // freeze the data at what we've got (ignoring closing windows) this._loadState = STATE_QUITTING; }, @@ -973,7 +973,7 @@ var SessionStoreInternal = { /** * On last browser window close */ - onLastWindowCloseGranted: function ssi_onLastWindowCloseGranted() { + onLastWindowCloseGranted: function () { // last browser window is quitting. // remember to restore the last window when another browser window is opened // do not account for pref(resume_session_once) at this point, as it might be @@ -986,7 +986,7 @@ var SessionStoreInternal = { * @param aData * String type of quitting */ - onQuitApplication: function ssi_onQuitApplication(aData) { + onQuitApplication: function (aData) { if (aData == "restart") { this._prefBranch.setBoolPref("sessionstore.resume_session_once", true); // The browser:purge-session-history notification fires after the @@ -1019,7 +1019,7 @@ var SessionStoreInternal = { /** * On purge of session history */ - onPurgeSessionHistory: function ssi_onPurgeSessionHistory() { + onPurgeSessionHistory: function () { var _this = this; _SessionFile.wipe(); // If the browser is shutting down, simply return after clearing the @@ -1070,7 +1070,7 @@ var SessionStoreInternal = { * @param aData * String domain data */ - onPurgeDomainData: function ssi_onPurgeDomainData(aData) { + onPurgeDomainData: function (aData) { // does a session history entry contain a url for the given domain? function containsDomain(aEntry) { try { @@ -1128,7 +1128,7 @@ var SessionStoreInternal = { * @param aData * String preference changed */ - onPrefChange: function ssi_onPrefChange(aData) { + onPrefChange: function (aData) { switch (aData) { // if the user decreases the max number of closed tabs they want // preserved update our internal states to match that max @@ -1171,7 +1171,7 @@ var SessionStoreInternal = { /** * On timer callback */ - onTimerCallback: function ssi_onTimerCallback() { + onTimerCallback: function () { this._saveTimer = null; this.saveState(); }, @@ -1185,7 +1185,7 @@ var SessionStoreInternal = { * @param aNoNotification * bool Do not save state if we're updating an existing tab */ - onTabAdd: function ssi_onTabAdd(aWindow, aTab, aNoNotification) { + onTabAdd: function (aWindow, aTab, aNoNotification) { let browser = aTab.linkedBrowser; browser.addEventListener("load", this, true); @@ -1206,7 +1206,7 @@ var SessionStoreInternal = { * @param aNoNotification * bool Do not save state if we're updating an existing tab */ - onTabRemove: function ssi_onTabRemove(aWindow, aTab, aNoNotification) { + onTabRemove: function (aWindow, aTab, aNoNotification) { let browser = aTab.linkedBrowser; browser.removeEventListener("load", this, true); @@ -1240,7 +1240,7 @@ var SessionStoreInternal = { * @param aTab * Tab reference */ - onTabClose: function ssi_onTabClose(aWindow, aTab) { + onTabClose: function (aWindow, aTab) { // notify the tabbrowser that the tab state will be retrieved for the last time // (so that extension authors can easily set data on soon-to-be-closed tabs) var event = aWindow.document.createEvent("Events"); @@ -1281,7 +1281,7 @@ var SessionStoreInternal = { * @param aBrowser * Browser reference */ - onTabLoad: function ssi_onTabLoad(aWindow, aBrowser) { + onTabLoad: function (aWindow, aBrowser) { // react on "load" and solitary "pageshow" events (the first "pageshow" // following "load" is too late for deleting the data caches) // It's possible to get a load event after calling stop on a browser (when @@ -1305,7 +1305,7 @@ var SessionStoreInternal = { * @param aBrowser * Browser reference */ - onTabInput: function ssi_onTabInput(aWindow, aBrowser) { + onTabInput: function (aWindow, aBrowser) { // deleting __SS_formDataSaved will cause us to recollect form data delete aBrowser.__SS_formDataSaved; @@ -1317,7 +1317,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onTabSelect: function ssi_onTabSelect(aWindow) { + onTabSelect: function (aWindow) { if (this._loadState == STATE_RUNNING) { this._windows[aWindow.__SSi].selected = aWindow.gBrowser.tabContainer.selectedIndex; @@ -1332,7 +1332,7 @@ var SessionStoreInternal = { } }, - onTabShow: function ssi_onTabShow(aWindow, aTab) { + onTabShow: function (aWindow, aTab) { // If the tab hasn't been restored yet, move it into the right bucket if (aTab.linkedBrowser.__SS_restoreState && aTab.linkedBrowser.__SS_restoreState == TAB_STATE_NEEDS_RESTORE) { @@ -1348,7 +1348,7 @@ var SessionStoreInternal = { this.saveStateDelayed(aWindow); }, - onTabHide: function ssi_onTabHide(aWindow, aTab) { + onTabHide: function (aWindow, aTab) { // If the tab hasn't been restored yet, move it into the right bucket if (aTab.linkedBrowser.__SS_restoreState && aTab.linkedBrowser.__SS_restoreState == TAB_STATE_NEEDS_RESTORE) { @@ -1362,11 +1362,11 @@ var SessionStoreInternal = { /* ........ nsISessionStore API .............. */ - getBrowserState: function ssi_getBrowserState() { + getBrowserState: function () { return this._toJSONString(this._getCurrentState()); }, - setBrowserState: function ssi_setBrowserState(aState) { + setBrowserState: function (aState) { this._handleClosedWindows(); try { @@ -1406,7 +1406,7 @@ var SessionStoreInternal = { this.restoreWindow(window, state, true); }, - getWindowState: function ssi_getWindowState(aWindow) { + getWindowState: function (aWindow) { if ("__SSi" in aWindow) { return this._toJSONString(this._getWindowState(aWindow)); } @@ -1419,14 +1419,14 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - setWindowState: function ssi_setWindowState(aWindow, aState, aOverwrite) { + setWindowState: function (aWindow, aState, aOverwrite) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); this.restoreWindow(aWindow, aState, aOverwrite); }, - getTabState: function ssi_getTabState(aTab) { + getTabState: function (aTab) { if (!aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1438,7 +1438,7 @@ var SessionStoreInternal = { return this._toJSONString(tabState); }, - setTabState: function ssi_setTabState(aTab, aState) { + setTabState: function (aTab, aState) { var tabState = JSON.parse(aState); if (!tabState.entries || !aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1448,7 +1448,7 @@ var SessionStoreInternal = { this.restoreHistoryPrecursor(window, [aTab], [tabState], 0, 0, 0); }, - duplicateTab: function ssi_duplicateTab(aWindow, aTab, aDelta) { + duplicateTab: function (aWindow, aTab, aDelta) { if (!aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi || !aWindow.getBrowser) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1471,7 +1471,7 @@ var SessionStoreInternal = { return newTab; }, - getClosedTabCount: function ssi_getClosedTabCount(aWindow) { + getClosedTabCount: function (aWindow) { if ("__SSi" in aWindow) { return this._windows[aWindow.__SSi]._closedTabs.length; } @@ -1483,7 +1483,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - getClosedTabData: function ssi_getClosedTabDataAt(aWindow) { + getClosedTabData: function (aWindow) { if ("__SSi" in aWindow) { return this._toJSONString(this._windows[aWindow.__SSi]._closedTabs); } @@ -1496,7 +1496,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - undoCloseTab: function ssi_undoCloseTab(aWindow, aIndex) { + undoCloseTab: function (aWindow, aIndex) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1528,7 +1528,7 @@ var SessionStoreInternal = { return tab; }, - forgetClosedTab: function ssi_forgetClosedTab(aWindow, aIndex) { + forgetClosedTab: function (aWindow, aIndex) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1543,15 +1543,15 @@ var SessionStoreInternal = { closedTabs.splice(aIndex, 1); }, - getClosedWindowCount: function ssi_getClosedWindowCount() { + getClosedWindowCount: function () { return this._closedWindows.length; }, - getClosedWindowData: function ssi_getClosedWindowData() { + getClosedWindowData: function () { return this._toJSONString(this._closedWindows); }, - undoCloseWindow: function ssi_undoCloseWindow(aIndex) { + undoCloseWindow: function (aIndex) { if (!(aIndex in this._closedWindows)) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1562,7 +1562,7 @@ var SessionStoreInternal = { return window; }, - forgetClosedWindow: function ssi_forgetClosedWindow(aIndex) { + forgetClosedWindow: function (aIndex) { // default to the most-recently closed window aIndex = aIndex || 0; if (!(aIndex in this._closedWindows)) @@ -1572,7 +1572,7 @@ var SessionStoreInternal = { this._closedWindows.splice(aIndex, 1); }, - getWindowValue: function ssi_getWindowValue(aWindow, aKey) { + getWindowValue: function (aWindow, aKey) { if ("__SSi" in aWindow) { var data = this._windows[aWindow.__SSi].extData || {}; return data[aKey] || ""; @@ -1586,7 +1586,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - setWindowValue: function ssi_setWindowValue(aWindow, aKey, aStringValue) { + setWindowValue: function (aWindow, aKey, aStringValue) { if (aWindow.__SSi) { if (!this._windows[aWindow.__SSi].extData) { this._windows[aWindow.__SSi].extData = {}; @@ -1599,13 +1599,13 @@ var SessionStoreInternal = { } }, - deleteWindowValue: function ssi_deleteWindowValue(aWindow, aKey) { + deleteWindowValue: function (aWindow, aKey) { if (aWindow.__SSi && this._windows[aWindow.__SSi].extData && this._windows[aWindow.__SSi].extData[aKey]) delete this._windows[aWindow.__SSi].extData[aKey]; }, - getTabValue: function ssi_getTabValue(aTab, aKey) { + getTabValue: function (aTab, aKey) { let data = {}; if (aTab.__SS_extdata) { data = aTab.__SS_extdata; @@ -1617,7 +1617,7 @@ var SessionStoreInternal = { return data[aKey] || ""; }, - setTabValue: function ssi_setTabValue(aTab, aKey, aStringValue) { + setTabValue: function (aTab, aKey, aStringValue) { // If the tab hasn't been restored, then set the data there, otherwise we // could lose newly added data. let saveTo; @@ -1635,7 +1635,7 @@ var SessionStoreInternal = { this.saveStateDelayed(aTab.ownerDocument.defaultView); }, - deleteTabValue: function ssi_deleteTabValue(aTab, aKey) { + deleteTabValue: function (aTab, aKey) { // We want to make sure that if data is accessed early, we attempt to delete // that data from __SS_data as well. Otherwise we'll throw in cases where // data can be set or read. @@ -1651,7 +1651,7 @@ var SessionStoreInternal = { delete deleteFrom[aKey]; }, - persistTabAttribute: function ssi_persistTabAttribute(aName) { + persistTabAttribute: function (aName) { if (TabAttributes.persist(aName)) { this.saveStateDelayed(); } @@ -1664,7 +1664,7 @@ var SessionStoreInternal = { * that window will be opened into that winddow. Otherwise new windows will * be opened. */ - restoreLastSession: function ssi_restoreLastSession() { + restoreLastSession: function () { // Use the public getter since it also checks PB mode if (!this.canRestoreLastSession) throw (Components.returnCode = Cr.NS_ERROR_FAILURE); @@ -1776,7 +1776,7 @@ var SessionStoreInternal = { * canOverwriteTabs: all of the current tabs are home pages and we * can overwrite them */ - _prepWindowToRestoreInto: function ssi_prepWindowToRestoreInto(aWindow) { + _prepWindowToRestoreInto: function (aWindow) { if (!aWindow) return [false, false]; @@ -1830,7 +1830,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _saveWindowHistory: function ssi_saveWindowHistory(aWindow) { + _saveWindowHistory: function (aWindow) { var tabbrowser = aWindow.gBrowser; var tabs = tabbrowser.tabs; var tabsData = this._windows[aWindow.__SSi].tabs = []; @@ -1849,7 +1849,7 @@ var SessionStoreInternal = { * always return privacy sensitive data (use with care) * @returns object */ - _collectTabData: function ssi_collectTabData(aTab, aFullData) { + _collectTabData: function (aTab, aFullData) { var tabData = { entries: [], lastAccessed: aTab.lastAccessed }; var browser = aTab.linkedBrowser; @@ -2013,7 +2013,7 @@ var SessionStoreInternal = { * @returns object */ _serializeHistoryEntry: - function ssi_serializeHistoryEntry(aEntry, aFullData, aIsPinned, aHostSchemeData) { + function (aEntry, aFullData, aIsPinned, aHostSchemeData) { var entry = { url: aEntry.URI.spec }; try { @@ -2152,7 +2152,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateTextAndScrollData: function ssi_updateTextAndScrollData(aWindow) { + _updateTextAndScrollData: function (aWindow) { var browsers = aWindow.gBrowser.browsers; this._windows[aWindow.__SSi].tabs.forEach(function (tabData, i) { try { @@ -2175,7 +2175,7 @@ var SessionStoreInternal = { * always return privacy sensitive data (use with care) */ _updateTextAndScrollDataForTab: - function ssi_updateTextAndScrollDataForTab(aWindow, aBrowser, aTabData, aFullData) { + function (aWindow, aBrowser, aTabData, aFullData) { // we shouldn't update data for incompletely initialized tabs if (aBrowser.__SS_data && aBrowser.__SS_tabStillLoading) return; @@ -2223,7 +2223,7 @@ var SessionStoreInternal = { * the tab is pinned and should be treated differently for privacy */ _updateTextAndScrollDataForFrame: - function ssi_updateTextAndScrollDataForFrame(aWindow, aContent, aData, + function (aWindow, aContent, aData, aUpdateFormData, aFullData, aIsPinned) { for (var i = 0; i < aContent.frames.length; i++) { if (aData.children && aData.children[i]) @@ -2273,7 +2273,7 @@ var SessionStoreInternal = { * @param aContent is a frame reference * @returns the title style sheet determined to be enabled (empty string if none) */ - _getSelectedPageStyle: function ssi_getSelectedPageStyle(aContent) { + _getSelectedPageStyle: function (aContent) { const forScreen = /(?:^|,)\s*(?:all|screen)\s*(?:,|$)/i; for (let i = 0; i < aContent.document.styleSheets.length; i++) { let ss = aContent.document.styleSheets[i]; @@ -2302,7 +2302,7 @@ var SessionStoreInternal = { * aCheckPrivacy */ _extractHostsForCookiesFromEntry: - function ssi_extractHostsForCookiesFromEntry(aEntry, aHosts, aCheckPrivacy, aIsPinned) { + function (aEntry, aHosts, aCheckPrivacy, aIsPinned) { let host = aEntry._host, scheme = aEntry._scheme; @@ -2343,7 +2343,7 @@ var SessionStoreInternal = { * aCheckPrivacy */ _extractHostsForCookiesFromHostScheme: - function ssi_extractHostsForCookiesFromHostScheme(aHost, aScheme, aHosts, aCheckPrivacy, aIsPinned) { + function (aHost, aScheme, aHosts, aCheckPrivacy, aIsPinned) { // host and scheme may not be set (for about: urls for example), in which // case testing scheme will be sufficient. if (/https?/.test(aScheme) && !aHosts[aHost] && @@ -2363,7 +2363,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateCookieHosts: function ssi_updateCookieHosts(aWindow) { + _updateCookieHosts: function (aWindow) { var hosts = this._internalWindows[aWindow.__SSi].hosts = {}; // Since _updateCookiesHosts is only ever called for open windows during a @@ -2386,7 +2386,7 @@ var SessionStoreInternal = { * JS object containing window data references * { id: winData, etc. } */ - _updateCookies: function ssi_updateCookies(aWindows) { + _updateCookies: function (aWindows) { function addCookieToHash(aHash, aHost, aPath, aName, aCookie) { // lazily build up a 3-dimensional hash, with // aHost, aPath, and aName as keys @@ -2452,7 +2452,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateWindowFeatures: function ssi_updateWindowFeatures(aWindow) { + _updateWindowFeatures: function (aWindow) { var winData = this._windows[aWindow.__SSi]; WINDOW_ATTRIBUTES.forEach(function(aAttr) { @@ -2482,7 +2482,7 @@ var SessionStoreInternal = { * Bool collect pinned tabs only * @returns object */ - _getCurrentState: function ssi_getCurrentState(aUpdateAll, aPinnedOnly) { + _getCurrentState: function (aUpdateAll, aPinnedOnly) { this._handleClosedWindows(); var activeWindow = this._getMostRecentBrowserWindow(); @@ -2610,7 +2610,7 @@ var SessionStoreInternal = { * Window reference * @returns string */ - _getWindowState: function ssi_getWindowState(aWindow) { + _getWindowState: function (aWindow) { if (!this._isWindowLoaded(aWindow)) return this._statesToRestore[aWindow.__SS_restoreID]; @@ -2626,7 +2626,7 @@ var SessionStoreInternal = { return { windows: [winData] }; }, - _collectWindowData: function ssi_collectWindowData(aWindow) { + _collectWindowData: function (aWindow) { if (!this._isWindowLoaded(aWindow)) return; @@ -2658,7 +2658,7 @@ var SessionStoreInternal = { * @param aFollowUp * bool this isn't the restoration of the first window */ - restoreWindow: function ssi_restoreWindow(aWindow, aState, aOverwriteTabs, aFollowUp) { + restoreWindow: function (aWindow, aState, aOverwriteTabs, aFollowUp) { if (!aFollowUp) { this.windowToFocus = aWindow; } @@ -2853,7 +2853,7 @@ var SessionStoreInternal = { * @param aSelectedTab * Index of selected tab (1 is first tab, 0 no selected tab) */ - _setTabsRestoringOrder : function ssi__setTabsRestoringOrder( + _setTabsRestoringOrder : function ( aTabBrowser, aTabs, aTabData, aSelectedTab) { // Store the selected tab. Need to substract one to get the index in aTabs. @@ -2939,7 +2939,7 @@ var SessionStoreInternal = { * restored/loaded immediately even if restore_on_demand = true */ restoreHistoryPrecursor: - function ssi_restoreHistoryPrecursor(aWindow, aTabs, aTabData, aSelectTab, + function (aWindow, aTabs, aTabData, aSelectTab, aIx, aCount, aRestoreImmediately = false) { var tabbrowser = aWindow.gBrowser; @@ -3079,7 +3079,7 @@ var SessionStoreInternal = { * restored/loaded immediately even if restore_on_demand = true */ restoreHistory: - function ssi_restoreHistory(aWindow, aTabs, aTabData, aIdMap, aDocIdentMap, + function (aWindow, aTabs, aTabData, aIdMap, aDocIdentMap, aRestoreImmediately) { var _this = this; // if the tab got removed before being completely restored, then skip it @@ -3188,7 +3188,7 @@ var SessionStoreInternal = { * * @returns true/false indicating whether or not a load actually happened */ - restoreTab: function ssi_restoreTab(aTab) { + restoreTab: function (aTab) { let window = aTab.ownerDocument.defaultView; let browser = aTab.linkedBrowser; let tabData = browser.__SS_data; @@ -3295,7 +3295,7 @@ var SessionStoreInternal = { * if there are no tabs to restore * if we have already reached the limit for number of tabs to restore */ - restoreNextTab: function ssi_restoreNextTab() { + restoreNextTab: function () { // If we call in here while quitting, we don't actually want to do anything if (this._loadState == STATE_QUITTING) return; @@ -3323,7 +3323,7 @@ var SessionStoreInternal = { * @returns nsISHEntry */ _deserializeHistoryEntry: - function ssi_deserializeHistoryEntry(aEntry, aIdMap, aDocIdentMap) { + function (aEntry, aIdMap, aDocIdentMap) { var shEntry = Cc["@mozilla.org/browser/session-history-entry;1"]. createInstance(Ci.nsISHEntry); @@ -3455,7 +3455,7 @@ var SessionStoreInternal = { /** * Restore properties to a loaded document */ - restoreDocument: function ssi_restoreDocument(aWindow, aBrowser, aEvent) { + restoreDocument: function (aWindow, aBrowser, aEvent) { // wait for the top frame to be loaded completely if (!aEvent || !aEvent.originalTarget || !aEvent.originalTarget.defaultView || aEvent.originalTarget.defaultView != aEvent.originalTarget.defaultView.top) { @@ -3548,7 +3548,7 @@ var SessionStoreInternal = { * @param aWinData * Object containing session data for the window */ - restoreWindowFeatures: function ssi_restoreWindowFeatures(aWindow, aWinData) { + restoreWindowFeatures: function (aWindow, aWinData) { var hidden = (aWinData.hidden)?aWinData.hidden.split(","):[]; WINDOW_HIDEABLE_FEATURES.forEach(function(aItem) { aWindow[aItem].visible = hidden.indexOf(aItem) == -1; @@ -3595,7 +3595,7 @@ var SessionStoreInternal = { * @param aSidebar * Sidebar command */ - restoreDimensions: function ssi_restoreDimensions(aWindow, aWidth, aHeight, aLeft, aTop, aSizeMode, aSidebar) { + restoreDimensions: function (aWindow, aWidth, aHeight, aLeft, aTop, aSizeMode, aSidebar) { var win = aWindow; var _this = this; function win_(aName) { return _this._getWindowDimension(win, aName); } @@ -3695,7 +3695,7 @@ var SessionStoreInternal = { * @param aCookies * Array of cookie objects */ - restoreCookies: function ssi_restoreCookies(aCookies) { + restoreCookies: function (aCookies) { // MAX_EXPIRY should be 2^63-1, but JavaScript can't handle that precision var MAX_EXPIRY = Math.pow(2, 62); for (let i = 0; i < aCookies.length; i++) { @@ -3719,7 +3719,7 @@ var SessionStoreInternal = { * @param aDelay * Milliseconds to delay */ - saveStateDelayed: function ssi_saveStateDelayed(aWindow, aDelay) { + saveStateDelayed: function (aWindow, aDelay) { if (aWindow) { this._dirtyWindows[aWindow.__SSi] = true; } @@ -3745,7 +3745,7 @@ var SessionStoreInternal = { * @param aUpdateAll * Bool update all windows */ - saveState: function ssi_saveState(aUpdateAll) { + saveState: function (aUpdateAll) { // If crash recovery is disabled, we only want to resume with pinned tabs // if we crash. let pinnedOnly = this._loadState == STATE_RUNNING && !this._resume_from_crash; @@ -3817,7 +3817,7 @@ var SessionStoreInternal = { /** * write a state object to disk */ - _saveStateObject: function ssi_saveStateObject(aStateObj) { + _saveStateObject: function (aStateObj) { let data = this._toJSONString(aStateObj); let stateString = this._createSupportsString(data); @@ -3861,7 +3861,7 @@ var SessionStoreInternal = { /* ........ Auxiliary Functions .............. */ // Wrap a string as a nsISupports - _createSupportsString: function ssi_createSupportsString(aData) { + _createSupportsString: function (aData) { let string = Cc["@mozilla.org/supports-string;1"] .createInstance(Ci.nsISupportsString); string.data = aData; @@ -3874,7 +3874,7 @@ var SessionStoreInternal = { * @param aFunc * Callback each window is passed to */ - _forEachBrowserWindow: function ssi_forEachBrowserWindow(aFunc) { + _forEachBrowserWindow: function (aFunc) { var windowsEnum = Services.wm.getEnumerator("navigator:browser"); while (windowsEnum.hasMoreElements()) { @@ -3889,7 +3889,7 @@ var SessionStoreInternal = { * Returns most recent window * @returns Window reference */ - _getMostRecentBrowserWindow: function ssi_getMostRecentBrowserWindow() { + _getMostRecentBrowserWindow: function () { var win = Services.wm.getMostRecentWindow("navigator:browser"); if (!win) return null; @@ -3923,7 +3923,7 @@ var SessionStoreInternal = { * destroyed yet, which would otherwise cause getBrowserState and * setBrowserState to treat them as open windows. */ - _handleClosedWindows: function ssi_handleClosedWindows() { + _handleClosedWindows: function () { var windowsEnum = Services.wm.getEnumerator("navigator:browser"); while (windowsEnum.hasMoreElements()) { @@ -3940,7 +3940,7 @@ var SessionStoreInternal = { * @param aState * Object containing session data */ - _openWindowWithState: function ssi_openWindowWithState(aState) { + _openWindowWithState: function (aState) { var argString = Cc["@mozilla.org/supports-string;1"]. createInstance(Ci.nsISupportsString); argString.data = ""; @@ -3974,7 +3974,7 @@ var SessionStoreInternal = { * Whether or not to resume session, if not recovering from a crash. * @returns bool */ - _doResumeSession: function ssi_doResumeSession() { + _doResumeSession: function () { return this._prefBranch.getIntPref("startup.page") == 3 || this._prefBranch.getBoolPref("sessionstore.resume_session_once"); }, @@ -3985,7 +3985,7 @@ var SessionStoreInternal = { * C.f.: nsBrowserContentHandler's defaultArgs implementation. * @returns bool */ - _isCmdLineEmpty: function ssi_isCmdLineEmpty(aWindow, aState) { + _isCmdLineEmpty: function (aWindow, aState) { var pinnedOnly = aState.windows && aState.windows.every(function (win) win.tabs.every(function (tab) tab.pinned)); @@ -4012,7 +4012,7 @@ var SessionStoreInternal = { * don't do normal check for deferred * @returns bool */ - checkPrivacyLevel: function ssi_checkPrivacyLevel(aIsHTTPS, aUseDefaultPref) { + checkPrivacyLevel: function (aIsHTTPS, aUseDefaultPref) { let pref = "sessionstore.privacy_level"; // If we're in the process of quitting and we're not autoresuming the session // then we should treat it as a deferred session. We have a different privacy @@ -4033,7 +4033,7 @@ var SessionStoreInternal = { * String sizemode | width | height | other window attribute * @returns string */ - _getWindowDimension: function ssi_getWindowDimension(aWindow, aAttribute) { + _getWindowDimension: function (aWindow, aAttribute) { if (aAttribute == "sizemode") { switch (aWindow.windowState) { case aWindow.STATE_FULLSCREEN: @@ -4070,7 +4070,7 @@ var SessionStoreInternal = { * @param string * @returns nsIURI */ - _getURIFromString: function ssi_getURIFromString(aString) { + _getURIFromString: function (aString) { return Services.io.newURI(aString, null, null); }, @@ -4079,7 +4079,7 @@ var SessionStoreInternal = { * @param aRecentCrashes is the number of consecutive crashes * @returns whether a restore page will be needed for the session state */ - _needsRestorePage: function ssi_needsRestorePage(aState, aRecentCrashes) { + _needsRestorePage: function (aState, aRecentCrashes) { const SIX_HOURS_IN_MS = 6 * 60 * 60 * 1000; // don't display the page when there's nothing to restore @@ -4116,7 +4116,7 @@ var SessionStoreInternal = { * The current tab state * @returns boolean */ - _shouldSaveTabState: function ssi_shouldSaveTabState(aTabState) { + _shouldSaveTabState: function (aTabState) { // If the tab has only a transient about: history entry, no other // session history, and no userTypedValue, then we don't actually want to // store this tab's data. @@ -4136,7 +4136,7 @@ var SessionStoreInternal = { * @param aTab * @returns boolean */ - _canRestoreTabHistory: function ssi_canRestoreTabHistory(aTab) { + _canRestoreTabHistory: function (aTab) { return aTab.parentNode && aTab.linkedBrowser && aTab.linkedBrowser.__SS_tabStillLoading; }, @@ -4158,7 +4158,7 @@ var SessionStoreInternal = { * The state, presumably from nsISessionStartup.state * @returns [defaultState, state] */ - _prepDataForDeferredRestore: function ssi_prepDataForDeferredRestore(state) { + _prepDataForDeferredRestore: function (state) { // Make sure that we don't modify the global state as provided by // nsSessionStartup.state. Converting the object to a JSON string and // parsing it again is the easiest way to do that, although not the most @@ -4249,7 +4249,7 @@ var SessionStoreInternal = { * This alters the state of aWinState and aTargetWinState. */ _splitCookiesFromWindow: - function ssi_splitCookiesFromWindow(aWinState, aTargetWinState) { + function (aWinState, aTargetWinState) { if (!aWinState.cookies || !aWinState.cookies.length) return; @@ -4287,11 +4287,11 @@ var SessionStoreInternal = { * @param aJSObject is the object to be converted * @returns the object's JSON representation */ - _toJSONString: function ssi_toJSONString(aJSObject) { + _toJSONString: function (aJSObject) { return JSON.stringify(aJSObject); }, - _sendRestoreCompletedNotifications: function ssi_sendRestoreCompletedNotifications() { + _sendRestoreCompletedNotifications: function () { // not all windows restored, yet if (this._restoreCount > 1) { this._restoreCount--; @@ -4317,7 +4317,7 @@ var SessionStoreInternal = { * @param aValue the window's busy state */ _setWindowStateBusyValue: - function ssi_changeWindowStateBusyValue(aWindow, aValue) { + function (aWindow, aValue) { this._windows[aWindow.__SSi].busy = aValue; @@ -4333,7 +4333,7 @@ var SessionStoreInternal = { * Set the given window's state to 'not busy'. * @param aWindow the window */ - _setWindowStateReady: function ssi_setWindowStateReady(aWindow) { + _setWindowStateReady: function (aWindow) { this._setWindowStateBusyValue(aWindow, false); this._sendWindowStateEvent(aWindow, "Ready"); }, @@ -4342,7 +4342,7 @@ var SessionStoreInternal = { * Set the given window's state to 'busy'. * @param aWindow the window */ - _setWindowStateBusy: function ssi_setWindowStateBusy(aWindow) { + _setWindowStateBusy: function (aWindow) { this._setWindowStateBusyValue(aWindow, true); this._sendWindowStateEvent(aWindow, "Busy"); }, @@ -4352,7 +4352,7 @@ var SessionStoreInternal = { * @param aWindow the window * @param aType the type of event, SSWindowState will be prepended to this string */ - _sendWindowStateEvent: function ssi_sendWindowStateEvent(aWindow, aType) { + _sendWindowStateEvent: function (aWindow, aType) { let event = aWindow.document.createEvent("Events"); event.initEvent("SSWindowState" + aType, true, false); aWindow.dispatchEvent(event); @@ -4362,7 +4362,7 @@ var SessionStoreInternal = { * Dispatch the SSTabRestored event for the given tab. * @param aTab the which has been restored */ - _sendTabRestoredNotification: function ssi_sendTabRestoredNotification(aTab) { + _sendTabRestoredNotification: function (aTab) { let event = aTab.ownerDocument.createEvent("Events"); event.initEvent("SSTabRestored", true, false); aTab.dispatchEvent(event); @@ -4374,7 +4374,7 @@ var SessionStoreInternal = { * @returns whether this window's data is still cached in _statesToRestore * because it's not fully loaded yet */ - _isWindowLoaded: function ssi_isWindowLoaded(aWindow) { + _isWindowLoaded: function (aWindow) { return !aWindow.__SS_restoreID; }, @@ -4386,7 +4386,7 @@ var SessionStoreInternal = { * * @returns aString that has been updated with the new title */ - _replaceLoadingTitle : function ssi_replaceLoadingTitle(aString, aTabbrowser, aTab) { + _replaceLoadingTitle : function (aString, aTabbrowser, aTab) { if (aString == aTabbrowser.mStringBundle.getString("tabs.connecting")) { aTabbrowser.setTabTitle(aTab); [aString, aTab.label] = [aTab.label, aString]; @@ -4399,7 +4399,7 @@ var SessionStoreInternal = { * where we don't have any non-popup windows on Windows and Linux. Then we must * resize such that we have at least one non-popup window. */ - _capClosedWindows : function ssi_capClosedWindows() { + _capClosedWindows : function () { if (this._closedWindows.length <= this._max_windows_undo) return; let spliceTo = this._max_windows_undo; @@ -4415,7 +4415,7 @@ var SessionStoreInternal = { this._closedWindows.splice(spliceTo, this._closedWindows.length); }, - _clearRestoringWindows: function ssi_clearRestoringWindows() { + _clearRestoringWindows: function () { for (let i = 0; i < this._closedWindows.length; i++) { delete this._closedWindows[i]._shouldRestore; } @@ -4424,7 +4424,7 @@ var SessionStoreInternal = { /** * Reset state to prepare for a new session state to be restored. */ - _resetRestoringState: function ssi_initRestoringState() { + _resetRestoringState: function () { TabRestoreQueue.reset(); this._tabsRestoringCount = 0; }, @@ -4436,7 +4436,7 @@ var SessionStoreInternal = { * @param aTab * The tab that will be "reset" */ - _resetTabRestoringState: function ssi_resetTabRestoringState(aTab) { + _resetTabRestoringState: function (aTab) { let window = aTab.ownerDocument.defaultView; let browser = aTab.linkedBrowser; @@ -4478,7 +4478,7 @@ var SessionStoreInternal = { * @param aWindow * The window to add our progress listener to */ - _ensureTabsProgressListener: function ssi_ensureTabsProgressListener(aWindow) { + _ensureTabsProgressListener: function (aWindow) { let tabbrowser = aWindow.gBrowser; if (tabbrowser.mTabsProgressListeners.indexOf(gRestoreTabsProgressListener) == -1) tabbrowser.addTabsProgressListener(gRestoreTabsProgressListener); @@ -4490,7 +4490,7 @@ var SessionStoreInternal = { * @param aWindow * The window from which to remove our progress listener from */ - _removeTabsProgressListener: function ssi_removeTabsProgressListener(aWindow) { + _removeTabsProgressListener: function (aWindow) { // If there are no tabs left to restore (or restoring) in this window, then // we can safely remove the progress listener from this window. if (!aWindow.__SS_tabsToRestore) @@ -4503,7 +4503,7 @@ var SessionStoreInternal = { * @param aTab * The tab who's browser to remove the listener */ - _removeSHistoryListener: function ssi_removeSHistoryListener(aTab) { + _removeSHistoryListener: function (aTab) { let browser = aTab.linkedBrowser; if (browser.__SS_shistoryListener) { browser.webNavigation.sessionHistory. diff --git a/application/palemoon/components/sessionstore/XPathGenerator.jsm b/application/palemoon/components/sessionstore/XPathGenerator.jsm index 83ff2b80af..2189ece25b 100644 --- a/application/palemoon/components/sessionstore/XPathGenerator.jsm +++ b/application/palemoon/components/sessionstore/XPathGenerator.jsm @@ -12,7 +12,7 @@ this.XPathGenerator = { /** * Generates an approximate XPath query to an (X)HTML node */ - generate: function sss_xph_generate(aNode) { + generate: function (aNode) { // have we reached the document node already? if (!aNode.parentNode) return ""; @@ -46,7 +46,7 @@ this.XPathGenerator = { /** * Resolves an XPath query generated by XPathGenerator.generate */ - resolve: function sss_xph_resolve(aDocument, aQuery) { + resolve: function (aDocument, aQuery) { let xptype = Components.interfaces.nsIDOMXPathResult.FIRST_ORDERED_NODE_TYPE; return aDocument.evaluate(aQuery, aDocument, this.resolveNS, xptype, null).singleNodeValue; }, @@ -54,14 +54,14 @@ this.XPathGenerator = { /** * Namespace resolver for the above XPath resolver */ - resolveNS: function sss_xph_resolveNS(aPrefix) { + resolveNS: function (aPrefix) { return XPathGenerator.namespaceURIs[aPrefix] || null; }, /** * @returns valid XPath for the given node (usually just the local name itself) */ - escapeName: function sss_xph_escapeName(aName) { + escapeName: function (aName) { // we can't just use the node's local name, if it contains // special characters (cf. bug 485482) return /^\w+$/.test(aName) ? aName : @@ -71,7 +71,7 @@ this.XPathGenerator = { /** * @returns a properly quoted string to insert into an XPath query */ - quoteArgument: function sss_xph_quoteArgument(aArg) { + quoteArgument: function (aArg) { return !/'/.test(aArg) ? "'" + aArg + "'" : !/"/.test(aArg) ? '"' + aArg + '"' : "concat('" + aArg.replace(/'+/g, "',\"$&\",'") + "')"; diff --git a/application/palemoon/components/sessionstore/_SessionFile.jsm b/application/palemoon/components/sessionstore/_SessionFile.jsm index 62b4d1687b..52c0b526e1 100644 --- a/application/palemoon/components/sessionstore/_SessionFile.jsm +++ b/application/palemoon/components/sessionstore/_SessionFile.jsm @@ -57,37 +57,37 @@ this._SessionFile = { * A promise fulfilled once initialization (either synchronous or * asynchronous) is complete. */ - promiseInitialized: function SessionFile_initialized() { + promiseInitialized: function () { return SessionFileInternal.promiseInitialized; }, /** * Read the contents of the session file, asynchronously. */ - read: function SessionFile_read() { + read: function () { return SessionFileInternal.read(); }, /** * Read the contents of the session file, synchronously. */ - syncRead: function SessionFile_syncRead() { + syncRead: function () { return SessionFileInternal.syncRead(); }, /** * Write the contents of the session file, asynchronously. */ - write: function SessionFile_write(aData) { + write: function (aData) { return SessionFileInternal.write(aData); }, /** * Create a backup copy, asynchronously. */ - createBackupCopy: function SessionFile_createBackupCopy() { + createBackupCopy: function () { return SessionFileInternal.createBackupCopy(); }, /** * Wipe the contents of the session file, asynchronously. */ - wipe: function SessionFile_wipe() { + wipe: function () { return SessionFileInternal.wipe(); } }; @@ -105,7 +105,7 @@ const TaskUtils = { * @return {Promise} A promise behaving as |promise|, but with additional * logging in case of uncaught error. */ - captureErrors: function captureErrors(promise) { + captureErrors: function (promise) { return promise.then( null, function onError(reason) { @@ -152,7 +152,7 @@ var SessionFileInternal = { * A path to read the file from. * @returns string if successful, undefined otherwise. */ - readAuxSync: function ssfi_readAuxSync(aPath) { + readAuxSync: function (aPath) { let text; try { let file = new FileUtils.File(aPath); @@ -184,7 +184,7 @@ var SessionFileInternal = { * happened between backup and write), attempt to read the sessionstore.bak * instead. */ - syncRead: function ssfi_syncRead() { + syncRead: function () { // First read the sessionstore.js. let text = this.readAuxSync(this.path); if (typeof text === "undefined") { @@ -204,7 +204,7 @@ var SessionFileInternal = { * incrementally updated by the worker process. * @returns string if successful, undefined otherwise. */ - readAux: function ssfi_readAux(aPath, aReadOptions) { + readAux: function (aPath, aReadOptions) { let self = this; return TaskUtils.spawn(function () { let text; @@ -228,7 +228,7 @@ var SessionFileInternal = { * happened between backup and write), attempt to read the sessionstore.bak * instead. */ - read: function ssfi_read() { + read: function () { let self = this; return TaskUtils.spawn(function task() { // Specify |outExecutionDuration| option to hold the combined duration of @@ -253,7 +253,7 @@ var SessionFileInternal = { }); }, - write: function ssfi_write(aData) { + write: function (aData) { let refObj = {}; let self = this; return TaskUtils.spawn(function task() { @@ -268,7 +268,7 @@ var SessionFileInternal = { }); }, - createBackupCopy: function ssfi_createBackupCopy() { + createBackupCopy: function () { let backupCopyOptions = { outExecutionDuration: null }; @@ -285,7 +285,7 @@ var SessionFileInternal = { }); }, - wipe: function ssfi_wipe() { + wipe: function () { let self = this; return TaskUtils.spawn(function task() { try { @@ -308,7 +308,7 @@ var SessionFileInternal = { }); }, - _isNoSuchFile: function ssfi_isNoSuchFile(aReason) { + _isNoSuchFile: function (aReason) { return aReason instanceof OS.File.Error && aReason.becauseNoSuchFile; } }; diff --git a/application/palemoon/components/sessionstore/nsSessionStartup.js b/application/palemoon/components/sessionstore/nsSessionStartup.js index 04037c10e0..0c9051e004 100644 --- a/application/palemoon/components/sessionstore/nsSessionStartup.js +++ b/application/palemoon/components/sessionstore/nsSessionStartup.js @@ -69,7 +69,7 @@ SessionStartup.prototype = { /** * Initialize the component */ - init: function sss_init() { + init: function () { // do not need to initialize anything in auto-started private browsing sessions if (PrivateBrowsingUtils.permanentPrivateBrowsing) { this._initialized = true; @@ -88,14 +88,14 @@ SessionStartup.prototype = { }, // Wrap a string as a nsISupports - _createSupportsString: function ssfi_createSupportsString(aData) { + _createSupportsString: function (aData) { let string = Cc["@mozilla.org/supports-string;1"] .createInstance(Ci.nsISupportsString); string.data = aData; return string; }, - _onSessionFileRead: function sss_onSessionFileRead(aStateString) { + _onSessionFileRead: function (aStateString) { if (this._initialized) { // Initialization is complete, nothing else to do return; @@ -174,7 +174,7 @@ SessionStartup.prototype = { /** * Handle notifications */ - observe: function sss_observe(aSubject, aTopic, aData) { + observe: function (aSubject, aTopic, aData) { switch (aTopic) { case "app-startup": Services.obs.addObserver(this, "final-ui-startup", true); @@ -225,7 +225,7 @@ SessionStartup.prototype = { * session file synchronously. * @returns bool */ - doRestore: function sss_doRestore() { + doRestore: function () { this._ensureInitialized(); return this._willRestore(); }, @@ -272,7 +272,7 @@ SessionStartup.prototype = { // Ensure that initialization is complete. // If initialization is not complete yet, fall back to a synchronous // initialization and kill ongoing asynchronous initialization - _ensureInitialized: function sss__ensureInitialized() { + _ensureInitialized: function () { try { if (this._initialized) { // Initialization is complete, nothing else to do From 4fa4016eb6cb2b3bacca4a6bd21c6de7a90b1c08 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:54:07 -0600 Subject: [PATCH 16/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/shell. --- application/palemoon/components/shell/nsSetDefaultBrowser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/palemoon/components/shell/nsSetDefaultBrowser.js b/application/palemoon/components/shell/nsSetDefaultBrowser.js index c7a78c5388..4c6e1a0034 100644 --- a/application/palemoon/components/shell/nsSetDefaultBrowser.js +++ b/application/palemoon/components/shell/nsSetDefaultBrowser.js @@ -15,7 +15,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); function nsSetDefaultBrowser() {} nsSetDefaultBrowser.prototype = { - handle: function nsSetDefault_handle(aCmdline) { + handle: function (aCmdline) { if (aCmdline.handleFlag("setDefaultBrowser", false)) { ShellService.setDefaultBrowser(true, true); } From fcab0706211da39f8e8d07663e7cb50242025db3 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 06:55:13 -0600 Subject: [PATCH 17/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Remove named function syntax from palemoon/components/sync. --- .../palemoon/components/sync/addDevice.js | 22 ++++++++-------- .../palemoon/components/sync/genericChange.js | 14 +++++----- application/palemoon/components/sync/quota.js | 26 +++++++++---------- application/palemoon/components/sync/setup.js | 20 +++++++------- application/palemoon/components/sync/utils.js | 4 +-- 5 files changed, 43 insertions(+), 43 deletions(-) diff --git a/application/palemoon/components/sync/addDevice.js b/application/palemoon/components/sync/addDevice.js index 0390d43970..edc36c7b92 100644 --- a/application/palemoon/components/sync/addDevice.js +++ b/application/palemoon/components/sync/addDevice.js @@ -17,7 +17,7 @@ const DEVICE_CONNECTED_PAGE = 2; var gSyncAddDevice = { - init: function init() { + init: function () { this.pin1.setAttribute("maxlength", PIN_PART_LENGTH); this.pin2.setAttribute("maxlength", PIN_PART_LENGTH); this.pin3.setAttribute("maxlength", PIN_PART_LENGTH); @@ -34,7 +34,7 @@ var gSyncAddDevice = { Weave.Service.scheduler.scheduleNextSync(0); }, - onPageShow: function onPageShow() { + onPageShow: function () { this.wizard.getButton("back").hidden = true; switch (this.wizard.pageIndex) { @@ -60,7 +60,7 @@ var gSyncAddDevice = { } }, - onWizardAdvance: function onWizardAdvance() { + onWizardAdvance: function () { switch (this.wizard.pageIndex) { case ADD_DEVICE_PAGE: this.startTransfer(); @@ -72,21 +72,21 @@ var gSyncAddDevice = { return true; }, - startTransfer: function startTransfer() { + startTransfer: function () { this.errorRow.hidden = true; // When onAbort is called, Weave may already be gone. const JPAKE_ERROR_USERABORT = Weave.JPAKE_ERROR_USERABORT; let self = this; let jpakeclient = this._jpakeclient = new Weave.JPAKEClient({ - onPaired: function onPaired() { + onPaired: function () { let credentials = {account: Weave.Service.identity.account, password: Weave.Service.identity.basicPassword, synckey: Weave.Service.identity.syncKey, serverURL: Weave.Service.serverURL}; jpakeclient.sendAndComplete(credentials); }, - onComplete: function onComplete() { + onComplete: function () { delete self._jpakeclient; self.wizard.pageIndex = DEVICE_CONNECTED_PAGE; @@ -94,7 +94,7 @@ var gSyncAddDevice = { // device with which we just paired. Weave.Service.scheduler.scheduleNextSync(Weave.Service.scheduler.activeInterval); }, - onAbort: function onAbort(error) { + onAbort: function (error) { delete self._jpakeclient; // Aborted by user, ignore. @@ -118,7 +118,7 @@ var gSyncAddDevice = { jpakeclient.pairWithPIN(pin, expectDelay); }, - onWizardBack: function onWizardBack() { + onWizardBack: function () { if (this.wizard.pageIndex != SYNC_KEY_PAGE) return true; @@ -126,7 +126,7 @@ var gSyncAddDevice = { return false; }, - onWizardCancel: function onWizardCancel() { + onWizardCancel: function () { if (this._jpakeclient) { this._jpakeclient.abort(); delete this._jpakeclient; @@ -134,7 +134,7 @@ var gSyncAddDevice = { return true; }, - onTextBoxInput: function onTextBoxInput(textbox) { + onTextBoxInput: function (textbox) { if (textbox && textbox.value.length == PIN_PART_LENGTH) this.nextFocusEl[textbox.id].focus(); @@ -143,7 +143,7 @@ var gSyncAddDevice = { && this.pin3.value.length == PIN_PART_LENGTH); }, - goToSyncKeyPage: function goToSyncKeyPage() { + goToSyncKeyPage: function () { this.wizard.pageIndex = SYNC_KEY_PAGE; } diff --git a/application/palemoon/components/sync/genericChange.js b/application/palemoon/components/sync/genericChange.js index df66391789..776fbf5d6e 100644 --- a/application/palemoon/components/sync/genericChange.js +++ b/application/palemoon/components/sync/genericChange.js @@ -29,7 +29,7 @@ var Change = { return this._dialogType == "UpdatePassphrase"; }, - onLoad: function Change_onLoad() { + onLoad: function () { /* Load labels */ let introText = document.getElementById("introText"); let introText2 = document.getElementById("introText2"); @@ -112,16 +112,16 @@ var Change = { .setAttribute("label", document.title); }, - _clearStatus: function _clearStatus() { + _clearStatus: function () { this._status.value = ""; this._statusIcon.removeAttribute("status"); }, - _updateStatus: function Change__updateStatus(str, state) { + _updateStatus: function (str, state) { this._updateStatusWithString(this._str(str), state); }, - _updateStatusWithString: function Change__updateStatusWithString(string, state) { + _updateStatusWithString: function (string, state) { this._statusRow.hidden = false; this._status.value = string; this._statusIcon.setAttribute("status", state); @@ -154,7 +154,7 @@ var Change = { this._dialog.getButton("finish").disabled = false; }, - doChangePassphrase: function Change_doChangePassphrase() { + doChangePassphrase: function () { let pp = Weave.Utils.normalizePassphrase(this._passphraseBox.value); if (this._updatingPassphrase) { Weave.Service.identity.syncKey = pp; @@ -179,7 +179,7 @@ var Change = { return false; }, - doChangePassword: function Change_doChangePassword() { + doChangePassword: function () { if (this._currentPasswordInvalid) { Weave.Service.identity.basicPassword = this._firstBox.value; if (Weave.Service.login()) { @@ -228,7 +228,7 @@ var Change = { this._dialog.getButton("finish").disabled = !valid; }, - _str: function Change__string(str) { + _str: function (str) { return this._stringBundle.GetStringFromName(str); } }; diff --git a/application/palemoon/components/sync/quota.js b/application/palemoon/components/sync/quota.js index b416a44cc2..4733f9fb4f 100644 --- a/application/palemoon/components/sync/quota.js +++ b/application/palemoon/components/sync/quota.js @@ -12,7 +12,7 @@ Cu.import("resource://gre/modules/DownloadUtils.jsm"); var gSyncQuota = { - init: function init() { + init: function () { this.bundle = document.getElementById("quotaStrings"); let caption = document.getElementById("treeCaption"); caption.firstChild.nodeValue = this.bundle.getString("quota.treeCaption.label"); @@ -24,7 +24,7 @@ var gSyncQuota = { this.loadData(); }, - loadData: function loadData() { + loadData: function () { this._usage_req = Weave.Service.getStorageInfo(Weave.INFO_COLLECTION_USAGE, function (error, usage) { delete gSyncQuota._usage_req; @@ -57,7 +57,7 @@ var gSyncQuota = { }); }, - onCancel: function onCancel() { + onCancel: function () { if (this._usage_req) { this._usage_req.abort(); } @@ -67,7 +67,7 @@ var gSyncQuota = { return true; }, - onAccept: function onAccept() { + onAccept: function () { let engines = gUsageTreeView.getEnginesToDisable(); for each (let engine in engines) { Weave.Service.engineManager.get(engine).enabled = false; @@ -80,7 +80,7 @@ var gSyncQuota = { return this.onCancel(); }, - convertKB: function convertKB(value) { + convertKB: function (value) { return DownloadUtils.convertByteUnits(value * 1024); } @@ -98,7 +98,7 @@ var gUsageTreeView = { _collections: [], _byname: {}, - init: function init() { + init: function () { let retrievingLabel = gSyncQuota.bundle.getString("quota.retrieving.label"); for each (let engine in Weave.Service.engineManager.getEnabled()) { if (this._ignored[engine.name]) @@ -122,7 +122,7 @@ var gUsageTreeView = { } }, - _collectionTitle: function _collectionTitle(engine) { + _collectionTitle: function (engine) { try { return gSyncQuota.bundle.getString( "collection." + engine.prefName + ".label"); @@ -134,7 +134,7 @@ var gUsageTreeView = { /* * Process the quota information as returned by info/collection_usage. */ - displayUsageData: function displayUsageData(data) { + displayUsageData: function (data) { for each (let coll in this._collections) { coll.size = 0; // If we couldn't retrieve any data, just blank out the label. @@ -157,7 +157,7 @@ var gUsageTreeView = { /* * Handle click events on the tree. */ - onTreeClick: function onTreeClick(event) { + onTreeClick: function (event) { if (event.button == 2) return; @@ -169,7 +169,7 @@ var gUsageTreeView = { /* * Toggle enabled state of an engine. */ - toggle: function toggle(row) { + toggle: function (row) { // Update the tree let collection = this._collections[row]; collection.enabled = !collection.enabled; @@ -180,7 +180,7 @@ var gUsageTreeView = { * Return a list of engines (or rather their pref names) that should be * disabled. */ - getEnginesToDisable: function getEnginesToDisable() { + getEnginesToDisable: function () { // Tycho: return [coll.name for each (coll in this._collections) if (!coll.enabled)]; let engines = []; for each (let coll in this._collections) { @@ -216,7 +216,7 @@ var gUsageTreeView = { return this._collections[row].enabled; }, - getCellText: function getCellText(row, col) { + getCellText: function (row, col) { let collection = this._collections[row]; switch (col.id) { case "collection": @@ -228,7 +228,7 @@ var gUsageTreeView = { } }, - setTree: function setTree(tree) { + setTree: function (tree) { this.treeBox = tree; }, diff --git a/application/palemoon/components/sync/setup.js b/application/palemoon/components/sync/setup.js index e8d67a5f6d..8bf0ecc34c 100644 --- a/application/palemoon/components/sync/setup.js +++ b/application/palemoon/components/sync/setup.js @@ -138,7 +138,7 @@ var gSyncSetup = { } }, - resetPassphrase: function resetPassphrase() { + resetPassphrase: function () { // Apply the existing form fields so that // Weave.Service.changePassphrase() has the necessary credentials. Weave.Service.identity.account = document.getElementById("existingAccountName").value; @@ -595,7 +595,7 @@ var gSyncSetup = { return false; }, - startPairing: function startPairing() { + startPairing: function () { this.pairDeviceErrorRow.hidden = true; // When onAbort is called, Weave may already be gone. const JPAKE_ERROR_USERABORT = Weave.JPAKE_ERROR_USERABORT; @@ -605,11 +605,11 @@ var gSyncSetup = { onPaired: function onPaired() { self.wizard.pageIndex = INTRO_PAGE; }, - onComplete: function onComplete() { + onComplete: function () { // This method will never be called since SendCredentialsController // will take over after the wizard completes. }, - onAbort: function onAbort(error) { + onAbort: function (error) { delete self._jpakeclient; // Aborted by user, ignore. The window is almost certainly going to close @@ -636,7 +636,7 @@ var gSyncSetup = { jpakeclient.pairWithPIN(pin, expectDelay); }, - completePairing: function completePairing() { + completePairing: function () { if (!this._jpakeclient) { // The channel was aborted while we were setting up the account // locally. XXX TODO should we do anything here, e.g. tell @@ -660,15 +660,15 @@ var gSyncSetup = { let self = this; this._jpakeclient = new Weave.JPAKEClient({ - displayPIN: function displayPIN(pin) { + displayPIN: function (pin) { document.getElementById("easySetupPIN1").value = pin.slice(0, 4); document.getElementById("easySetupPIN2").value = pin.slice(4, 8); document.getElementById("easySetupPIN3").value = pin.slice(8); }, - onPairingStart: function onPairingStart() {}, + onPairingStart: function () {}, - onComplete: function onComplete(credentials) { + onComplete: function (credentials) { Weave.Service.identity.account = credentials.account; Weave.Service.identity.basicPassword = credentials.password; Weave.Service.identity.syncKey = credentials.synckey; @@ -676,7 +676,7 @@ var gSyncSetup = { gSyncSetup.wizardFinish(); }, - onAbort: function onAbort(error) { + onAbort: function (error) { delete self._jpakeclient; // Ignore if wizard is aborted. @@ -1017,7 +1017,7 @@ var gSyncSetup = { this._setFeedback(element, success, str); }, - loadCaptcha: function loadCaptcha() { + loadCaptcha: function () { let captchaURI = Weave.Service.miscAPI + "captcha_html"; // First check for NoScript and whitelist the right sites. this._handleNoScript(true); diff --git a/application/palemoon/components/sync/utils.js b/application/palemoon/components/sync/utils.js index d41ecf18a3..f2735f42b1 100644 --- a/application/palemoon/components/sync/utils.js +++ b/application/palemoon/components/sync/utils.js @@ -30,13 +30,13 @@ var gSyncUtils = { openUILinkIn(url, "tab"); }, - changeName: function changeName(input) { + changeName: function (input) { // Make sure to update to a modified name, e.g., empty-string -> default Weave.Service.clientsEngine.localName = input.value; input.value = Weave.Service.clientsEngine.localName; }, - openChange: function openChange(type, duringSetup) { + openChange: function (type, duringSetup) { // Just re-show the dialog if it's already open let openedDialog = Services.wm.getMostRecentWindow("Sync:" + type); if (openedDialog != null) { From b6b33a6b2aea8ae4834f05979fe3521f9c6fc2ca Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 6 Feb 2020 09:46:16 -0600 Subject: [PATCH 18/20] [Pale-Moon] Remove excess whitespace. --- .../palemoon/base/content/browser-fullZoom.js | 64 ++-- .../base/content/browser-gestureSupport.js | 96 +++--- .../palemoon/base/content/browser-places.js | 128 +++---- .../palemoon/base/content/browser-plugins.js | 42 +-- .../palemoon/base/content/browser-syncui.js | 48 +-- .../base/content/browser-tabPreviews.js | 136 ++++---- .../base/content/browser-thumbnails.js | 26 +- application/palemoon/base/content/browser.js | 310 ++++++++--------- .../palemoon/base/content/nsContextMenu.js | 74 ++-- .../palemoon/base/content/sanitizeDialog.js | 56 +-- .../palemoon/components/distribution.js | 12 +- .../components/downloads/DownloadsCommon.jsm | 136 ++++---- .../components/downloads/DownloadsLogger.jsm | 6 +- .../components/downloads/DownloadsStartup.js | 4 +- .../components/downloads/DownloadsUI.js | 8 +- .../content/allDownloadsViewOverlay.js | 64 ++-- .../content/contentAreaDownloadsView.js | 2 +- .../components/downloads/content/downloads.js | 106 +++--- .../components/downloads/content/indicator.js | 36 +- .../components/feeds/FeedConverter.js | 38 +- .../palemoon/components/feeds/FeedWriter.js | 70 ++-- .../components/feeds/WebContentConverter.js | 80 ++--- .../components/feeds/content/subscribe.js | 6 +- .../components/fuel/fuelApplication.js | 112 +++--- .../palemoon/components/newtab/cells.js | 8 +- .../palemoon/components/newtab/drag.js | 10 +- .../components/newtab/dragDataHelper.js | 2 +- .../palemoon/components/newtab/drop.js | 18 +- .../palemoon/components/newtab/dropPreview.js | 20 +- .../components/newtab/dropTargetShim.js | 26 +- .../palemoon/components/newtab/grid.js | 14 +- .../palemoon/components/newtab/page.js | 14 +- .../palemoon/components/newtab/sites.js | 32 +- .../components/newtab/transformations.js | 34 +- .../palemoon/components/newtab/undo.js | 12 +- .../palemoon/components/newtab/updater.js | 26 +- .../palemoon/components/nsAboutRedirector.js | 2 +- .../components/nsBrowserContentHandler.js | 18 +- .../palemoon/components/nsBrowserGlue.js | 84 ++--- .../components/pageinfo/permissions.js | 18 +- .../components/places/PlacesUIUtils.jsm | 76 ++-- .../places/content/bookmarkProperties.js | 40 +-- .../places/content/browserPlacesViews.js | 132 +++---- .../components/places/content/controller.js | 104 +++--- .../places/content/editBookmarkOverlay.js | 80 ++--- .../places/content/moveBookmarks.js | 4 +- .../components/places/content/places.js | 106 +++--- .../components/places/content/sidebarUtils.js | 8 +- .../components/places/content/treeView.js | 108 +++--- .../components/preferences/advanced.js | 56 +-- .../preferences/applicationManager.js | 10 +- .../components/preferences/cookies.js | 122 +++---- .../components/preferences/privacy.js | 38 +- .../components/preferences/selectBookmark.js | 8 +- .../search/content/engineManager.js | 62 ++-- .../components/sessionstore/DocumentUtils.jsm | 6 +- .../sessionstore/SessionStorage.jsm | 12 +- .../components/sessionstore/SessionStore.jsm | 324 +++++++++--------- .../sessionstore/XPathGenerator.jsm | 10 +- .../components/sessionstore/_SessionFile.jsm | 36 +- .../sessionstore/nsSessionStartup.js | 14 +- .../components/shell/nsSetDefaultBrowser.js | 2 +- .../palemoon/components/sync/addDevice.js | 24 +- .../palemoon/components/sync/genericChange.js | 18 +- application/palemoon/components/sync/quota.js | 32 +- application/palemoon/components/sync/setup.js | 96 +++--- application/palemoon/components/sync/utils.js | 22 +- .../modules/BrowserNewTabPreloader.jsm | 52 +-- .../palemoon/modules/NetworkPrioritizer.jsm | 24 +- .../palemoon/modules/PopupNotifications.jsm | 70 ++-- application/palemoon/modules/RecentWindow.jsm | 2 +- .../palemoon/modules/WindowsJumpLists.jsm | 64 ++-- .../palemoon/modules/openLocationLastURL.jsm | 6 +- 73 files changed, 1883 insertions(+), 1883 deletions(-) diff --git a/application/palemoon/base/content/browser-fullZoom.js b/application/palemoon/base/content/browser-fullZoom.js index 595e9b8ac3..0f666229d8 100644 --- a/application/palemoon/base/content/browser-fullZoom.js +++ b/application/palemoon/base/content/browser-fullZoom.js @@ -38,7 +38,7 @@ var FullZoom = { // Initialization & Destruction - init: function () { + init: function() { gBrowser.addEventListener("ZoomChangeUsingMouseWheel", this); // Register ourselves with the service so we know when our pref changes. @@ -66,7 +66,7 @@ var FullZoom = { this._initialLocations = null; }, - destroy: function () { + destroy: function() { gPrefService.removeObserver("browser.zoom.", this); this._cps2.removeObserverForName(this.name, this); gBrowser.removeEventListener("ZoomChangeUsingMouseWheel", this); @@ -77,7 +77,7 @@ var FullZoom = { // nsIDOMEventListener - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "ZoomChangeUsingMouseWheel": let browser = this._getTargetedBrowser(event); @@ -89,7 +89,7 @@ var FullZoom = { // nsIObserver - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "nsPref:changed": switch (aData) { @@ -108,11 +108,11 @@ var FullZoom = { // nsIContentPrefObserver - onContentPrefSet: function (aGroup, aName, aValue, aIsPrivate) { + onContentPrefSet: function(aGroup, aName, aValue, aIsPrivate) { this._onContentPrefChanged(aGroup, aValue, aIsPrivate); }, - onContentPrefRemoved: function (aGroup, aName, aIsPrivate) { + onContentPrefRemoved: function(aGroup, aName, aIsPrivate) { this._onContentPrefChanged(aGroup, undefined, aIsPrivate); }, @@ -124,7 +124,7 @@ var FullZoom = { * @param aValue The new value of the changed preference. Pass undefined to * indicate the preference's removal. */ - _onContentPrefChanged: function (aGroup, aValue, aIsPrivate) { + _onContentPrefChanged: function(aGroup, aValue, aIsPrivate) { if (this._isNextContentPrefChangeInternal) { // Ignore changes that FullZoom itself makes. This works because the // content pref service calls callbacks before notifying observers, and it @@ -154,8 +154,8 @@ var FullZoom = { let hasPref = false; let token = this._getBrowserToken(browser); this._cps2.getByDomainAndName(browser.currentURI.spec, this.name, ctxt, { - handleResult: function () { hasPref = true; }, - handleCompletion: function () { + handleResult: function() { hasPref = true; }, + handleCompletion: function() { if (!hasPref && token.isCurrent) this._applyPrefToZoom(undefined, browser); }.bind(this) @@ -175,7 +175,7 @@ var FullZoom = { * @param aBrowser * (optional) browser object displaying the document */ - onLocationChange: function (aURI, aIsTabSwitch, aBrowser) { + onLocationChange: function(aURI, aIsTabSwitch, aBrowser) { let browser = aBrowser || gBrowser.selectedBrowser; // If we haven't been initialized yet but receive an onLocationChange @@ -223,8 +223,8 @@ var FullZoom = { let value = undefined; let token = this._getBrowserToken(browser); this._cps2.getByDomainAndName(aURI.spec, this.name, ctxt, { - handleResult: function (resultPref) { value = resultPref.value; }, - handleCompletion: function () { + handleResult: function(resultPref) { value = resultPref.value; }, + handleCompletion: function() { if (!token.isCurrent) { this._notifyOnLocationChange(browser); return; @@ -237,7 +237,7 @@ var FullZoom = { // update state of zoom type menu item - updateMenu: function () { + updateMenu: function() { var menuItem = document.getElementById("toggle_zoom"); menuItem.setAttribute("checked", !ZoomManager.useFullZoom); @@ -248,7 +248,7 @@ var FullZoom = { /** * Reduces the zoom level of the page in the current browser. */ - reduce: function () { + reduce: function() { ZoomManager.reduce(); let browser = gBrowser.selectedBrowser; this._ignorePendingZoomAccesses(browser); @@ -258,7 +258,7 @@ var FullZoom = { /** * Enlarges the zoom level of the page in the current browser. */ - enlarge: function () { + enlarge: function() { ZoomManager.enlarge(); let browser = gBrowser.selectedBrowser; this._ignorePendingZoomAccesses(browser); @@ -269,7 +269,7 @@ var FullZoom = { * Sets the zoom level for the given browser to the given floating * point value, where 1 is the default zoom level. */ - setZoom: function (value, browser = gBrowser.selectedBrowser) { + setZoom: function(value, browser = gBrowser.selectedBrowser) { ZoomManager.setZoomForBrowser(browser, value); this._ignorePendingZoomAccesses(browser); this._applyZoomToPref(browser); @@ -281,7 +281,7 @@ var FullZoom = { * * @return A promise which resolves when the zoom reset has been applied. */ - reset: function (browser = gBrowser.selectedBrowser) { + reset: function(browser = gBrowser.selectedBrowser) { let token = this._getBrowserToken(browser); let result = this._getGlobalValue(browser).then(value => { if (token.isCurrent) { @@ -317,7 +317,7 @@ var FullZoom = { * @param aBrowser The zoom is set in this browser. Required. * @param aCallback If given, it's asynchronously called when complete. */ - _applyPrefToZoom: function (aValue, aBrowser, aCallback) { + _applyPrefToZoom: function(aValue, aBrowser, aCallback) { if (!this.siteSpecific || gInPrintPreviewMode) { this._executeSoon(aCallback); return; @@ -354,7 +354,7 @@ var FullZoom = { * * @param browser The zoom of this browser will be saved. Required. */ - _applyZoomToPref: function (browser) { + _applyZoomToPref: function(browser) { Services.obs.notifyObservers(browser, "browser-fullZoom:zoomChange", ""); if (!this.siteSpecific || gInPrintPreviewMode || @@ -364,7 +364,7 @@ var FullZoom = { this._cps2.set(browser.currentURI.spec, this.name, ZoomManager.getZoomForBrowser(browser), this._loadContextFromBrowser(browser), { - handleCompletion: function () { + handleCompletion: function() { this._isNextContentPrefChangeInternal = true; }.bind(this), }); @@ -375,13 +375,13 @@ var FullZoom = { * * @param browser The zoom of this browser will be removed. Required. */ - _removePref: function (browser) { + _removePref: function(browser) { Services.obs.notifyObservers(browser, "browser-fullZoom:zoomReset", ""); if (browser.isSyntheticDocument) return; let ctxt = this._loadContextFromBrowser(browser); this._cps2.removeByDomainAndName(browser.currentURI.spec, this.name, ctxt, { - handleCompletion: function () { + handleCompletion: function() { this._isNextContentPrefChangeInternal = true; }.bind(this), }); @@ -401,7 +401,7 @@ var FullZoom = { * @param browser The token of this browser will be returned. * @return An object with an "isCurrent" getter. */ - _getBrowserToken: function (browser) { + _getBrowserToken: function(browser) { let map = this._browserTokenMap; if (!map.has(browser)) map.set(browser, 0); @@ -423,7 +423,7 @@ var FullZoom = { * @param event The ZoomChangeUsingMouseWheel event. * @return The associated browser element, if one exists, otherwise null. */ - _getTargetedBrowser: function (event) { + _getTargetedBrowser: function(event) { let target = event.originalTarget; // With remote content browsers, the event's target is the browser @@ -449,12 +449,12 @@ var FullZoom = { * * @param browser Pending accesses in this browser will be ignored. */ - _ignorePendingZoomAccesses: function (browser) { + _ignorePendingZoomAccesses: function(browser) { let map = this._browserTokenMap; map.set(browser, (map.get(browser) || 0) + 1); }, - _ensureValid: function (aValue) { + _ensureValid: function(aValue) { // Note that undefined is a valid value for aValue that indicates a known- // not-to-exist value. if (isNaN(aValue)) @@ -476,7 +476,7 @@ var FullZoom = { * @returns Promise * Resolves to the preference value when done. */ - _getGlobalValue: function (browser) { + _getGlobalValue: function(browser) { // * !("_globalValue" in this) => global value not yet cached. // * this._globalValue === undefined => global value known not to exist. // * Otherwise, this._globalValue is a number, the global value. @@ -487,7 +487,7 @@ var FullZoom = { } let value = undefined; this._cps2.getGlobal(this.name, this._loadContextFromBrowser(browser), { - handleResult: function (pref) { value = pref.value; }, + handleResult: function(pref) { value = pref.value; }, handleCompletion: (reason) => { this._globalValue = this._ensureValid(value); resolve(this._globalValue); @@ -502,7 +502,7 @@ var FullZoom = { * @param Browser The Browser whose load context will be returned. * @return The nsILoadContext of the given Browser. */ - _loadContextFromBrowser: function (browser) { + _loadContextFromBrowser: function(browser) { return browser.loadContext; }, @@ -512,13 +512,13 @@ var FullZoom = { * The notification is always asynchronous so that observers are guaranteed a * consistent behavior. */ - _notifyOnLocationChange: function (browser) { - this._executeSoon(function () { + _notifyOnLocationChange: function(browser) { + this._executeSoon(function() { Services.obs.notifyObservers(browser, "browser-fullZoom:location-change", ""); }); }, - _executeSoon: function (callback) { + _executeSoon: function(callback) { if (!callback) return; Services.tm.mainThread.dispatch(callback, Ci.nsIThread.DISPATCH_NORMAL); diff --git a/application/palemoon/base/content/browser-gestureSupport.js b/application/palemoon/base/content/browser-gestureSupport.js index 6826fdbf34..64811779fd 100644 --- a/application/palemoon/base/content/browser-gestureSupport.js +++ b/application/palemoon/base/content/browser-gestureSupport.js @@ -24,7 +24,7 @@ var gGestureSupport = { * @param aAddListener * True to add/init listeners and false to remove/uninit */ - init: function (aAddListener) { + init: function(aAddListener) { // Bug 863514 - Make gesture support work in electrolysis if (gMultiProcessBrowser) return; @@ -38,7 +38,7 @@ var gGestureSupport = { let addRemove = aAddListener ? window.addEventListener : window.removeEventListener; - gestureEvents.forEach(function (event) addRemove("Moz" + event, this, true), + gestureEvents.forEach(function(event) addRemove("Moz" + event, this, true), this); }, @@ -50,7 +50,7 @@ var gGestureSupport = { * @param aEvent * The gesture event to handle */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { if (!Services.prefs.getBoolPref( "dom.debug.propagate_gesture_events_through_content")) { aEvent.stopPropagation(); @@ -122,7 +122,7 @@ var gGestureSupport = { * @param aDec * Command to trigger for decreasing motion (without gesture name) */ - _setupGesture: function (aEvent, aGesture, aPref, aInc, aDec) { + _setupGesture: function(aEvent, aGesture, aPref, aInc, aDec) { // Try to load user-set values from preferences for (let [pref, def] in Iterator(aPref)) aPref[pref] = this._getPref(aGesture + "." + pref, def); @@ -133,7 +133,7 @@ var gGestureSupport = { let isLatched = false; // Create the update function here to capture closure state - this._doUpdate = function (aEvent) { + this._doUpdate = function(aEvent) { // Update the offset with new event data offset += aEvent.delta; @@ -167,7 +167,7 @@ var gGestureSupport = { * The swipe gesture event. * @return true if the swipe event may navigate the history, false othwerwise. */ - _swipeNavigatesHistory: function (aEvent) { + _swipeNavigatesHistory: function(aEvent) { return this._getCommand(aEvent, ["swipe", "left"]) == "Browser:BackOrBackDuplicate" && this._getCommand(aEvent, ["swipe", "right"]) @@ -180,7 +180,7 @@ var gGestureSupport = { * @param aEvent * The swipe gesture start event. */ - _setupSwipeGesture: function (aEvent) { + _setupSwipeGesture: function(aEvent) { if (!this._swipeNavigatesHistory(aEvent)) return; @@ -197,15 +197,15 @@ var gGestureSupport = { gHistorySwipeAnimation.startAnimation(); - this._doUpdate = function (aEvent) { + this._doUpdate = function(aEvent) { gHistorySwipeAnimation.updateAnimation(aEvent.delta); }; - this._doEnd = function (aEvent) { + this._doEnd = function(aEvent) { gHistorySwipeAnimation.swipeEndEventReceived(); - this._doUpdate = function (aEvent) {}; - this._doEnd = function (aEvent) {}; + this._doUpdate = function(aEvent) {}; + this._doEnd = function(aEvent) {}; } }, @@ -217,12 +217,12 @@ var gGestureSupport = { * Source array containing any number of elements * @yield Array that is a subset of the input array from full set to empty */ - _power: function (aArray) { + _power: function(aArray) { // Create a bitmask based on the length of the array let num = 1 << aArray.length; while (--num >= 0) { // Only select array elements where the current bit is set - yield aArray.reduce(function (aPrev, aCurr, aIndex) { + yield aArray.reduce(function(aPrev, aCurr, aIndex) { if (num & 1 << aIndex) aPrev.push(aCurr); return aPrev; @@ -241,7 +241,7 @@ var gGestureSupport = { * @return Name of the executed command. Returns null if no command is * found. */ - _doAction: function (aEvent, aGesture) { + _doAction: function(aEvent, aGesture) { let command = this._getCommand(aEvent, aGesture); return command && this._doCommand(aEvent, command); }, @@ -255,12 +255,12 @@ var gGestureSupport = { * @param aGesture * Array of gesture name parts (to be joined by periods) */ - _getCommand: function (aEvent, aGesture) { + _getCommand: function(aEvent, aGesture) { // Create an array of pressed keys in a fixed order so that a command for // "meta" is preferred over "ctrl" when both buttons are pressed (and a // command for both don't exist) let keyCombos = []; - ["shift", "alt", "ctrl", "meta"].forEach(function (key) { + ["shift", "alt", "ctrl", "meta"].forEach(function(key) { if (aEvent[key + "Key"]) keyCombos.push(key); }); @@ -289,7 +289,7 @@ var gGestureSupport = { * @param aCommand * Name of the command found for the event's keys and gesture. */ - _doCommand: function (aEvent, aCommand) { + _doCommand: function(aEvent, aCommand) { let node = document.getElementById(aCommand); if (node) { if (node.getAttribute("disabled") != "true") { @@ -329,7 +329,7 @@ var gGestureSupport = { * @param aEvent * The swipe event to handle */ - onSwipe: function (aEvent) { + onSwipe: function(aEvent) { // Figure out which one (and only one) direction was triggered for (let dir of ["UP", "RIGHT", "DOWN", "LEFT"]) { if (aEvent.direction == aEvent["DIRECTION_" + dir]) { @@ -347,7 +347,7 @@ var gGestureSupport = { * @param aDir * The direction for the swipe event */ - processSwipeEvent: function (aEvent, aDir) { + processSwipeEvent: function(aEvent, aDir) { this._doAction(aEvent, ["swipe", aDir.toLowerCase()]); }, @@ -363,7 +363,7 @@ var gGestureSupport = { * The direction for the swipe event */ _coordinateSwipeEventWithAnimation: - function (aEvent, aDir) { + function(aEvent, aDir) { if ((gHistorySwipeAnimation.isAnimationRunning()) && (aDir == "RIGHT" || aDir == "LEFT")) { gHistorySwipeAnimation.processSwipeEvent(aEvent, aDir); @@ -381,7 +381,7 @@ var gGestureSupport = { * @param aDef * Default value if the preference doesn't exist */ - _getPref: function (aPref, aDef) { + _getPref: function(aPref, aDef) { // Preferences branch under which all gestures preferences are stored const branch = "browser.gesture."; @@ -541,7 +541,7 @@ var gHistorySwipeAnimation = { * Initializes the support for history swipe animations, if it is supported * by the platform/configuration. */ - init: function () { + init: function() { if (!this._isSupported()) return; @@ -568,7 +568,7 @@ var gHistorySwipeAnimation = { /** * Uninitializes the support for history swipe animations. */ - uninit: function () { + uninit: function() { gBrowser.removeEventListener("pagehide", this, false); gBrowser.removeEventListener("pageshow", this, false); gBrowser.removeEventListener("popstate", this, false); @@ -582,7 +582,7 @@ var gHistorySwipeAnimation = { * Starts the swipe animation and handles fast swiping (i.e. a swipe animation * is already in progress when a new one is initiated). */ - startAnimation: function () { + startAnimation: function() { if (this.isAnimationRunning()) { gBrowser.stop(); this._lastSwipeDir = "RELOAD"; // just ensure that != "" @@ -607,7 +607,7 @@ var gHistorySwipeAnimation = { /** * Stops the swipe animation. */ - stopAnimation: function () { + stopAnimation: function() { gHistorySwipeAnimation._removeBoxes(); }, @@ -618,7 +618,7 @@ var gHistorySwipeAnimation = { * A floating point value that represents the progress of the * swipe gesture. */ - updateAnimation: function (aVal) { + updateAnimation: function(aVal) { if (!this.isAnimationRunning()) return; @@ -668,7 +668,7 @@ var gHistorySwipeAnimation = { * @param aEvent * An event to process. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "TabClose": let browser = gBrowser.getBrowserForTab(aEvent.target); @@ -698,7 +698,7 @@ var gHistorySwipeAnimation = { * * @return true if the animation is currently running, false otherwise. */ - isAnimationRunning: function () { + isAnimationRunning: function() { return !!this._container; }, @@ -710,7 +710,7 @@ var gHistorySwipeAnimation = { * @param aDir * The direction for the swipe event */ - processSwipeEvent: function (aEvent, aDir) { + processSwipeEvent: function(aEvent, aDir) { if (aDir == "RIGHT") this._historyIndex += this.isLTR ? 1 : -1; else if (aDir == "LEFT") @@ -725,7 +725,7 @@ var gHistorySwipeAnimation = { * * @return true if there is a previous page in history, false otherwise. */ - canGoBack: function () { + canGoBack: function() { if (this.isAnimationRunning()) return this._doesIndexExistInHistory(this._historyIndex - 1); return gBrowser.webNavigation.canGoBack; @@ -736,7 +736,7 @@ var gHistorySwipeAnimation = { * * @return true if there is a next page in history, false otherwise. */ - canGoForward: function () { + canGoForward: function() { if (this.isAnimationRunning()) return this._doesIndexExistInHistory(this._historyIndex + 1); return gBrowser.webNavigation.canGoForward; @@ -747,7 +747,7 @@ var gHistorySwipeAnimation = { * event and that we should navigate to the page that the user swiped to, if * any. This will also result in the animation overlay to be torn down. */ - swipeEndEventReceived: function () { + swipeEndEventReceived: function() { if (this._lastSwipeDir != "") this._navigateToHistoryIndex(); else @@ -761,7 +761,7 @@ var gHistorySwipeAnimation = { * The index to check for availability for in the history. * @return true if the index exists in the browser history, false otherwise. */ - _doesIndexExistInHistory: function (aIndex) { + _doesIndexExistInHistory: function(aIndex) { try { gBrowser.webNavigation.sessionHistory.getEntryAtIndex(aIndex, false); } @@ -775,7 +775,7 @@ var gHistorySwipeAnimation = { * Navigates to the index in history that is currently being tracked by * |this|. */ - _navigateToHistoryIndex: function () { + _navigateToHistoryIndex: function() { if (this._doesIndexExistInHistory(this._historyIndex)) { gBrowser.webNavigation.gotoIndex(this._historyIndex); } @@ -787,7 +787,7 @@ var gHistorySwipeAnimation = { * * return true if supported, false otherwise. */ - _isSupported: function () { + _isSupported: function() { return window.matchMedia("(-moz-swipe-animation-enabled)").matches; }, @@ -796,7 +796,7 @@ var gHistorySwipeAnimation = { * progress when a new one is initiated). This will swap out the snapshots * used in the previous animation with the appropriate new ones. */ - _handleFastSwiping: function () { + _handleFastSwiping: function() { this._installCurrentPageSnapshot(null); this._installPrevAndNextSnapshots(); }, @@ -804,7 +804,7 @@ var gHistorySwipeAnimation = { /** * Adds the boxes that contain the snapshots used during the swipe animation. */ - _addBoxes: function () { + _addBoxes: function() { let browserStack = document.getAnonymousElementByAttribute(gBrowser.getNotificationBox(), "class", "browserStack"); @@ -830,7 +830,7 @@ var gHistorySwipeAnimation = { /** * Removes the boxes. */ - _removeBoxes: function () { + _removeBoxes: function() { this._curBox = null; this._prevBox = null; this._nextBox = null; @@ -849,7 +849,7 @@ var gHistorySwipeAnimation = { * The name of the tag to create the element for. * @return the newly created element. */ - _createElement: function (aID, aTagName) { + _createElement: function(aID, aTagName) { let XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; let element = document.createElementNS(XULNS, aTagName); element.id = aID; @@ -864,14 +864,14 @@ var gHistorySwipeAnimation = { * @param aPosition * The position (in X coordinates) to move the box element to. */ - _positionBox: function (aBox, aPosition) { + _positionBox: function(aBox, aPosition) { aBox.style.transform = "translateX(" + this._boxWidth * aPosition + "px)"; }, /** * Takes a snapshot of the page the browser is currently on. */ - _takeSnapshot: function () { + _takeSnapshot: function() { if ((this._maxSnapshots < 1) || (gBrowser.webNavigation.sessionHistory.index < 0)) return; @@ -899,7 +899,7 @@ var gHistorySwipeAnimation = { * Retrieves the maximum number of snapshots that should be kept in memory. * This limit is a global limit and is valid across all open tabs. */ - _getMaxSnapshots: function () { + _getMaxSnapshots: function() { return gPrefService.getIntPref("browser.snapshots.limit"); }, @@ -912,7 +912,7 @@ var gHistorySwipeAnimation = { * The snapshot to add to the list and compress. */ _assignSnapshotToCurrentBrowser: - function (aCanvas) { + function(aCanvas) { let browser = gBrowser.selectedBrowser; let currIndex = browser.webNavigation.sessionHistory.index; @@ -946,7 +946,7 @@ var gHistorySwipeAnimation = { * @param aBrowser * The browser the new snapshot was taken in. */ - _removeTrackedSnapshot: function (aIndex, aBrowser) { + _removeTrackedSnapshot: function(aIndex, aBrowser) { let arr = this._trackedSnapshots; let requiresExactIndexMatch = aIndex >= 0; for (let i = 0; i < arr.length; i++) { @@ -972,7 +972,7 @@ var gHistorySwipeAnimation = { * The browser the new snapshot was taken in. */ _addSnapshotRefToArray: - function (aIndex, aBrowser) { + function(aIndex, aBrowser) { let id = { index: aIndex, browser: aBrowser }; let arr = this._trackedSnapshots; @@ -995,7 +995,7 @@ var gHistorySwipeAnimation = { * couldn't complete before this method was called. * @return A new Image object representing the converted blob. */ - _convertToImg: function (aBlob) { + _convertToImg: function(aBlob) { if (!aBlob) return null; @@ -1022,7 +1022,7 @@ var gHistorySwipeAnimation = { * the previously stored snapshot for this index (if any) will be used. */ _installCurrentPageSnapshot: - function (aCanvas) { + function(aCanvas) { let currSnapshot = aCanvas; if (!currSnapshot) { let snapshots = gBrowser.selectedBrowser.snapshots || {}; @@ -1039,7 +1039,7 @@ var gHistorySwipeAnimation = { * previously stored for their respective indeces. */ _installPrevAndNextSnapshots: - function () { + function() { let snapshots = gBrowser.selectedBrowser.snapshots || []; let currIndex = this._historyIndex; let prevIndex = currIndex - 1; diff --git a/application/palemoon/base/content/browser-places.js b/application/palemoon/base/content/browser-places.js index 92c61b2cf4..e5287bb3a4 100644 --- a/application/palemoon/base/content/browser-places.js +++ b/application/palemoon/base/content/browser-places.js @@ -30,11 +30,11 @@ var StarUI = { get _blockedCommands() { delete this._blockedCommands; return this._blockedCommands = - ["cmd_close", "cmd_closeWindow"].map(function (id) this._element(id), this); + ["cmd_close", "cmd_closeWindow"].map(function(id) this._element(id), this); }, - _blockCommands: function () { - this._blockedCommands.forEach(function (elt) { + _blockCommands: function() { + this._blockedCommands.forEach(function(elt) { // make sure not to permanently disable this item (see bug 409155) if (elt.hasAttribute("wasDisabled")) return; @@ -47,8 +47,8 @@ var StarUI = { }); }, - _restoreCommandsState: function () { - this._blockedCommands.forEach(function (elt) { + _restoreCommandsState: function() { + this._blockedCommands.forEach(function(elt) { if (elt.getAttribute("wasDisabled") != "true") elt.removeAttribute("disabled"); elt.removeAttribute("wasDisabled"); @@ -56,7 +56,7 @@ var StarUI = { }, // nsIDOMEventListener - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "popuphidden": if (aEvent.originalTarget == this.panel) { @@ -119,7 +119,7 @@ var StarUI = { _overlayLoaded: false, _overlayLoading: false, showEditBookmarkPopup: - function (aItemId, aAnchorElement, aPosition) { + function(aItemId, aAnchorElement, aPosition) { // Performance: load the overlay the first time the panel is opened // (see bug 392443). if (this._overlayLoading) @@ -133,7 +133,7 @@ var StarUI = { this._overlayLoading = true; document.loadOverlay( "chrome://browser/content/places/editBookmarkOverlay.xul", - (function (aSubject, aTopic, aData) { + (function(aSubject, aTopic, aData) { //XXX We just caused localstore.rdf to be re-applied (bug 640158) retrieveToolbarIconsizesFromTheme(); @@ -152,7 +152,7 @@ var StarUI = { }, _doShowEditBookmarkPanel: - function (aItemId, aAnchorElement, aPosition) { + function(aItemId, aAnchorElement, aPosition) { if (this.panel.state != "closed") return; @@ -210,7 +210,7 @@ var StarUI = { }, panelShown: - function (aEvent) { + function(aEvent) { if (aEvent.target == this.panel) { if (!this._element("editBookmarkPanelContent").hidden) { let fieldToFocus = "editBMPanel_" + @@ -227,24 +227,24 @@ var StarUI = { } }, - quitEditMode: function () { + quitEditMode: function() { this._element("editBookmarkPanelContent").hidden = true; this._element("editBookmarkPanelBottomButtons").hidden = true; gEditItemOverlay.uninitPanel(true); }, - cancelButtonOnCommand: function () { + cancelButtonOnCommand: function() { this._actionOnHide = "cancel"; this.panel.hidePopup(); }, - removeBookmarkButtonCommand: function () { + removeBookmarkButtonCommand: function() { this._uriForRemoval = PlacesUtils.bookmarks.getBookmarkURI(this._itemId); this._actionOnHide = "remove"; this.panel.hidePopup(); }, - beginBatch: function () { + beginBatch: function() { if (!this._batching) { PlacesUtils.transactionManager.beginBatch(null); this._batching = true; @@ -267,7 +267,7 @@ var PlacesCommandHook = { * @param [optional] aShowEditUI * whether or not to show the edit-bookmark UI for the bookmark item */ - bookmarkPage: function (aBrowser, aParent, aShowEditUI) { + bookmarkPage: function(aBrowser, aParent, aShowEditUI) { var uri = aBrowser.currentURI; var itemId = PlacesUtils.getMostRecentBookmarkForURI(uri); if (itemId == -1) { @@ -343,7 +343,7 @@ var PlacesCommandHook = { /** * Adds a bookmark to the page loaded in the current tab. */ - bookmarkCurrentPage: function (aShowEditUI, aParent) { + bookmarkCurrentPage: function(aShowEditUI, aParent) { this.bookmarkPage(gBrowser.selectedBrowser, aParent, aShowEditUI); }, @@ -357,7 +357,7 @@ var PlacesCommandHook = { * @param aTitle * The link text */ - bookmarkLink: function (aParent, aURL, aTitle) { + bookmarkLink: function(aParent, aURL, aTitle) { var linkURI = makeURI(aURL); var itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI); if (itemId == -1) { @@ -387,7 +387,7 @@ var PlacesCommandHook = { get uniqueCurrentPages() { let uniquePages = {}; let URIs = []; - gBrowser.visibleTabs.forEach(function (tab) { + gBrowser.visibleTabs.forEach(function(tab) { let spec = tab.linkedBrowser.currentURI.spec; if (!tab.pinned && !(spec in uniquePages)) { uniquePages[spec] = null; @@ -401,7 +401,7 @@ var PlacesCommandHook = { * Adds a folder with bookmarks to all of the currently open tabs in this * window. */ - bookmarkCurrentPages: function () { + bookmarkCurrentPages: function() { let pages = this.uniqueCurrentPages; if (pages.length > 1) { PlacesUIUtils.showBookmarkDialog({ action: "add" @@ -416,7 +416,7 @@ var PlacesCommandHook = { * Updates disabled state for the "Bookmark All Tabs" command. */ updateBookmarkAllTabsCommand: - function () { + function() { // There's nothing to do in non-browser windows. if (window.location.href != getBrowserURL()) return; @@ -436,7 +436,7 @@ var PlacesCommandHook = { * @subtitle subtitle * A short description of the feed. Optional. */ - addLiveBookmark: function (url, feedTitle, feedSubtitle) { + addLiveBookmark: function(url, feedTitle, feedSubtitle) { let toolbarIP = new InsertionPoint(PlacesUtils.toolbarFolderId, -1); let feedURI = makeURI(url); @@ -466,7 +466,7 @@ var PlacesCommandHook = { * are: History, AllBookmarks, BookmarksMenu, BookmarksToolbar, * UnfiledBookmarks, Tags and Downloads. */ - showPlacesOrganizer: function (aLeftPaneRoot) { + showPlacesOrganizer: function(aLeftPaneRoot) { var organizer = Services.wm.getMostRecentWindow("Places:Organizer"); // Due to bug 528706, getMostRecentWindow can return closed windows. if (!organizer || organizer.closed) { @@ -499,7 +499,7 @@ function HistoryMenu(aPopupShowingEvent) { } HistoryMenu.prototype = { - toggleRestoreLastSession: function () { + toggleRestoreLastSession: function() { let restoreItem = this._rootElt.ownerDocument.getElementById("Browser:RestoreLastSession"); if (this._ss.canRestoreLastSession && @@ -509,7 +509,7 @@ HistoryMenu.prototype = { restoreItem.setAttribute("disabled", true); }, - toggleRecentlyClosedTabs: function () { + toggleRecentlyClosedTabs: function() { // enable/disable the Recently Closed Tabs sub menu var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedTabsMenu")[0]; @@ -526,7 +526,7 @@ HistoryMenu.prototype = { * @param aEvent * The event when the user clicks the menu item */ - _undoCloseMiddleClick: function (aEvent) { + _undoCloseMiddleClick: function(aEvent) { if (aEvent.button != 1) return; @@ -537,7 +537,7 @@ HistoryMenu.prototype = { /** * Populate when the history menu is opened */ - populateUndoSubmenu: function () { + populateUndoSubmenu: function() { var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedTabsMenu")[0]; var undoPopup = undoMenu.firstChild; @@ -596,7 +596,7 @@ HistoryMenu.prototype = { }, false); }, - toggleRecentlyClosedWindows: function () { + toggleRecentlyClosedWindows: function() { // enable/disable the Recently Closed Windows sub menu var undoMenu = this._rootElt.getElementsByClassName("recentlyClosedWindowsMenu")[0]; @@ -610,7 +610,7 @@ HistoryMenu.prototype = { /** * Populate when the history menu is opened */ - populateUndoWindowSubmenu: function () { + populateUndoWindowSubmenu: function() { let undoMenu = this._rootElt.getElementsByClassName("recentlyClosedWindowsMenu")[0]; let undoPopup = undoMenu.firstChild; let menuLabelString = gNavigatorBundle.getString("menuUndoCloseWindowLabel"); @@ -672,7 +672,7 @@ HistoryMenu.prototype = { "for (var i = 0; i < " + undoItems.length + "; i++) undoCloseWindow();"); }, - toggleTabsFromOtherComputers: function () { + toggleTabsFromOtherComputers: function() { // This is a no-op if MOZ_SERVICES_SYNC isn't defined #ifdef MOZ_SERVICES_SYNC // Enable/disable the Tabs From Other Computers menu. Some of the menus handled @@ -698,7 +698,7 @@ HistoryMenu.prototype = { #endif }, - _onPopupShowing: function (aEvent) { + _onPopupShowing: function(aEvent) { PlacesMenu.prototype._onPopupShowing.apply(this, arguments); // Don't handle events for submenus. @@ -711,7 +711,7 @@ HistoryMenu.prototype = { this.toggleTabsFromOtherComputers(); }, - _onCommand: function (aEvent) { + _onCommand: function(aEvent) { let placesNode = aEvent.target._placesNode; if (placesNode) { if (!PrivateBrowsingUtils.isWindowPrivate(window)) @@ -739,7 +739,7 @@ var BookmarksEventHandler = { * @param aView * The places view which aEvent should be associated with. */ - onClick: function (aEvent, aView) { + onClick: function(aEvent, aView) { // Only handle middle-click or left-click with modifiers. #ifdef XP_MACOSX var modifKey = aEvent.metaKey || aEvent.shiftKey; @@ -786,13 +786,13 @@ var BookmarksEventHandler = { * @param aView * The places view which aEvent should be associated with. */ - onCommand: function (aEvent, aView) { + onCommand: function(aEvent, aView) { var target = aEvent.originalTarget; if (target._placesNode) PlacesUIUtils.openNodeWithEvent(target._placesNode, aEvent, aView); }, - fillInBHTooltip: function (aDocument, aEvent) { + fillInBHTooltip: function(aDocument, aEvent) { var node; var cropped = false; var targetURI; @@ -863,7 +863,7 @@ var PlacesMenuDNDHandler = { * @param event * The DragEnter event that spawned the opening. */ - onDragEnter: function (event) { + onDragEnter: function(event) { // Opening menus in a Places popup is handled by the view itself. if (!this._isStaticContainer(event.target)) return; @@ -887,7 +887,7 @@ var PlacesMenuDNDHandler = { * @returns true if the element is a container element (menu or * menu-toolbarbutton), false otherwise. */ - onDragLeave: function (event) { + onDragLeave: function(event) { // Handle menu-button separate targets. if (event.relatedTarget === event.currentTarget || event.relatedTarget.parentNode === event.currentTarget) @@ -924,7 +924,7 @@ var PlacesMenuDNDHandler = { * @returns true if the element is a container element (menu or *` menu-toolbarbutton), false otherwise. */ - _isStaticContainer: function (node) { + _isStaticContainer: function(node) { let isMenu = node.localName == "menu" || (node.localName == "toolbarbutton" && (node.getAttribute("type") == "menu" || @@ -940,7 +940,7 @@ var PlacesMenuDNDHandler = { * @param event * The DragOver event. */ - onDragOver: function (event) { + onDragOver: function(event) { let ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, PlacesUtils.bookmarks.DEFAULT_INDEX, Ci.nsITreeView.DROP_ON); @@ -955,7 +955,7 @@ var PlacesMenuDNDHandler = { * @param event * The Drop event. */ - onDrop: function (event) { + onDrop: function(event) { // Put the item at the end of bookmark menu. let ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, PlacesUtils.bookmarks.DEFAULT_INDEX, @@ -979,7 +979,7 @@ var PlacesToolbarHelper = { return document.getElementById("PlacesToolbar"); }, - init: function () { + init: function() { let viewElt = this._viewElt; if (!viewElt || viewElt._placesView) return; @@ -997,7 +997,7 @@ var PlacesToolbarHelper = { new PlacesToolbar(this._place); }, - customizeStart: function () { + customizeStart: function() { let viewElt = this._viewElt; if (viewElt && viewElt._placesView) viewElt._placesView.uninit(); @@ -1005,7 +1005,7 @@ var PlacesToolbarHelper = { this._isCustomizing = true; }, - customizeDone: function () { + customizeDone: function() { this._isCustomizing = false; this.init(); } @@ -1074,11 +1074,11 @@ var BookmarkingUI = { * reasons. */ _popupNeedsUpdate: true, - onToolbarVisibilityChange: function () { + onToolbarVisibilityChange: function() { this._popupNeedsUpdate = true; }, - onPopupShowing: function (event) { + onPopupShowing: function(event) { // Don't handle events for submenus. if (event.target != event.currentTarget) return; @@ -1112,7 +1112,7 @@ var BookmarkingUI = { /** * Handles star styling based on page proxy state changes. */ - onPageProxyStateChanged: function (aState) { + onPageProxyStateChanged: function(aState) { if (!this.star) { return; } @@ -1126,7 +1126,7 @@ var BookmarkingUI = { } }, - _updateToolbarStyle: function () { + _updateToolbarStyle: function() { if (!this.button) { return; } @@ -1145,7 +1145,7 @@ var BookmarkingUI = { } }, - _uninitView: function () { + _uninitView: function() { // When an element with a placesView attached is removed and re-inserted, // XBL reapplies the binding causing any kind of issues and possible leaks, // so kill current view and let popupshowing generate a new one. @@ -1160,22 +1160,22 @@ var BookmarkingUI = { } }, - customizeStart: function () { + customizeStart: function() { this._uninitView(); }, - customizeChange: function () { + customizeChange: function() { this._updateToolbarStyle(); }, - customizeDone: function () { + customizeDone: function() { delete this._button; this.onToolbarVisibilityChange(); this._updateToolbarStyle(); }, _hasBookmarksObserver: false, - uninit: function () { + uninit: function() { this._uninitView(); if (this._hasBookmarksObserver) { @@ -1188,14 +1188,14 @@ var BookmarkingUI = { } }, - onLocationChange: function () { + onLocationChange: function() { if (this._uri && gBrowser.currentURI.equals(this._uri)) { return; } this.updateStarState(); }, - updateStarState: function () { + updateStarState: function() { // Reset tracked values. this._uri = gBrowser.currentURI; this._itemIds = []; @@ -1221,7 +1221,7 @@ var BookmarkingUI = { // calls back. For such an edge case, retain all unique entries from both // arrays. this._itemIds = this._itemIds.filter( - function (id) aItemIds.indexOf(id) == -1 + function(id) aItemIds.indexOf(id) == -1 ).concat(aItemIds); this._updateStar(); @@ -1240,7 +1240,7 @@ var BookmarkingUI = { }, this); }, - _updateStar: function () { + _updateStar: function() { if (!this.star) { return; } @@ -1255,7 +1255,7 @@ var BookmarkingUI = { } }, - onCommand: function (aEvent) { + onCommand: function(aEvent) { if (aEvent.target != aEvent.currentTarget) { return; } @@ -1266,7 +1266,7 @@ var BookmarkingUI = { }, // nsINavBookmarkObserver - onItemAdded: function (aItemId, aParentId, aIndex, aItemType, + onItemAdded: function(aItemId, aParentId, aIndex, aItemType, aURI) { if (aURI && aURI.equals(this._uri)) { // If a new bookmark has been added to the tracked uri, register it. @@ -1277,7 +1277,7 @@ var BookmarkingUI = { } }, - onItemRemoved: function (aItemId) { + onItemRemoved: function(aItemId) { let index = this._itemIds.indexOf(aItemId); // If one of the tracked bookmarks has been removed, unregister it. if (index != -1) { @@ -1286,7 +1286,7 @@ var BookmarkingUI = { } }, - onItemChanged: function (aItemId, aProperty, + onItemChanged: function(aItemId, aProperty, aIsAnnotationProperty, aNewValue) { if (aProperty == "uri") { let index = this._itemIds.indexOf(aItemId); @@ -1304,11 +1304,11 @@ var BookmarkingUI = { } }, - onBeginUpdateBatch: function () {}, - onEndUpdateBatch: function () {}, - onBeforeItemRemoved: function () {}, - onItemVisited: function () {}, - onItemMoved: function () {}, + onBeginUpdateBatch: function() {}, + onEndUpdateBatch: function() {}, + onBeforeItemRemoved: function() {}, + onItemVisited: function() {}, + onItemMoved: function() {}, QueryInterface: XPCOMUtils.generateQI([ Ci.nsINavBookmarkObserver diff --git a/application/palemoon/base/content/browser-plugins.js b/application/palemoon/base/content/browser-plugins.js index b31793a4ea..bb895372c4 100644 --- a/application/palemoon/base/content/browser-plugins.js +++ b/application/palemoon/base/content/browser-plugins.js @@ -11,12 +11,12 @@ var gPluginHandler = { PLUGIN_SCRIPTED_STATE_FIRED: 1, PLUGIN_SCRIPTED_STATE_DONE: 2, - getPluginUI: function (plugin, anonid) { + getPluginUI: function(plugin, anonid) { return plugin.ownerDocument. getAnonymousElementByAttribute(plugin, "anonid", anonid); }, - _getPluginInfo: function (pluginElement) { + _getPluginInfo: function(pluginElement) { let pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost); pluginElement.QueryInterface(Ci.nsIObjectLoadingContent); @@ -63,7 +63,7 @@ var gPluginHandler = { }, // Map the plugin's name to a filtered version more suitable for user UI. - makeNicePluginName : function (aName) { + makeNicePluginName : function(aName) { if (aName == "Shockwave Flash") return "Adobe Flash"; @@ -76,7 +76,7 @@ var gPluginHandler = { return newName; }, - isTooSmall : function (plugin, overlay) { + isTooSmall : function(plugin, overlay) { // Is the 's size too small to hold what we want to show? let pluginRect = plugin.getBoundingClientRect(); // XXX bug 446693. The text-shadow on the submitted-report text at @@ -88,7 +88,7 @@ var gPluginHandler = { return overflows; }, - addLinkClickCallback: function (linkNode, callbackName /*callbackArgs...*/) { + addLinkClickCallback: function(linkNode, callbackName /*callbackArgs...*/) { // XXX just doing (callback)(arg) was giving a same-origin error. bug? let self = this; let callbackArgs = Array.prototype.slice.call(arguments).slice(2); @@ -269,12 +269,12 @@ var gPluginHandler = { } }, - isKnownPlugin: function (objLoadingContent) { + isKnownPlugin: function(objLoadingContent) { return (objLoadingContent.getContentTypeForMIMEType(objLoadingContent.actualType) == Ci.nsIObjectLoadingContent.TYPE_PLUGIN); }, - canActivatePlugin: function (objLoadingContent) { + canActivatePlugin: function(objLoadingContent) { // if this isn't a known plugin, we can't activate it // (this also guards pluginHost.getPermissionStringForType against // unexpected input) @@ -307,7 +307,7 @@ var gPluginHandler = { overlay.style.visibility = "hidden"; }, - stopPlayPreview: function (aPlugin, aPlayPlugin) { + stopPlayPreview: function(aPlugin, aPlayPlugin) { let objLoadingContent = aPlugin.QueryInterface(Ci.nsIObjectLoadingContent); if (objLoadingContent.activated) return; @@ -319,28 +319,28 @@ var gPluginHandler = { }, // Callback for user clicking on a disabled plugin - managePlugins: function (aEvent) { + managePlugins: function(aEvent) { BrowserOpenAddonsMgr("addons://list/plugin"); }, // Callback for user clicking on the link in a click-to-play plugin // (where the plugin has an update) - openPluginUpdatePage: function (aEvent) { + openPluginUpdatePage: function(aEvent) { openURL(Services.urlFormatter.formatURLPref("plugins.update.url")); }, // Callback for user clicking a "reload page" link - reloadPage: function (browser) { + reloadPage: function(browser) { browser.reload(); }, // Callback for user clicking the help icon - openHelpPage: function () { + openHelpPage: function() { openHelpLink("plugin-crashed", false); }, // Event listener for click-to-play plugins. - _handleClickToPlayEvent: function (aPlugin) { + _handleClickToPlayEvent: function(aPlugin) { let doc = aPlugin.ownerDocument; let browser = gBrowser.getBrowserForDocument(doc.defaultView.top.document); let pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost); @@ -372,7 +372,7 @@ var gPluginHandler = { }, _overlayClickListener: { - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { let plugin = document.getBindingParent(aEvent.target); let contentWindow = plugin.ownerDocument.defaultView.top; // gBrowser.getBrowserForDocument does not exist in the case where we @@ -399,7 +399,7 @@ var gPluginHandler = { } }, - _handlePlayPreviewEvent: function (aPlugin) { + _handlePlayPreviewEvent: function(aPlugin) { let doc = aPlugin.ownerDocument; let browser = gBrowser.getBrowserForDocument(doc.defaultView.top.document); let pluginHost = Cc["@mozilla.org/plugin/host;1"].getService(Ci.nsIPluginHost); @@ -441,7 +441,7 @@ var gPluginHandler = { } }, - reshowClickToPlayNotification: function () { + reshowClickToPlayNotification: function() { let browser = gBrowser.selectedBrowser; let contentWindow = browser.contentWindow; let cwu = contentWindow.QueryInterface(Ci.nsIInterfaceRequestor) @@ -459,7 +459,7 @@ var gPluginHandler = { gPluginHandler._showClickToPlayNotification(browser); }, - _clickToPlayNotificationEventCallback: function (event) { + _clickToPlayNotificationEventCallback: function(event) { if (event == "showing") { gPluginHandler._makeCenterActions(this); } @@ -470,7 +470,7 @@ var gPluginHandler = { } }, - _makeCenterActions: function (notification) { + _makeCenterActions: function(notification) { let contentWindow = notification.browser.contentWindow; let cwu = contentWindow.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIDOMWindowUtils); @@ -533,7 +533,7 @@ var gPluginHandler = { * and activate plugins if necessary. * aNewState should be either "allownow" "allowalways" or "block" */ - _updatePluginPermission: function (aNotification, aPluginInfo, aNewState) { + _updatePluginPermission: function(aNotification, aPluginInfo, aNewState) { let permission; let expireType; let expireTime; @@ -598,7 +598,7 @@ var gPluginHandler = { } }, - _showClickToPlayNotification: function (aBrowser, aPrimaryPlugin) { + _showClickToPlayNotification: function(aBrowser, aPrimaryPlugin) { let notification = PopupNotifications.getNotification("click-to-play-plugins", aBrowser); let contentWindow = aBrowser.contentWindow; @@ -664,7 +664,7 @@ var gPluginHandler = { // Crashed-plugin event listener. Called for every instance of a // plugin in content. - pluginInstanceCrashed: function (plugin, aEvent) { + pluginInstanceCrashed: function(plugin, aEvent) { // Ensure the plugin and event are of the right type. if (!(aEvent instanceof Ci.nsIDOMDataContainerEvent)) return; diff --git a/application/palemoon/base/content/browser-syncui.js b/application/palemoon/base/content/browser-syncui.js index 9a02dc722d..3fc396f146 100644 --- a/application/palemoon/base/content/browser-syncui.js +++ b/application/palemoon/base/content/browser-syncui.js @@ -20,7 +20,7 @@ var gSyncUI = { _unloaded: false, - init: function () { + init: function() { // Proceed to set up the UI if Sync has already started up. // Otherwise we'll do it when Sync is firing up. let xps = Components.classes["@mozilla.org/weave/service;1"] @@ -48,7 +48,7 @@ var gSyncUI = { }, false); }, - initUI: function () { + initUI: function() { // If this is a browser window? if (gBrowser) { this._obs.push("weave:notification:added"); @@ -64,7 +64,7 @@ var gSyncUI = { this.updateUI(); }, - initNotifications: function () { + initNotifications: function() { const XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; let notificationbox = document.createElementNS(XULNS, "notificationbox"); notificationbox.id = "sync-notifications"; @@ -82,13 +82,13 @@ var gSyncUI = { _wasDelayed: false, - _needsSetup: function () { + _needsSetup: function() { let firstSync = Services.prefs.getCharPref("services.sync.firstSync", ""); return Weave.Status.checkSetup() == Weave.CLIENT_NOT_CONFIGURED || firstSync == "notReady"; }, - updateUI: function () { + updateUI: function() { let needsSetup = this._needsSetup(); document.getElementById("sync-setup-state").hidden = !needsSetup; document.getElementById("sync-syncnow-state").hidden = needsSetup; @@ -108,7 +108,7 @@ var gSyncUI = { // Functions called by observers - onActivityStart: function () { + onActivityStart: function() { if (!gBrowser) return; @@ -119,7 +119,7 @@ var gSyncUI = { button.setAttribute("status", "active"); }, - onSyncDelay: function () { + onSyncDelay: function() { // basically, we want to just inform users that stuff is going to take a while let title = this._stringBundle.GetStringFromName("error.sync.no_node_found.title"); let description = this._stringBundle.GetStringFromName("error.sync.no_node_found"); @@ -134,17 +134,17 @@ var gSyncUI = { this._wasDelayed = true; }, - onLoginFinish: function () { + onLoginFinish: function() { // Clear out any login failure notifications let title = this._stringBundle.GetStringFromName("error.login.title"); this.clearError(title); }, - onSetupComplete: function () { + onSetupComplete: function() { this.onLoginFinish(); }, - onLoginError: function () { + onLoginError: function() { // if login fails, any other notifications are essentially moot Weave.Notifications.removeAll(); @@ -182,11 +182,11 @@ var gSyncUI = { this.updateUI(); }, - onLogout: function () { + onLogout: function() { this.updateUI(); }, - onStartOver: function () { + onStartOver: function() { this.clearError(); }, @@ -205,17 +205,17 @@ var gSyncUI = { Weave.Notifications.replaceTitle(notification); }, - openServerStatus: function () { + openServerStatus: function() { let statusURL = Services.prefs.getCharPref("services.sync.statusURL"); window.openUILinkIn(statusURL, "tab"); }, // Commands - doSync: function () { + doSync: function() { setTimeout(function() Weave.Service.errorHandler.syncAndReportErrors(), 0); }, - handleToolbarButton: function () { + handleToolbarButton: function() { if (this._needsSetup()) this.openSetup(); else @@ -235,7 +235,7 @@ var gSyncUI = { * "reset" -- reset sync */ - openSetup: function (wizardType) { + openSetup: function(wizardType) { let win = Services.wm.getMostRecentWindow("Weave:AccountSetup"); if (win) win.focus(); @@ -246,7 +246,7 @@ var gSyncUI = { } }, - openAddDevice: function () { + openAddDevice: function() { if (!Weave.Utils.ensureMPUnlocked()) return; @@ -258,7 +258,7 @@ var gSyncUI = { "syncAddDevice", "centerscreen,chrome,resizable=no"); }, - openQuotaDialog: function () { + openQuotaDialog: function() { let win = Services.wm.getMostRecentWindow("Sync:ViewQuota"); if (win) win.focus(); @@ -268,13 +268,13 @@ var gSyncUI = { "centerscreen,chrome,dialog,modal"); }, - openPrefs: function () { + openPrefs: function() { openPreferences("paneSync"); }, // Helpers - _updateLastSyncTime: function () { + _updateLastSyncTime: function() { if (!gBrowser) return; @@ -296,12 +296,12 @@ var gSyncUI = { syncButton.setAttribute("tooltiptext", lastSyncLabel); }, - clearError: function (errorString) { + clearError: function(errorString) { Weave.Notifications.removeAll(errorString); this.updateUI(); }, - onSyncFinish: function () { + onSyncFinish: function() { let title = this._stringBundle.GetStringFromName("error.sync.title"); // Clear out sync failures on a successful sync @@ -314,7 +314,7 @@ var gSyncUI = { } }, - onSyncError: function () { + onSyncError: function() { let title = this._stringBundle.GetStringFromName("error.sync.title"); if (Weave.Status.login != Weave.LOGIN_SUCCEEDED) { @@ -395,7 +395,7 @@ var gSyncUI = { this.updateUI(); }, - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (this._unloaded) { Cu.reportError("SyncUI observer called after unload: " + topic); return; diff --git a/application/palemoon/base/content/browser-tabPreviews.js b/application/palemoon/base/content/browser-tabPreviews.js index 0317e309f9..61efc1ac94 100644 --- a/application/palemoon/base/content/browser-tabPreviews.js +++ b/application/palemoon/base/content/browser-tabPreviews.js @@ -22,7 +22,7 @@ var tabPreviews = { return this.height = Math.round(this.width * this.aspectRatio); }, - init: function () { + init: function() { if (this._selectedTab) return; this._selectedTab = gBrowser.selectedTab; @@ -31,7 +31,7 @@ var tabPreviews = { gBrowser.tabContainer.addEventListener("SSTabRestored", this, false); }, - get: function (aTab) { + get: function(aTab) { let uri = aTab.linkedBrowser.currentURI.spec; if (aTab.__thumbnail_lastURI && @@ -52,7 +52,7 @@ var tabPreviews = { return this.capture(aTab, !aTab.hasAttribute("busy")); }, - capture: function (aTab, aStore) { + capture: function(aTab, aStore) { var thumbnail = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas"); thumbnail.mozOpaque = true; thumbnail.height = this.height; @@ -75,7 +75,7 @@ var tabPreviews = { return thumbnail; }, - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "TabSelect": if (this._selectedTab && @@ -86,7 +86,7 @@ var tabPreviews = { // for tabs that will be closed. During that timeout, don't generate other // thumbnails in case multiple TabSelect events occur fast in succession. this._pendingUpdate = true; - setTimeout(function (self, aTab) { + setTimeout(function(self, aTab) { self._pendingUpdate = false; if (aTab.parentNode && !aTab.hasAttribute("busy") && @@ -104,7 +104,7 @@ var tabPreviews = { }; var tabPreviewPanelHelper = { - opening: function (host) { + opening: function(host) { host.panel.hidden = false; var handler = this._generateHandler(host); @@ -113,20 +113,20 @@ var tabPreviewPanelHelper = { host._prevFocus = document.commandDispatcher.focusedElement; }, - _generateHandler: function (host) { + _generateHandler: function(host) { var self = this; - return function (event) { + return function(event) { if (event.target == host.panel) { host.panel.removeEventListener(event.type, arguments.callee, false); self["_" + event.type](host); } }; }, - _popupshown: function (host) { + _popupshown: function(host) { if ("setupGUI" in host) host.setupGUI(); }, - _popuphiding: function (host) { + _popuphiding: function(host) { if ("suspendGUI" in host) host.suspendGUI(); @@ -167,7 +167,7 @@ var ctrlTab = { }, get keys () { var keys = {}; - ["close", "find", "selectAll"].forEach(function (key) { + ["close", "find", "selectAll"].forEach(function(key) { keys[key] = document.getElementById("key_" + key) .getAttribute("key") .toLocaleLowerCase().charCodeAt(0); @@ -193,13 +193,13 @@ var ctrlTab = { // Using gBrowser.tabs instead of gBrowser.visibleTabs, as the latter // exlcudes closing tabs, breaking the following loop in case the the // selected tab is closing. - let list = Array.filter(gBrowser.tabs, function (tab) !tab.hidden); + let list = Array.filter(gBrowser.tabs, function(tab) !tab.hidden); // Rotate the list until the selected tab is first while (!list[0].selected) list.push(list.shift()); - list = list.filter(function (tab) !tab.closing); + list = list.filter(function(tab) !tab.closing); if (this.recentlyUsedLimit != 0) { let recentlyUsedTabs = []; @@ -218,7 +218,7 @@ var ctrlTab = { let hidePinnedTabs = gPrefService.getBoolPref("browser.ctrlTab.hidePinnedTabs"); if (hidePinnedTabs) { - regularTabsList = list.filter(function (tab) !tab.pinned); + regularTabsList = list.filter(function(tab) !tab.pinned); // Don't hide pinned tabs if we only have 1 regular tab if (regularTabsList.length > 1) { list = regularTabsList; @@ -228,7 +228,7 @@ var ctrlTab = { return this._tabList = list; }, - init: function () { + init: function() { if (!this._recentlyUsedTabs) { tabPreviews.init(); @@ -237,13 +237,13 @@ var ctrlTab = { } }, - uninit: function () { + uninit: function() { this._recentlyUsedTabs = null; this._init(false); }, prefName: "browser.ctrlTab.previews", - readPref: function () { + readPref: function() { var enable = gPrefService.getBoolPref(this.prefName) && (!gPrefService.prefHasUserValue("browser.ctrlTab.disallowForScreenReaders") || @@ -254,11 +254,11 @@ var ctrlTab = { else this.uninit(); }, - observe: function (aSubject, aTopic, aPrefName) { + observe: function(aSubject, aTopic, aPrefName) { this.readPref(); }, - updatePreviews: function () { + updatePreviews: function() { for (let i = 0; i < this.previews.length; i++) this.updatePreview(this.previews[i], this.tabList[i]); @@ -267,7 +267,7 @@ var ctrlTab = { PluralForm.get(this.tabCount, showAllLabel).replace("#1", this.tabCount); }, - updatePreview: function (aPreview, aTab) { + updatePreview: function(aPreview, aTab) { if (aPreview == this.showAllButton) return; @@ -301,7 +301,7 @@ var ctrlTab = { } }, - advanceFocus: function (aForward) { + advanceFocus: function(aForward) { let selectedIndex = Array.indexOf(this.previews, this.selected); do { selectedIndex += aForward ? 1 : -1; @@ -325,12 +325,12 @@ var ctrlTab = { } }, - _mouseOverFocus: function (aPreview) { + _mouseOverFocus: function(aPreview) { if (this._trackMouseOver) aPreview.focus(); }, - pick: function (aPreview) { + pick: function(aPreview) { if (!this.tabCount) return; @@ -342,17 +342,17 @@ var ctrlTab = { this.close(select._tab); }, - showAllTabs: function (aPreview) { + showAllTabs: function(aPreview) { this.close(); document.getElementById("Browser:ShowAllTabs").doCommand(); }, - remove: function (aPreview) { + remove: function(aPreview) { if (aPreview._tab) gBrowser.removeTab(aPreview._tab); }, - attachTab: function (aTab, aPos) { + attachTab: function(aTab, aPos) { if (aPos == 0) this._recentlyUsedTabs.unshift(aTab); else if (aPos) @@ -360,13 +360,13 @@ var ctrlTab = { else this._recentlyUsedTabs.push(aTab); }, - detachTab: function (aTab) { + detachTab: function(aTab) { var i = this._recentlyUsedTabs.indexOf(aTab); if (i >= 0) this._recentlyUsedTabs.splice(i, 1); }, - open: function () { + open: function() { if (this.isOpen) return; @@ -379,13 +379,13 @@ var ctrlTab = { // Add a slight delay before showing the UI, so that a quick // "ctrl-tab" keypress just flips back to the MRU tab. - this._timer = setTimeout(function (self) { + this._timer = setTimeout(function(self) { self._timer = null; self._openPanel(); }, 200, this); }, - _openPanel: function () { + _openPanel: function() { tabPreviewPanelHelper.opening(this); this.panel.width = Math.min(screen.availWidth * .99, @@ -396,7 +396,7 @@ var ctrlTab = { false); }, - close: function (aTabToSelect) { + close: function(aTabToSelect) { if (!this.isOpen) return; @@ -413,30 +413,30 @@ var ctrlTab = { this.panel.hidePopup(); }, - setupGUI: function () { + setupGUI: function() { this.selected.focus(); this._selectedIndex = -1; // Track mouse movement after a brief delay so that the item that happens // to be under the mouse pointer initially won't be selected unintentionally. this._trackMouseOver = false; - setTimeout(function (self) { + setTimeout(function(self) { if (self.isOpen) self._trackMouseOver = true; }, 0, this); }, - suspendGUI: function () { + suspendGUI: function() { document.removeEventListener("keyup", this, true); - Array.forEach(this.previews, function (preview) { + Array.forEach(this.previews, function(preview) { this.updatePreview(preview, null); }, this); this._tabList = null; }, - onKeyPress: function (event) { + onKeyPress: function(event) { var isOpen = this.isOpen; if (isOpen) { @@ -481,7 +481,7 @@ var ctrlTab = { } }, - removeClosingTabFromUI: function (aTab) { + removeClosingTabFromUI: function(aTab) { if (this.tabCount == 2) { this.close(); return; @@ -497,13 +497,13 @@ var ctrlTab = { // If the current tab is removed, another tab can steal our focus. if (aTab.selected && this.panel.state == "open") { - setTimeout(function (selected) { + setTimeout(function(selected) { selected.focus(); }, 0, this.selected); } }, - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "TabAttrModified": // tab attribute modified (e.g. label, crop, busy, image, selected) @@ -536,7 +536,7 @@ var ctrlTab = { } }, - _init: function (enable) { + _init: function(enable) { var toggleEventListener = enable ? "addEventListener" : "removeEventListener"; var tabContainer = gBrowser.tabContainer; @@ -587,14 +587,14 @@ var allTabs = { get previews () this.container.getElementsByClassName("allTabs-preview"), get isOpen () this.panel.state == "open" || this.panel.state == "showing", - init: function () { + init: function() { if (this._initiated) return; this._initiated = true; tabPreviews.init(); - Array.forEach(gBrowser.tabs, function (tab) { + Array.forEach(gBrowser.tabs, function(tab) { this._addPreview(tab); }, this); @@ -604,7 +604,7 @@ var allTabs = { gBrowser.tabContainer.addEventListener("TabClose", this, false); }, - uninit: function () { + uninit: function() { if (!this._initiated) return; @@ -620,7 +620,7 @@ var allTabs = { }, prefName: "browser.allTabs.previews", - readPref: function () { + readPref: function() { var allTabsButton = this.toolbarButton; if (!allTabsButton) return; @@ -634,11 +634,11 @@ var allTabs = { allTabsButton.removeAttribute("oncommand"); } }, - observe: function (aSubject, aTopic, aPrefName) { + observe: function(aSubject, aTopic, aPrefName) { this.readPref(); }, - pick: function (aPreview) { + pick: function(aPreview) { if (!aPreview) aPreview = this._firstVisiblePreview; if (aPreview) @@ -647,12 +647,12 @@ var allTabs = { this.close(); }, - closeTab: function (event) { + closeTab: function(event) { this.filterField.focus(); gBrowser.removeTab(event.currentTarget._targetPreview._tab); }, - filter: function () { + filter: function() { if (this._currentFilter == this.filterField.value) return; @@ -660,7 +660,7 @@ var allTabs = { let hidePinnedTabs = gPrefService.getBoolPref("browser.allTabs.hidePinnedTabs"); if (hidePinnedTabs) { - let regularTabsList = Array.filter(this.previews, function (preview) !preview._tab.pinned); + let regularTabsList = Array.filter(this.previews, function(preview) !preview._tab.pinned); // Show pinned tabs if we don't have any regular tabs if (regularTabsList.length == 0) { hidePinnedTabs = false; @@ -669,7 +669,7 @@ var allTabs = { var filter = this._currentFilter.split(/\s+/g); this._visible = 0; - Array.forEach(this.previews, function (preview) { + Array.forEach(this.previews, function(preview) { var tab = preview._tab; var matches = 0; if (filter.length && !tab.hidden) { @@ -694,13 +694,13 @@ var allTabs = { this._reflow(); }, - open: function () { + open: function() { var allTabsButton = this.toolbarButton; if (allTabsButton && allTabsButton.getAttribute("type") == "menu") { // Without setTimeout, the menupopup won't stay open when invoking // "View > Show All Tabs" and the menu bar auto-hides. - setTimeout(function () { + setTimeout(function() { allTabsButton.open = true; }, 0); return; @@ -722,11 +722,11 @@ var allTabs = { this.panel.openPopup(gBrowser, "overlap", 0, 0, false, true); }, - close: function () { + close: function() { this.panel.hidePopup(); }, - setupGUI: function () { + setupGUI: function() { this.filterField.focus(); this.filterField.placeholder = this.filterField.tooltipText; @@ -739,7 +739,7 @@ var allTabs = { document.getElementById("Browser:ShowAllTabs").setAttribute("disabled", "true"); }, - suspendGUI: function () { + suspendGUI: function() { this.filterField.placeholder = ""; this.filterField.value = ""; this._currentFilter = null; @@ -750,12 +750,12 @@ var allTabs = { this.panel.removeEventListener("keypress", this, true); this._browserCommandSet.removeEventListener("command", this, false); - setTimeout(function () { + setTimeout(function() { document.getElementById("Browser:ShowAllTabs").removeAttribute("disabled"); }, 300); }, - handleEvent: function (event) { + handleEvent: function(event) { if (event.type.startsWith("Tab")) { var tab = event.target; if (event.type != "TabOpen") @@ -815,7 +815,7 @@ var allTabs = { }, get _visiblePreviews () - Array.filter(this.previews, function (preview) !preview.hidden), + Array.filter(this.previews, function(preview) !preview.hidden), get _firstVisiblePreview () { if (this._visible == 0) @@ -828,7 +828,7 @@ var allTabs = { return null; }, - _reflow: function () { + _reflow: function() { this._updateTabCloseButton(); const CONTAINER_MAX_WIDTH = this._maxPanelWidth * .95; @@ -867,7 +867,7 @@ var allTabs = { var row = this.container.firstChild; var colCount = 0; - previews.forEach(function (preview) { + previews.forEach(function(preview) { if (!preview.hidden && ++colCount > this._columns) { row = row.nextSibling; @@ -887,14 +887,14 @@ var allTabs = { this.container.maxHeight = rows * outerHeight; }, - _addPreview: function (aTab) { + _addPreview: function(aTab) { var preview = document.createElement("button"); preview.className = "allTabs-preview"; preview._tab = aTab; this.container.lastChild.appendChild(preview); }, - _removePreview: function (aPreview) { + _removePreview: function(aPreview) { var updateUI = (this.isOpen && !aPreview.hidden); aPreview._tab = null; aPreview.parentNode.removeChild(aPreview); @@ -905,7 +905,7 @@ var allTabs = { } }, - _getPreview: function (aTab) { + _getPreview: function(aTab) { var previews = this.previews; for (let i = 0; i < previews.length; i++) if (previews[i]._tab == aTab) @@ -913,7 +913,7 @@ var allTabs = { return null; }, - _updateTabCloseButton: function (event) { + _updateTabCloseButton: function(event) { if (event && event.target == this.tabCloseButton) return; @@ -950,7 +950,7 @@ var allTabs = { } }, - _updatePreview: function (aPreview) { + _updatePreview: function(aPreview) { aPreview.setAttribute("label", aPreview._tab.label); aPreview.setAttribute("tooltiptext", aPreview._tab.label); aPreview.setAttribute("crop", aPreview._tab.crop); @@ -975,7 +975,7 @@ var allTabs = { aPreview.appendChild(thumbnail); }, - _onKeyPress: function (event) { + _onKeyPress: function(event) { if (event.eventPhase == event.CAPTURING_PHASE) { this._onCapturingKeyPress(event); return; @@ -1010,7 +1010,7 @@ var allTabs = { } }, - _onCapturingKeyPress: function (event) { + _onCapturingKeyPress: function(event) { switch (event.keyCode) { case event.DOM_VK_UP: case event.DOM_VK_DOWN: @@ -1028,7 +1028,7 @@ var allTabs = { } }, - _advanceFocusVertically: function (event) { + _advanceFocusVertically: function(event) { var preview = document.activeElement; if (!preview || preview.parentNode.parentNode != this.container) return; diff --git a/application/palemoon/base/content/browser-thumbnails.js b/application/palemoon/base/content/browser-thumbnails.js index bab99a59bd..1052e75484 100644 --- a/application/palemoon/base/content/browser-thumbnails.js +++ b/application/palemoon/base/content/browser-thumbnails.js @@ -30,7 +30,7 @@ var gBrowserThumbnails = { */ _tabEvents: ["TabClose", "TabSelect"], - init: function () { + init: function() { // Bug 863512 - Make page thumbnails work in electrolysis if (gMultiProcessBrowser) return; @@ -47,14 +47,14 @@ var gBrowserThumbnails = { this._sslDiskCacheEnabled = Services.prefs.getBoolPref(this.PREF_DISK_CACHE_SSL); - this._tabEvents.forEach(function (aEvent) { + this._tabEvents.forEach(function(aEvent) { gBrowser.tabContainer.addEventListener(aEvent, this, false); }, this); this._timeouts = new WeakMap(); }, - uninit: function () { + uninit: function() { // Bug 863512 - Make page thumbnails work in electrolysis if (gMultiProcessBrowser) return; @@ -63,12 +63,12 @@ var gBrowserThumbnails = { gBrowser.removeTabsProgressListener(this); Services.prefs.removeObserver(this.PREF_DISK_CACHE_SSL, this); - this._tabEvents.forEach(function (aEvent) { + this._tabEvents.forEach(function(aEvent) { gBrowser.tabContainer.removeEventListener(aEvent, this, false); }, this); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "scroll": let browser = aEvent.currentTarget; @@ -85,13 +85,13 @@ var gBrowserThumbnails = { } }, - observe: function () { + observe: function() { this._sslDiskCacheEnabled = Services.prefs.getBoolPref(this.PREF_DISK_CACHE_SSL); }, filterForThumbnailExpiration: - function (aCallback) { + function(aCallback) { // Tycho: aCallback([browser.currentURI.spec for (browser of gBrowser.browsers)]); let result = []; for (let browser of gBrowser.browsers) { @@ -103,25 +103,25 @@ var gBrowserThumbnails = { /** * State change progress listener for all tabs. */ - onStateChange: function (aBrowser, aWebProgress, + onStateChange: function(aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) { if (aStateFlags & Ci.nsIWebProgressListener.STATE_STOP && aStateFlags & Ci.nsIWebProgressListener.STATE_IS_NETWORK) this._delayedCapture(aBrowser); }, - _capture: function (aBrowser) { + _capture: function(aBrowser) { if (this._shouldCapture(aBrowser)) PageThumbs.captureAndStore(aBrowser); }, - _delayedCapture: function (aBrowser) { + _delayedCapture: function(aBrowser) { if (this._timeouts.has(aBrowser)) clearTimeout(this._timeouts.get(aBrowser)); else aBrowser.addEventListener("scroll", this, true); - let timeout = setTimeout(function () { + let timeout = setTimeout(function() { this._clearTimeout(aBrowser); this._capture(aBrowser); }.bind(this), this._captureDelayMS); @@ -129,7 +129,7 @@ var gBrowserThumbnails = { this._timeouts.set(aBrowser, timeout); }, - _shouldCapture: function (aBrowser) { + _shouldCapture: function(aBrowser) { // Capture only if it's the currently selected tab. if (aBrowser != gBrowser.selectedBrowser) return false; @@ -193,7 +193,7 @@ var gBrowserThumbnails = { return true; }, - _clearTimeout: function (aBrowser) { + _clearTimeout: function(aBrowser) { if (this._timeouts.has(aBrowser)) { aBrowser.removeEventListener("scroll", this, false); clearTimeout(this._timeouts.get(aBrowser)); diff --git a/application/palemoon/base/content/browser.js b/application/palemoon/base/content/browser.js index 1a96f9caa4..56db1afd31 100644 --- a/application/palemoon/base/content/browser.js +++ b/application/palemoon/base/content/browser.js @@ -36,16 +36,16 @@ var gEditUIVisible = true; ["gNavToolbox", "navigator-toolbox"], ["gURLBar", "urlbar"], ["gNavigatorBundle", "bundle_browser"] -].forEach(function (elementGlobal) { +].forEach(function(elementGlobal) { var [name, id] = elementGlobal; - window.__defineGetter__(name, function () { + window.__defineGetter__(name, function() { var element = document.getElementById(id); if (!element) return null; delete window[name]; return window[name] = element; }); - window.__defineSetter__(name, function (val) { + window.__defineSetter__(name, function(val) { delete window[name]; return window[name] = val; }); @@ -81,7 +81,7 @@ this.__defineGetter__("AddonManager", function() { Cu.import("resource://gre/modules/AddonManager.jsm", tmp); return this.AddonManager = tmp.AddonManager; }); -this.__defineSetter__("AddonManager", function (val) { +this.__defineSetter__("AddonManager", function(val) { delete this.AddonManager; return this.AddonManager = val; }); @@ -97,7 +97,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "Weave", "resource://services-sync/main.js"); #endif -XPCOMUtils.defineLazyGetter(this, "PopupNotifications", function () { +XPCOMUtils.defineLazyGetter(this, "PopupNotifications", function() { let tmp = {}; Cu.import("resource:///modules/PopupNotifications.jsm", tmp); try { @@ -151,17 +151,17 @@ var gInitialPages = [ #include browser-syncui.js #endif -XPCOMUtils.defineLazyGetter(this, "Win7Features", function () { +XPCOMUtils.defineLazyGetter(this, "Win7Features", function() { #ifdef XP_WIN const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1"; if (WINTASKBAR_CONTRACTID in Cc && Cc[WINTASKBAR_CONTRACTID].getService(Ci.nsIWinTaskbar).available) { let AeroPeek = Cu.import("resource:///modules/WindowsPreviewPerTab.jsm", {}).AeroPeek; return { - onOpenWindow: function () { + onOpenWindow: function() { AeroPeek.onOpenWindow(window); }, - onCloseWindow: function () { + onCloseWindow: function() { AeroPeek.onCloseWindow(window); } }; @@ -468,7 +468,7 @@ function findChildShell(aDocument, aDocShell, aSoughtURI) { var gPopupBlockerObserver = { _reportButton: null, - onReportButtonClick: function (aEvent) + onReportButtonClick: function(aEvent) { if (aEvent.button != 0 || aEvent.target != this._reportButton) return; @@ -477,7 +477,7 @@ var gPopupBlockerObserver = { .openPopup(this._reportButton, "after_end", 0, 2, false, false, aEvent); }, - handleEvent: function (aEvent) + handleEvent: function(aEvent) { if (aEvent.originalTarget != gBrowser.selectedBrowser) return; @@ -537,7 +537,7 @@ var gPopupBlockerObserver = { } }, - toggleAllowPopupsForSite: function (aEvent) + toggleAllowPopupsForSite: function(aEvent) { var pm = Services.perms; var shouldBlock = aEvent.target.getAttribute("block") == "true"; @@ -547,7 +547,7 @@ var gPopupBlockerObserver = { gBrowser.getNotificationBox().removeCurrentNotification(); }, - fillPopupList: function (aEvent) + fillPopupList: function(aEvent) { // XXXben - rather than using |currentURI| here, which breaks down on multi-framed sites // we should really walk the blockedPopups and create a list of "allow for " @@ -650,7 +650,7 @@ var gPopupBlockerObserver = { }, null); }, - onPopupHiding: function (aEvent) { + onPopupHiding: function(aEvent) { if (aEvent.target.anchorNode.id == "page-report-button") aEvent.target.anchorNode.removeAttribute("open"); @@ -662,7 +662,7 @@ var gPopupBlockerObserver = { } }, - showBlockedPopup: function (aEvent) + showBlockedPopup: function(aEvent) { var target = aEvent.target; var popupReportIndex = target.getAttribute("popupReportIndex"); @@ -670,7 +670,7 @@ var gPopupBlockerObserver = { browser.unblockPopup(popupReportIndex); }, - editPopupSettings: function () + editPopupSettings: function() { var host = ""; try { @@ -696,7 +696,7 @@ var gPopupBlockerObserver = { "_blank", "resizable,dialog=no,centerscreen", params); }, - dontShowMessage: function () + dontShowMessage: function() { var showMessage = gPrefService.getBoolPref("privacy.popups.showBrowserMessage"); gPrefService.setBoolPref("privacy.popups.showBrowserMessage", !showMessage); @@ -706,7 +706,7 @@ var gPopupBlockerObserver = { const gXSSObserver = { - observe: function (aSubject, aTopic, aData) + observe: function(aSubject, aTopic, aData) { // Don't do anything if the notification is disabled. @@ -732,7 +732,7 @@ const gXSSObserver = { label: 'View Unsafe Content', accessKey: 'V', popup: null, - callback: function () { + callback: function() { alert(content); } }]; @@ -742,7 +742,7 @@ const gXSSObserver = { label: 'Add Domain Exception', accessKey: 'A', popup: null, - callback: function () { + callback: function() { let whitelist = gPrefService.getCharPref("security.xssfilter.whitelist"); if (whitelist != "") { whitelist = whitelist + "," + domain; @@ -1012,7 +1012,7 @@ var gBrowserInit = { this._loadHandled = true; }, - _cancelDelayedStartup: function () { + _cancelDelayedStartup: function() { window.removeEventListener("MozAfterPaint", this._boundDelayedStartup); this._boundDelayedStartup = null; }, @@ -1307,7 +1307,7 @@ var gBrowserInit = { TabView.init(); } // XXX: do we still need this?... - setTimeout(function () { BrowserChromeTest.markAsReady(); }, 0); + setTimeout(function() { BrowserChromeTest.markAsReady(); }, 0); }); this.delayedStartupFinished = true; @@ -1316,7 +1316,7 @@ var gBrowserInit = { }, // Returns the URI(s) to load at startup. - _getUriToLoad: function () { + _getUriToLoad: function() { // window.arguments[0]: URI to load (string), or an nsISupportsArray of // nsISupportsStrings to load, or a xul:tab of // a tabbrowser, which will be replaced by this @@ -1560,7 +1560,7 @@ var gBrowserInit = { let itemArray = itemBranch.getChildList(""); // See if any privacy.item prefs are set - let doMigrate = itemArray.some(function (name) itemBranch.prefHasUserValue(name)); + let doMigrate = itemArray.some(function(name) itemBranch.prefHasUserValue(name)); // Or if sanitizeOnShutdown is set if (!doMigrate) doMigrate = gPrefService.getBoolPref("privacy.sanitize.sanitizeOnShutdown"); @@ -2502,7 +2502,7 @@ function BrowserOnAboutPageLoad(doc) { * Handle command events bubbling up from error page content */ var BrowserOnClick = { - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { if (!aEvent.isTrusted || // Don't trust synthetic events aEvent.button == 2 || aEvent.target.localName != "button") { return; @@ -2524,7 +2524,7 @@ var BrowserOnClick = { } }, - onAboutCertError: function (aTargetElm, aOwnerDoc) { + onAboutCertError: function(aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); let isTopFrame = (aOwnerDoc.defaultView.parent === aOwnerDoc.defaultView); @@ -2565,14 +2565,14 @@ var BrowserOnClick = { } }, - onAboutNetError: function (aTargetElm, aOwnerDoc) { + onAboutNetError: function(aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); if (elmId != "errorTryAgain" || !/e=netOffline/.test(aOwnerDoc.documentURI)) return; Services.io.offline = false; }, - onAboutHome: function (aTargetElm, aOwnerDoc) { + onAboutHome: function(aTargetElm, aOwnerDoc) { let elmId = aTargetElm.getAttribute("id"); switch (elmId) { @@ -2692,7 +2692,7 @@ var PrintPreviewListener = { _printPreviewTab: null, _tabBeforePrintPreview: null, - getPrintPreviewBrowser: function () { + getPrintPreviewBrowser: function() { if (!this._printPreviewTab) { this._tabBeforePrintPreview = gBrowser.selectedTab; this._printPreviewTab = gBrowser.loadOneTab("about:blank", @@ -2701,14 +2701,14 @@ var PrintPreviewListener = { } return gBrowser.getBrowserForTab(this._printPreviewTab); }, - getSourceBrowser: function () { + getSourceBrowser: function() { return this._tabBeforePrintPreview ? this._tabBeforePrintPreview.linkedBrowser : gBrowser.selectedBrowser; }, - getNavToolbox: function () { + getNavToolbox: function() { return gNavToolbox; }, - onEnter: function () { + onEnter: function() { // We might have accidentally switched tabs since the user invoked print // preview if (gBrowser.selectedTab != this._printPreviewTab) { @@ -2717,7 +2717,7 @@ var PrintPreviewListener = { gInPrintPreviewMode = true; this._toggleAffectedChrome(); }, - onExit: function () { + onExit: function() { gBrowser.selectedTab = this._tabBeforePrintPreview; this._tabBeforePrintPreview = null; gInPrintPreviewMode = false; @@ -2725,7 +2725,7 @@ var PrintPreviewListener = { gBrowser.removeTab(this._printPreviewTab); this._printPreviewTab = null; }, - _toggleAffectedChrome: function () { + _toggleAffectedChrome: function() { gNavToolbox.collapsed = gInPrintPreviewMode; if (gInPrintPreviewMode) @@ -2740,7 +2740,7 @@ var PrintPreviewListener = { updateAppButtonDisplay(); #endif }, - _hideChrome: function () { + _hideChrome: function() { this._chromeState = {}; var sidebar = document.getElementById("sidebar-box"); @@ -2772,7 +2772,7 @@ var PrintPreviewListener = { syncNotifications.notificationsHidden = true; } }, - _showChrome: function () { + _showChrome: function() { if (this._chromeState.notificationsOpen) gBrowser.getNotificationBox().notificationsHidden = false; @@ -2804,22 +2804,22 @@ function FillInHTMLTooltip(tipElement) } var browserDragAndDrop = { - canDropLink: function (aEvent) Services.droppedLinkHandler.canDropLink(aEvent, true), + canDropLink: function(aEvent) Services.droppedLinkHandler.canDropLink(aEvent, true), - dragOver: function (aEvent) + dragOver: function(aEvent) { if (this.canDropLink(aEvent)) { aEvent.preventDefault(); } }, - dropLinks: function (aEvent, aDisallowInherit) { + dropLinks: function(aEvent, aDisallowInherit) { return Services.droppedLinkHandler.dropLinks(aEvent, aDisallowInherit); } }; var homeButtonObserver = { - onDrop: function (aEvent) + onDrop: function(aEvent) { // disallow setting home pages that inherit the principal let links = browserDragAndDrop.dropLinks(aEvent, true); @@ -2828,12 +2828,12 @@ var homeButtonObserver = { } }, - onDragOver: function (aEvent) + onDragOver: function(aEvent) { browserDragAndDrop.dragOver(aEvent); aEvent.dropEffect = "link"; }, - onDragExit: function (aEvent) + onDragExit: function(aEvent) { } } @@ -2866,7 +2866,7 @@ function openHomeDialog(aURL) } var bookmarksButtonObserver = { - onDrop: function (aEvent) + onDrop: function(aEvent) { let name = { }; let url = browserDragAndDrop.drop(aEvent, name); @@ -2883,28 +2883,28 @@ var bookmarksButtonObserver = { } catch(ex) { } }, - onDragOver: function (aEvent) + onDragOver: function(aEvent) { browserDragAndDrop.dragOver(aEvent); aEvent.dropEffect = "link"; }, - onDragExit: function (aEvent) + onDragExit: function(aEvent) { } } var newTabButtonObserver = { - onDragOver: function (aEvent) + onDragOver: function(aEvent) { browserDragAndDrop.dragOver(aEvent); }, - onDragExit: function (aEvent) + onDragExit: function(aEvent) { }, - onDrop: function (aEvent) + onDrop: function(aEvent) { let links = browserDragAndDrop.dropLinks(aEvent); Task.spawn(function*() { @@ -2920,14 +2920,14 @@ var newTabButtonObserver = { } var newWindowButtonObserver = { - onDragOver: function (aEvent) + onDragOver: function(aEvent) { browserDragAndDrop.dragOver(aEvent); }, - onDragExit: function (aEvent) + onDragExit: function(aEvent) { }, - onDrop: function (aEvent) + onDrop: function(aEvent) { let links = browserDragAndDrop.dropLinks(aEvent); Task.spawn(function*() { @@ -2943,7 +2943,7 @@ var newWindowButtonObserver = { } const DOMLinkHandler = { - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "DOMLinkAdded": this.onLinkAdded(event); @@ -2962,7 +2962,7 @@ const DOMLinkHandler = { /^about:blocked\?/, /^about:certerror\?/, /^about:home$/, - ].some(function (re) re.test(targetDoc.documentURI)); + ].some(function(re) re.test(targetDoc.documentURI)); if (!isAllowedPage || !uri.schemeIs("chrome")) { var ssm = Services.scriptSecurityManager; @@ -2995,7 +2995,7 @@ const DOMLinkHandler = { } return uri; }, - onLinkAdded: function (event) { + onLinkAdded: function(event) { var link = event.originalTarget; var rel = link.rel && link.rel.toLowerCase(); if (!link || !link.ownerDocument || !rel || !link.href) @@ -3053,7 +3053,7 @@ const DOMLinkHandler = { /^(?:https?|ftp):/i.test(link.href) && !PrivateBrowsingUtils.isWindowPrivate(window)) { var engine = { title: link.title, href: link.href }; - Services.search.init(function () { + Services.search.init(function() { BrowserSearch.addEngine(engine, link.ownerDocument); }); searchAdded = true; @@ -3077,7 +3077,7 @@ const BrowserSearch = { // Check to see whether we've already added an engine with this title if (browser.engines) { - if (browser.engines.some(function (e) e.title == engine.title)) + if (browser.engines.some(function(e) e.title == engine.title)) return; } @@ -3113,7 +3113,7 @@ const BrowserSearch = { * the default engine's search form otherwise. For Mac, opens a new window * or focuses an existing window, if necessary. */ - webSearch: function () { + webSearch: function() { #ifdef XP_MACOSX if (window.location.href != getBrowserURL()) { var win = getTopWin(); @@ -3164,7 +3164,7 @@ const BrowserSearch = { * @return string Name of the search engine used to perform a search or null * if a search was not performed. */ - loadSearch: function (searchText, useNewTab, purpose) { + loadSearch: function(searchText, useNewTab, purpose) { var engine; // If the search bar is visible, use the current engine, otherwise, fall @@ -3200,7 +3200,7 @@ const BrowserSearch = { * This should only be called from the context menu. See * BrowserSearch.loadSearch for the preferred API. */ - loadSearchFromContext: function (terms) { + loadSearchFromContext: function(terms) { let engine = BrowserSearch.loadSearch(terms, true, "contextmenu"); }, @@ -3211,7 +3211,7 @@ const BrowserSearch = { return document.getElementById("searchbar"); }, - loadAddEngines: function () { + loadAddEngines: function() { var newWindowPref = gPrefService.getIntPref("browser.link.open_newwindow"); var where = newWindowPref == 3 ? "tab" : "window"; var searchEnginesURL = formatURL("browser.search.searchEnginesURL", true); @@ -3273,7 +3273,7 @@ function FillHistoryMenu(aParent) { item.setAttribute("index", j); if (j != index) { - PlacesUtils.favicons.getFaviconURLForPage(entry.URI, function (aURI) { + PlacesUtils.favicons.getFaviconURLForPage(entry.URI, function(aURI) { if (aURI) { let iconURL = PlacesUtils.favicons.getFaviconLinkForIcon(aURI).spec; item.style.listStyleImage = "url(" + iconURL + ")"; @@ -3650,7 +3650,7 @@ var XULBrowserWindow = { "about:sync-progress"],*/ inContentWhitelist: [], - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Ci.nsIWebProgressListener) || aIID.equals(Ci.nsIWebProgressListener2) || aIID.equals(Ci.nsISupportsWeakReference) || @@ -3677,7 +3677,7 @@ var XULBrowserWindow = { return this.isImage = document.getElementById("isImage"); }, - init: function () { + init: function() { this.throbberElement = document.getElementById("navigator-throbber"); // Bug 666809 - SecurityUI support for e10s @@ -3691,7 +3691,7 @@ var XULBrowserWindow = { this.onSecurityChange(null, null, securityUI.state); }, - destroy: function () { + destroy: function() { // XXXjag to avoid leaks :-/, see bug 60729 delete this.throbberElement; delete this.stopCommand; @@ -3700,16 +3700,16 @@ var XULBrowserWindow = { delete this.statusText; }, - setJSStatus: function () { + setJSStatus: function() { // unsupported }, - setDefaultStatus: function (status) { + setDefaultStatus: function(status) { this.defaultStatus = status; this.updateStatusField(); }, - setOverLink: function (url, anchorElt) { + setOverLink: function(url, anchorElt) { // Encode bidirectional formatting characters. // (RFC 3987 sections 3.2 and 4.1 paragraph 6) url = url.replace(/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g, @@ -3722,7 +3722,7 @@ var XULBrowserWindow = { LinkTargetDisplay.update(); }, - updateStatusField: function () { + updateStatusField: function() { var text, type, types = ["overLink"]; if (this._busyUI) types.push("status"); @@ -3782,19 +3782,19 @@ var XULBrowserWindow = { return "_blank"; }, - onLinkIconAvailable: function (aIconURL) { + onLinkIconAvailable: function(aIconURL) { if (gProxyFavIcon && gBrowser.userTypedValue === null) { PageProxySetIcon(aIconURL); // update the favicon in the URL bar } }, - onProgressChange: function (aWebProgress, aRequest, + onProgressChange: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress) { // Do nothing. }, - onProgressChange64: function (aWebProgress, aRequest, + onProgressChange64: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress) { return this.onProgressChange(aWebProgress, aRequest, @@ -3803,7 +3803,7 @@ var XULBrowserWindow = { }, // This function fires only for the currently selected tab. - onStateChange: function (aWebProgress, aRequest, aStateFlags, aStatus) { + onStateChange: function(aWebProgress, aRequest, aStateFlags, aStatus) { const nsIWebProgressListener = Ci.nsIWebProgressListener; const nsIChannel = Ci.nsIChannel; @@ -3881,7 +3881,7 @@ var XULBrowserWindow = { } }, - onLocationChange: function (aWebProgress, aRequest, aLocationURI, aFlags) { + onLocationChange: function(aWebProgress, aRequest, aLocationURI, aFlags) { var location = aLocationURI ? aLocationURI.spec : ""; this._hostChanged = true; @@ -4025,12 +4025,12 @@ var XULBrowserWindow = { // See bug 358202, when tabs are switched during a drag operation, // timers don't fire on windows (bug 203573) if (aRequest) - setTimeout(function () { XULBrowserWindow.asyncUpdateUI(); }, 0); + setTimeout(function() { XULBrowserWindow.asyncUpdateUI(); }, 0); else this.asyncUpdateUI(); }, - asyncUpdateUI: function () { + asyncUpdateUI: function() { FeedHandler.updateFeeds(); }, @@ -4041,7 +4041,7 @@ var XULBrowserWindow = { }); }, - onStatusChange: function (aWebProgress, aRequest, aStatus, aMessage) { + onStatusChange: function(aWebProgress, aRequest, aStatus, aMessage) { this.status = aMessage; this.updateStatusField(); }, @@ -4050,7 +4050,7 @@ var XULBrowserWindow = { _state: null, _hostChanged: false, // onLocationChange will flip this bit - onSecurityChange: function (aWebProgress, aRequest, aState) { + onSecurityChange: function(aWebProgress, aRequest, aState) { // Don't need to do anything if the data we use to update the UI hasn't // changed if (this._state == aState && @@ -4130,7 +4130,7 @@ var XULBrowserWindow = { }, // simulate all change notifications after switching tabs - onUpdateCurrentBrowser: function (aStateFlags, aStatus, aMessage, aTotalProgress) { + onUpdateCurrentBrowser: function(aStateFlags, aStatus, aMessage, aTotalProgress) { if (FullZoom.updateBackgroundTabs) FullZoom.onLocationChange(gBrowser.currentURI, true); var nsIWebProgressListener = Components.interfaces.nsIWebProgressListener; @@ -4162,7 +4162,7 @@ var LinkTargetDisplay = { get _isVisible () XULBrowserWindow.statusTextField.label != "", - update: function () { + update: function() { clearTimeout(this._timer); window.removeEventListener("mousemove", this, true); @@ -4183,7 +4183,7 @@ var LinkTargetDisplay = { } }, - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "mousemove": // Restart the delay since the mouse was moved @@ -4193,14 +4193,14 @@ var LinkTargetDisplay = { } }, - _showDelayed: function () { - this._timer = setTimeout(function (self) { + _showDelayed: function() { + this._timer = setTimeout(function(self) { XULBrowserWindow.updateStatusField(); window.removeEventListener("mousemove", self, true); }, this.DELAY_SHOW, this); }, - _hide: function () { + _hide: function() { clearTimeout(this._timer); XULBrowserWindow.updateStatusField(); @@ -4208,7 +4208,7 @@ var LinkTargetDisplay = { }; var CombinedStopReload = { - init: function () { + init: function() { if (this._initialized) return; @@ -4238,7 +4238,7 @@ var CombinedStopReload = { this.stop = stop; }, - uninit: function () { + uninit: function() { if (!this._initialized) return; @@ -4249,14 +4249,14 @@ var CombinedStopReload = { this.stop = null; }, - handleEvent: function (event) { + handleEvent: function(event) { // the only event we listen to is "click" on the stop button if (event.button == 0 && !this.stop.disabled) this._stopClicked = true; }, - switchToStop: function () { + switchToStop: function() { if (!this._initialized) return; @@ -4264,7 +4264,7 @@ var CombinedStopReload = { this.reload.setAttribute("displaystop", "true"); }, - switchToReload: function (aDelay) { + switchToReload: function(aDelay) { if (!this._initialized) return; @@ -4284,14 +4284,14 @@ var CombinedStopReload = { // Temporarily disable the reload button to prevent the user from // accidentally reloading the page when intending to click the stop button this.reload.disabled = true; - this._timer = setTimeout(function (self) { + this._timer = setTimeout(function(self) { self._timer = 0; self.reload.disabled = XULBrowserWindow.reloadCommand .getAttribute("disabled") == "true"; }, 650, this); }, - _cancelTransition: function () { + _cancelTransition: function() { if (this._timer) { clearTimeout(this._timer); this._timer = 0; @@ -4300,7 +4300,7 @@ var CombinedStopReload = { }; var TabsProgressListener = { - onStateChange: function (aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) { + onStateChange: function(aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) { // Attach a listener to watch for "click" events bubbling up from error // pages and other similar page. This lets us fix bugs like 401575 which @@ -4334,7 +4334,7 @@ var TabsProgressListener = { } }, - onLocationChange: function (aBrowser, aWebProgress, aRequest, aLocationURI, + onLocationChange: function(aBrowser, aWebProgress, aRequest, aLocationURI, aFlags) { // Filter out location changes caused by anchor navigation // or history.push/pop/replaceState. @@ -4360,7 +4360,7 @@ var TabsProgressListener = { } }, - onRefreshAttempted: function (aBrowser, aWebProgress, aURI, aDelay, aSameURI) { + onRefreshAttempted: function(aBrowser, aWebProgress, aURI, aDelay, aSameURI) { if (gPrefService.getBoolPref("accessibility.blockautorefresh")) { let brandBundle = document.getElementById("bundle_brand"); let brandShortName = brandBundle.getString("brandShortName"); @@ -4387,7 +4387,7 @@ var TabsProgressListener = { let buttons = [{ label: refreshButtonText, accessKey: refreshButtonAccesskey, - callback: function (aNotification, aButton) { + callback: function(aNotification, aButton) { var refreshURI = aNotification.docShell .QueryInterface(Ci.nsIRefreshURI); refreshURI.forceRefreshURI(aNotification.refreshURI, @@ -4414,7 +4414,7 @@ function nsBrowserAccess() { } nsBrowserAccess.prototype = { QueryInterface: XPCOMUtils.generateQI([Ci.nsIBrowserDOMWindow, Ci.nsISupports]), - openURI: function (aURI, aOpener, aWhere, aContext) { + openURI: function(aURI, aOpener, aWhere, aContext) { var newWindow = null; var isExternal = !!(aContext & Ci.nsIBrowserDOMWindow.OPEN_EXTERNAL); @@ -4517,8 +4517,8 @@ nsBrowserAccess.prototype = { return newWindow; }, - isTabContentWindow: function (aWindow) { - return gBrowser.browsers.some(function (browser) browser.contentWindow == aWindow); + isTabContentWindow: function(aWindow) { + return gBrowser.browsers.some(function(browser) browser.contentWindow == aWindow); } } @@ -4618,20 +4618,20 @@ function setToolbarVisibility(toolbar, isVisible) { } var AudioIndicator = { - init: function () { + init: function() { Services.prefs.addObserver(this._prefName, this, false); this.syncUI(); }, - uninit: function () { + uninit: function() { Services.prefs.removeObserver(this._prefName, this); }, - toggle: function () { + toggle: function() { this.enabled = !Services.prefs.getBoolPref(this._prefName); }, - syncUI: function () { + syncUI: function() { document.getElementById("context_toggleMuteTab").setAttribute("hidden", this.enabled); document.getElementById("key_toggleMute").setAttribute("disabled", this.enabled); }, @@ -4645,7 +4645,7 @@ var AudioIndicator = { return val; }, - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (topic == "nsPref:changed") this.syncUI(); }, @@ -4654,7 +4654,7 @@ var AudioIndicator = { } var TabsOnTop = { - init: function () { + init: function() { Services.prefs.addObserver(this._prefName, this, false); // Pale Moon: Stop Being a Derp, Mozilla (#3) // Only show the toggle UI if the user disabled tabs on top. @@ -4664,15 +4664,15 @@ var TabsOnTop = { // } }, - uninit: function () { + uninit: function() { Services.prefs.removeObserver(this._prefName, this); }, - toggle: function () { + toggle: function() { this.enabled = !Services.prefs.getBoolPref(this._prefName); }, - syncUI: function () { + syncUI: function() { let userEnabled = Services.prefs.getBoolPref(this._prefName); let enabled = userEnabled && gBrowser.tabContainer.visible; @@ -4696,7 +4696,7 @@ var TabsOnTop = { return val; }, - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (topic == "nsPref:changed") this.syncUI(); }, @@ -4705,7 +4705,7 @@ var TabsOnTop = { } var TabsInTitlebar = { - init: function () { + init: function() { #ifdef CAN_DRAW_IN_TITLEBAR this._readPref(); Services.prefs.addObserver(this._prefName, this, false); @@ -4718,7 +4718,7 @@ var TabsInTitlebar = { #endif }, - allowedBy: function (condition, allow) { + allowedBy: function(condition, allow) { #ifdef CAN_DRAW_IN_TITLEBAR if (allow) { if (condition in this._disallowed) { @@ -4739,7 +4739,7 @@ var TabsInTitlebar = { }, #ifdef CAN_DRAW_IN_TITLEBAR - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (topic == "nsPref:changed") this._readPref(); }, @@ -4748,12 +4748,12 @@ var TabsInTitlebar = { _disallowed: {}, _prefName: "browser.tabs.drawInTitlebar", - _readPref: function () { + _readPref: function() { this.allowedBy("pref", Services.prefs.getBoolPref(this._prefName)); }, - _update: function () { + _update: function() { function $(id) document.getElementById(id); function rect(ele) ele.getBoundingClientRect(); @@ -4792,7 +4792,7 @@ var TabsInTitlebar = { let tmp = {}; Components.utils.import("resource://gre/modules/WindowDraggingUtils.jsm", tmp); this._draghandle = new tmp.WindowDraggingElement(tabsToolbar); - this._draghandle.mouseDownCheck = function () { + this._draghandle.mouseDownCheck = function() { return !this._dragBindingAlive && TabsInTitlebar.enabled; }; } @@ -4805,13 +4805,13 @@ var TabsInTitlebar = { ToolbarIconColor.inferFromText(); }, - _sizePlaceholder: function (type, width) { + _sizePlaceholder: function(type, width) { Array.forEach(document.querySelectorAll(".titlebar-placeholder[type='"+ type +"']"), - function (node) { node.width = width; }); + function(node) { node.width = width; }); }, #endif - uninit: function () { + uninit: function() { #ifdef CAN_DRAW_IN_TITLEBAR this._initialized = false; Services.prefs.removeObserver(this._prefName, this); @@ -4973,7 +4973,7 @@ function fireSidebarFocusedEvent() { var gHomeButton = { prefDomain: "browser.startup.homepage", - observe: function (aSubject, aTopic, aPrefName) + observe: function(aSubject, aTopic, aPrefName) { if (aTopic != "nsPref:changed" || aPrefName != this.prefDomain) return; @@ -4981,7 +4981,7 @@ var gHomeButton = { this.updateTooltip(); }, - updateTooltip: function (homeButton) + updateTooltip: function(homeButton) { if (!homeButton) homeButton = document.getElementById("home-button"); @@ -4995,7 +4995,7 @@ var gHomeButton = { } }, - getHomePage: function () + getHomePage: function() { var url; try { @@ -5014,7 +5014,7 @@ var gHomeButton = { return url; }, - updatePersonalToolbarStyle: function (homeButton) + updatePersonalToolbarStyle: function(homeButton) { if (!homeButton) homeButton = document.getElementById("home-button"); @@ -5479,7 +5479,7 @@ function charsetLoadListener() { var gPageStyleMenu = { - _getAllStyleSheets: function (frameset) { + _getAllStyleSheets: function(frameset) { var styleSheetsArray = Array.slice(frameset.document.styleSheets); for (let i = 0; i < frameset.frames.length; i++) { let frameSheets = this._getAllStyleSheets(frameset.frames[i]); @@ -5488,7 +5488,7 @@ var gPageStyleMenu = { return styleSheetsArray; }, - fillPopup: function (menuPopup) { + fillPopup: function(menuPopup) { var noStyle = menuPopup.firstChild; var persistentOnly = noStyle.nextSibling; var sep = persistentOnly.nextSibling; @@ -5541,12 +5541,12 @@ var gPageStyleMenu = { sep.hidden = (noStyle.hidden && persistentOnly.hidden) || !haveAltSheets; }, - _stylesheetInFrame: function (frame, title) { + _stylesheetInFrame: function(frame, title) { return Array.some(frame.document.styleSheets, - function (stylesheet) stylesheet.title == title); + function(stylesheet) stylesheet.title == title); }, - _stylesheetSwitchFrame: function (frame, title) { + _stylesheetSwitchFrame: function(frame, title) { var docStyleSheets = frame.document.styleSheets; for (let i = 0; i < docStyleSheets.length; ++i) { @@ -5559,7 +5559,7 @@ var gPageStyleMenu = { } }, - _stylesheetSwitchAll: function (frameset, title) { + _stylesheetSwitchAll: function(frameset, title) { if (!title || this._stylesheetInFrame(frameset, title)) this._stylesheetSwitchFrame(frameset, title); @@ -5567,12 +5567,12 @@ var gPageStyleMenu = { this._stylesheetSwitchAll(frameset.frames[i], title); }, - switchStyleSheet: function (title, contentWindow) { + switchStyleSheet: function(title, contentWindow) { getMarkupDocumentViewer().authorStyleDisabled = false; this._stylesheetSwitchAll(contentWindow || content, title); }, - disableStyle: function () { + disableStyle: function() { getMarkupDocumentViewer().authorStyleDisabled = true; }, }; @@ -5594,7 +5594,7 @@ var BrowserOffline = { ///////////////////////////////////////////////////////////////////////////// // BrowserOffline Public Methods - init: function () + init: function() { if (!this._uiElement) this._uiElement = document.getElementById("workOfflineMenuitemState"); @@ -5606,14 +5606,14 @@ var BrowserOffline = { this._inited = true; }, - uninit: function () + uninit: function() { if (this._inited) { Services.obs.removeObserver(this, "network:offline-status-changed"); } }, - toggleOfflineStatus: function () + toggleOfflineStatus: function() { var ioService = Services.io; @@ -5633,7 +5633,7 @@ var BrowserOffline = { ///////////////////////////////////////////////////////////////////////////// // nsIObserver - observe: function (aSubject, aTopic, aState) + observe: function(aSubject, aTopic, aState) { if (aTopic != "network:offline-status-changed") return; @@ -5643,7 +5643,7 @@ var BrowserOffline = { ///////////////////////////////////////////////////////////////////////////// // BrowserOffline Implementation Methods - _canGoOffline: function () + _canGoOffline: function() { try { var cancelGoOffline = Cc["@mozilla.org/supports-PRBool;1"].createInstance(Ci.nsISupportsPRBool); @@ -5660,7 +5660,7 @@ var BrowserOffline = { }, _uiElement: null, - _updateOfflineUI: function (aOffline) + _updateOfflineUI: function(aOffline) { var offlineLocked = gPrefService.prefIsLocked("network.online"); if (offlineLocked) @@ -5673,12 +5673,12 @@ var BrowserOffline = { var OfflineApps = { ///////////////////////////////////////////////////////////////////////////// // OfflineApps Public Methods - init: function () + init: function() { Services.obs.addObserver(this, "offline-cache-update-completed", false); }, - uninit: function () + uninit: function() { Services.obs.removeObserver(this, "offline-cache-update-completed"); }, @@ -5794,7 +5794,7 @@ var OfflineApps = { }, // XXX: duplicated in preferences/advanced.js - _getOfflineAppUsage: function (host, groups) + _getOfflineAppUsage: function(host, groups) { var cacheService = Cc["@mozilla.org/network/application-cache-service;1"]. getService(Ci.nsIApplicationCacheService); @@ -5923,7 +5923,7 @@ var OfflineApps = { ///////////////////////////////////////////////////////////////////////////// // nsIObserver - observe: function (aSubject, aTopic, aState) + observe: function(aSubject, aTopic, aState) { if (aTopic == "offline-cache-update-completed") { var cacheUpdate = aSubject.QueryInterface(Ci.nsIOfflineCacheUpdate); @@ -6181,12 +6181,12 @@ function warnAboutClosingWindow() { } var MailIntegration = { - sendLinkForWindow: function (aWindow) { + sendLinkForWindow: function(aWindow) { this.sendMessage(aWindow.location.href, aWindow.document.title); }, - sendMessage: function (aBody, aSubject) { + sendMessage: function(aBody, aSubject) { // generate a mailto url based on the url and the url's title var mailtoUrl = "mailto:"; if (aBody) { @@ -6203,7 +6203,7 @@ var MailIntegration = { // a generic method which can be used to pass arbitrary urls to the operating // system. // aURL --> a nsIURI which represents the url to launch - _launchExternalUrl: function (aURL) { + _launchExternalUrl: function(aURL) { var extProtocolSvc = Cc["@mozilla.org/uriloader/external-protocol-service;1"] .getService(Ci.nsIExternalProtocolService); @@ -6904,7 +6904,7 @@ var gIdentityHandler = { document.getElementById('identity-popup-more-info-button').focus(); }, - onDragStart: function (event) { + onDragStart: function(event) { if (gURLBar.getAttribute("pageproxystate") != "valid") return; @@ -6940,7 +6940,7 @@ function getBrowser() gBrowser; function getNavToolbox() gNavToolbox; var gPrivateBrowsingUI = { - init: function () { + init: function() { // Do nothing for normal windows if (!PrivateBrowsingUtils.isWindowPrivate(window)) { return; @@ -7256,7 +7256,7 @@ function toggleAddonBar() { setToolbarVisibility(addonBar, addonBar.collapsed); } -XPCOMUtils.defineLazyGetter(window, "gShowPageResizers", function () { +XPCOMUtils.defineLazyGetter(window, "gShowPageResizers", function() { #ifdef XP_WIN // Only show resizers on Windows 2000 and XP return parseFloat(Services.sysinfo.getProperty("version")) < 6; @@ -7274,7 +7274,7 @@ var MousePosTracker = { return this._windowUtils = window.getInterface(Ci.nsIDOMWindowUtils); }, - addListener: function (listener) { + addListener: function(listener) { if (this._listeners.indexOf(listener) >= 0) return; @@ -7284,7 +7284,7 @@ var MousePosTracker = { this._callListener(listener); }, - removeListener: function (listener) { + removeListener: function(listener) { var index = this._listeners.indexOf(listener); if (index < 0) return; @@ -7292,12 +7292,12 @@ var MousePosTracker = { this._listeners.splice(index, 1); }, - handleEvent: function (event) { + handleEvent: function(event) { var fullZoom = this._windowUtils.fullZoom; this._x = event.screenX / fullZoom - window.mozInnerScreenX; this._y = event.screenY / fullZoom - window.mozInnerScreenY; - this._listeners.forEach(function (listener) { + this._listeners.forEach(function(listener) { try { this._callListener(listener); } catch (e) { @@ -7306,7 +7306,7 @@ var MousePosTracker = { }, this); }, - _callListener: function (listener) { + _callListener: function(listener) { let rect = listener.getMouseTargetRect(); let hover = this._x >= rect.left && this._x <= rect.right && @@ -7331,14 +7331,14 @@ var MousePosTracker = { var BrowserChromeTest = { _cb: null, _ready: false, - markAsReady: function () { + markAsReady: function() { this._ready = true; if (this._cb) { this._cb(); this._cb = null; } }, - runWhenReady: function (cb) { + runWhenReady: function(cb) { if (this._ready) cb(); else @@ -7347,7 +7347,7 @@ var BrowserChromeTest = { }; var ToolbarIconColor = { - init: function () { + init: function() { this._initialized = true; window.addEventListener("activate", this); @@ -7362,7 +7362,7 @@ var ToolbarIconColor = { this.inferFromText(); }, - uninit: function () { + uninit: function() { this._initialized = false; window.removeEventListener("activate", this); @@ -7371,7 +7371,7 @@ var ToolbarIconColor = { gPrefService.removeObserver("ui.colorChanged", this); }, - handleEvent: function (event) { + handleEvent: function(event) { switch (event.type) { case "activate": case "deactivate": @@ -7380,7 +7380,7 @@ var ToolbarIconColor = { } }, - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "lightweight-theme-styling-update": // inferFromText needs to run after LightweightThemeConsumer.jsm's @@ -7402,7 +7402,7 @@ var ToolbarIconColor = { } }, - inferFromText: function () { + inferFromText: function() { if (!this._initialized) return; diff --git a/application/palemoon/base/content/nsContextMenu.js b/application/palemoon/base/content/nsContextMenu.js index 43e659375c..c9ac350f37 100644 --- a/application/palemoon/base/content/nsContextMenu.js +++ b/application/palemoon/base/content/nsContextMenu.js @@ -13,7 +13,7 @@ function nsContextMenu(aXulMenu, aIsShift) { // Prototype for nsContextMenu "class." nsContextMenu.prototype = { - initMenu: function (aXulMenu, aIsShift) { + initMenu: function(aXulMenu, aIsShift) { // Get contextual info. this.setTarget(document.popupNode, document.popupRangeParent, document.popupRangeOffset); @@ -40,14 +40,14 @@ nsContextMenu.prototype = { this.initItems(); }, - hiding: function () { + hiding: function() { gContextMenuContentData = null; InlineSpellCheckerUI.clearSuggestionsFromMenu(); InlineSpellCheckerUI.clearDictionaryListFromMenu(); InlineSpellCheckerUI.uninit(); }, - initItems: function () { + initItems: function() { this.initPageMenuSeparator(); this.initOpenItems(); this.initNavigationItems(); @@ -61,11 +61,11 @@ nsContextMenu.prototype = { this.initClickToPlayItems(); }, - initPageMenuSeparator: function () { + initPageMenuSeparator: function() { this.showItem("page-menu-separator", this.hasPageMenu); }, - initOpenItems: function () { + initOpenItems: function() { var isMailtoInternal = false; if (this.onMailtoLink) { var mailtoHandler = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. @@ -114,7 +114,7 @@ nsContextMenu.prototype = { this.showItem("context-sep-open", shouldShow); }, - initNavigationItems: function () { + initNavigationItems: function() { var shouldShow = !(this.isContentSelected || this.onLink || this.onImage || this.onCanvas || this.onVideo || this.onAudio || this.onTextInput); @@ -136,7 +136,7 @@ nsContextMenu.prototype = { //this.setItemAttrFromNode( "context-stop", "disabled", "canStop" ); }, - initLeaveDOMFullScreenItems: function () { + initLeaveDOMFullScreenItems: function() { // only show the option if the user is in DOM fullscreen var shouldShow = (this.target.ownerDocument.mozFullScreenElement != null); this.showItem("context-leave-dom-fullscreen", shouldShow); @@ -146,7 +146,7 @@ nsContextMenu.prototype = { this.showItem("context-media-sep-commands", true); }, - initSaveItems: function () { + initSaveItems: function() { var shouldShow = !(this.onTextInput || this.onLink || this.isContentSelected || this.onImage || this.onCanvas || this.onVideo || this.onAudio); @@ -172,7 +172,7 @@ nsContextMenu.prototype = { this.setItemAttr("context-sendaudio", "disabled", !this.mediaURL); }, - initViewItems: function () { + initViewItems: function() { // View source is always OK, unless in directory listing. this.showItem("context-viewpartialsource-selection", this.isContentSelected); @@ -236,7 +236,7 @@ nsContextMenu.prototype = { this.showItem("context-viewimageinfo", this.onImage); }, - initMiscItems: function () { + initMiscItems: function() { // Use "Bookmark This Link" if on a link. this.showItem("context-bookmarkpage", !(this.isContentSelected || this.onTextInput || this.onLink || @@ -426,7 +426,7 @@ nsContextMenu.prototype = { this.showItem("context-sep-ctp", this.onCTPPlugin); }, - inspectNode: function () { + inspectNode: function() { let {devtools} = Cu.import("resource://devtools/shared/Loader.jsm", {}); let gBrowser = this.browser.ownerDocument.defaultView.gBrowser; let target = devtools.TargetFactory.forTab(gBrowser.selectedTab); @@ -442,7 +442,7 @@ nsContextMenu.prototype = { }, // Set various context menu attributes based on the state of the world. - setTarget: function (aNode, aRangeParent, aRangeOffset) { + setTarget: function(aNode, aRangeParent, aRangeOffset) { const xulNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; if (aNode.namespaceURI == xulNS || aNode.nodeType == Node.DOCUMENT_NODE || @@ -750,7 +750,7 @@ nsContextMenu.prototype = { }, // Open linked-to URL in a new window. - openLink : function () { + openLink : function() { var doc = this.target.ownerDocument; urlSecurityCheck(this.linkURL, doc.nodePrincipal); openLinkIn(this.linkURL, "window", @@ -762,7 +762,7 @@ nsContextMenu.prototype = { }, // Open linked-to URL in a new private window. - openLinkInPrivateWindow : function () { + openLinkInPrivateWindow : function() { var doc = this.target.ownerDocument; urlSecurityCheck(this.linkURL, doc.nodePrincipal); openLinkIn(this.linkURL, "window", @@ -884,11 +884,11 @@ nsContextMenu.prototype = { "This feature cannot be used, because it hasn't found " + "an appropriate window."); } else { - new Promise.resolve({then: function (resolve) { + new Promise.resolve({then: function(resolve) { target.toBlob((blob) => { resolve(win.URL.createObjectURL(blob)); }) - }}).then(function (blobURL) { + }}).then(function(blobURL) { openUILink(blobURL, e, { disallowInheritPrincipal: true, referrerURI: doc.documentURIObject }); }, Components.utils.reportError); @@ -905,7 +905,7 @@ nsContextMenu.prototype = { } }, - saveVideoFrameAsImage: function () { + saveVideoFrameAsImage: function() { let referrerURI = document.documentURIObject; let isPrivate = PrivateBrowsingUtils.isBrowserPrivate(this.browser); @@ -931,7 +931,7 @@ nsContextMenu.prototype = { isPrivate); }, - fullScreenVideo: function () { + fullScreenVideo: function() { let video = this.target; if (document.mozFullScreenEnabled) video.mozRequestFullScreen(); @@ -1008,7 +1008,7 @@ nsContextMenu.prototype = { }, // Save URL of clicked-on frame. - saveFrame: function () { + saveFrame: function() { saveDocument(this.target.ownerDocument); }, @@ -1027,7 +1027,7 @@ nsContextMenu.prototype = { saveAsListener.prototype = { extListener: null, - onStartRequest: function (aRequest, aContext) { + onStartRequest: function(aRequest, aContext) { // if the timer fired, the error status will have been caused by that, // and we'll be restarting in onStopRequest, so no reason to notify @@ -1065,7 +1065,7 @@ nsContextMenu.prototype = { this.extListener.onStartRequest(aRequest, aContext); }, - onStopRequest: function (aRequest, aContext, + onStopRequest: function(aRequest, aContext, aStatusCode) { if (aStatusCode == NS_ERROR_SAVE_LINK_AS_TIMEOUT) { // do it the old fashioned way, which will pick the best filename @@ -1076,7 +1076,7 @@ nsContextMenu.prototype = { this.extListener.onStopRequest(aRequest, aContext, aStatusCode); }, - onDataAvailable: function (aRequest, aContext, + onDataAvailable: function(aRequest, aContext, aInputStream, aOffset, aCount) { this.extListener.onDataAvailable(aRequest, aContext, aInputStream, @@ -1086,7 +1086,7 @@ nsContextMenu.prototype = { function callbacks() {} callbacks.prototype = { - getInterface: function (aIID) { + getInterface: function(aIID) { if (aIID.equals(Ci.nsIAuthPrompt) || aIID.equals(Ci.nsIAuthPrompt2)) { // If the channel demands authentication prompt, we must cancel it // because the save-as-timer would expire and cancel the channel @@ -1105,7 +1105,7 @@ nsContextMenu.prototype = { // we give up waiting for the filename. function timerCallback() {} timerCallback.prototype = { - notify: function (aTimer) { + notify: function(aTimer) { channel.cancel(NS_ERROR_SAVE_LINK_AS_TIMEOUT); return; } @@ -1195,11 +1195,11 @@ nsContextMenu.prototype = { "This feature cannot be used, because it hasn't found " + "an appropriate window."); } else { - new Promise.resolve({then: function (resolve) { + new Promise.resolve({then: function(resolve) { target.toBlob((blob) => { resolve(win.URL.createObjectURL(blob)); }) - }}).then(function (blobURL) { + }}).then(function(blobURL) { saveImageURL(blobURL, "canvas.png", "SaveImageTitle", true, false, referrerURI, null, null, null, isPrivate); @@ -1375,7 +1375,7 @@ nsContextMenu.prototype = { return !document.commandDispatcher.focusedWindow.getSelection().isCollapsed; }, - toString: function () { + toString: function() { return "contextMenu.target = " + this.target + "\n" + "contextMenu.onImage = " + this.onImage + "\n" + "contextMenu.onLink = " + this.onLink + "\n" + @@ -1427,7 +1427,7 @@ nsContextMenu.prototype = { // Determines whether or not the separator with the specified ID should be // shown or not by determining if there are any non-hidden items between it // and the previous separator. - shouldShowSeparator: function (aSeparatorID) { + shouldShowSeparator: function(aSeparatorID) { var separator = document.getElementById(aSeparatorID); if (separator) { var sibling = separator.previousSibling; @@ -1465,11 +1465,11 @@ nsContextMenu.prototype = { openUILinkIn(uri, where); }, - bookmarkThisPage: function () { + bookmarkThisPage: function() { window.top.PlacesCommandHook.bookmarkPage(this.browser, PlacesUtils.bookmarksMenuFolderId, true); }, - bookmarkLink: function () { + bookmarkLink: function() { var linkText; // If selected text is found to match valid URL pattern. if (this.onPlainTextLink) @@ -1480,7 +1480,7 @@ nsContextMenu.prototype = { linkText); }, - addBookmarkForFrame: function () { + addBookmarkForFrame: function() { var doc = this.target.ownerDocument; var uri = doc.documentURIObject; @@ -1507,23 +1507,23 @@ nsContextMenu.prototype = { } }, - savePageAs: function () { + savePageAs: function() { saveDocument(this.browser.contentDocument); }, - sendPage: function () { + sendPage: function() { MailIntegration.sendLinkForWindow(this.browser.contentWindow); }, - printFrame: function () { + printFrame: function() { PrintUtils.print(this.target.ownerDocument.defaultView); }, - switchPageDirection: function () { + switchPageDirection: function() { SwitchDocumentDirection(this.browser.contentWindow); }, - mediaCommand : function (command, data) { + mediaCommand : function(command, data) { var media = this.target; switch (command) { @@ -1560,7 +1560,7 @@ nsContextMenu.prototype = { } }, - copyMediaLocation : function () { + copyMediaLocation : function() { var clipboard = Cc["@mozilla.org/widget/clipboardhelper;1"]. getService(Ci.nsIClipboardHelper); clipboard.copyString(this.mediaURL, document); diff --git a/application/palemoon/base/content/sanitizeDialog.js b/application/palemoon/base/content/sanitizeDialog.js index 905c9f2073..a13e68d8a1 100644 --- a/application/palemoon/base/content/sanitizeDialog.js +++ b/application/palemoon/base/content/sanitizeDialog.js @@ -35,7 +35,7 @@ var gSanitizePromptDialog = { return document.getElementById("sanitizeEverythingWarningBox"); }, - init: function () + init: function() { // This is used by selectByTimespan() to determine if the window has loaded. this._inited = true; @@ -69,7 +69,7 @@ var gSanitizePromptDialog = { this.warningBox.hidden = true; }, - selectByTimespan: function () + selectByTimespan: function() { // This method is the onselect handler for the duration dropdown. As a // result it's called a couple of times before onload calls init(). @@ -99,7 +99,7 @@ var gSanitizePromptDialog = { window.document.documentElement.getAttribute("noneverythingtitle"); }, - sanitize: function () + sanitize: function() { // Update pref values before handing off to the sanitizer (bug 453440) this.updatePrefs(); @@ -136,7 +136,7 @@ var gSanitizePromptDialog = { * True means the item list visibility status should not * be changed. */ - prepareWarning: function (aDontShowItemList) { + prepareWarning: function(aDontShowItemList) { // If the date and time-aware locale warning string is ever used again, // initialize it here. Currently we use the no-visits warning string, // which does not include date and time. See bug 480169 comment 48. @@ -160,7 +160,7 @@ var gSanitizePromptDialog = { * Called when the value of a preference element is synced from the actual * pref. Enables or disables the OK button appropriately. */ - onReadGeneric: function () + onReadGeneric: function() { var found = false; @@ -193,7 +193,7 @@ var gSanitizePromptDialog = { * (i.e., Windows). We must therefore manually set the prefs from their * corresponding preference elements. */ - updatePrefs : function () + updatePrefs : function() { var tsPref = document.getElementById("privacy.sanitize.timeSpan"); Sanitizer.prefs.setIntPref("timeSpan", this.selectedTimespan); @@ -214,7 +214,7 @@ var gSanitizePromptDialog = { /** * Check if all of the history items have been selected like the default status. */ - hasNonSelectedItems: function () { + hasNonSelectedItems: function() { let checkboxes = document.querySelectorAll("#itemList > [preference]"); for (let i = 0; i < checkboxes.length; ++i) { let pref = document.getElementById(checkboxes[i].getAttribute("preference")); @@ -227,7 +227,7 @@ var gSanitizePromptDialog = { /** * Show the history items list. */ - showItemList: function () { + showItemList: function() { var itemList = document.getElementById("itemList"); var expanderButton = document.getElementById("detailsExpander"); @@ -242,7 +242,7 @@ var gSanitizePromptDialog = { /** * Hide the history items list. */ - hideItemList: function () { + hideItemList: function() { var itemList = document.getElementById("itemList"); var expanderButton = document.getElementById("detailsExpander"); @@ -256,7 +256,7 @@ var gSanitizePromptDialog = { /** * Called by the item list expander button to toggle the list's visibility. */ - toggleItemList: function () + toggleItemList: function() { var itemList = document.getElementById("itemList"); @@ -282,7 +282,7 @@ var gSanitizePromptDialog = { return this._placesTree; }, - init: function () + init: function() { // This is used by selectByTimespan() to determine if the window has loaded. this._inited = true; @@ -315,7 +315,7 @@ var gSanitizePromptDialog = { * the tree to duration values, and this.durationStartTimes, which maps * duration values to their corresponding start times. */ - initDurationDropdown: function () + initDurationDropdown: function() { // First, calculate the start times for each duration. this.durationStartTimes = {}; @@ -379,7 +379,7 @@ var gSanitizePromptDialog = { /** * If the Places tree is not set up, sets it up. Otherwise does nothing. */ - ensurePlacesTreeIsInited: function () + ensurePlacesTreeIsInited: function() { if (this._placesTreeIsInited) return; @@ -420,7 +420,7 @@ var gSanitizePromptDialog = { * the tree that are contained in the selected duration. If clearing * everything, the warning panel is shown instead. */ - selectByTimespan: function () + selectByTimespan: function() { // This method is the onselect handler for the duration dropdown. As a // result it's called a couple of times before onload calls init(). @@ -467,7 +467,7 @@ var gSanitizePromptDialog = { document.documentElement.getButton("accept").disabled = durRow < 0; }, - sanitize: function () + sanitize: function() { // Update pref values before handing off to the sanitizer (bug 453440) this.updatePrefs(); @@ -515,7 +515,7 @@ var gSanitizePromptDialog = { * for garbage collection, we need to break the reference cycle between the * two. */ - unload: function () + unload: function() { let result = this.placesTree.getResult(); result.removeObserver(this.placesTree.view); @@ -533,7 +533,7 @@ var gSanitizePromptDialog = { * @param aEvent * The event captured in the event handler. */ - grippyMoved: function (aEventName, aEvent) + grippyMoved: function(aEventName, aEvent) { gContiguousSelectionTreeHelper[aEventName](aEvent); var lastSelRow = gContiguousSelectionTreeHelper.getGrippyRow() - 1; @@ -589,7 +589,7 @@ var gContiguousSelectionTreeHelper = { * view * @return The new view */ - setTree: function (aTreeElement, aProtoTreeView) + setTree: function(aTreeElement, aProtoTreeView) { this._tree = aTreeElement; var newView = this._makeTreeView(aProtoTreeView || aTreeElement.view); @@ -604,7 +604,7 @@ var gContiguousSelectionTreeHelper = { * * @return The row index of the grippy */ - getGrippyRow: function () + getGrippyRow: function() { var sel = this.tree.view.selection; var rangeCount = sel.getRangeCount(); @@ -626,7 +626,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed dragover event */ - ondragover: function (aEvent) + ondragover: function(aEvent) { // Without this when dragging on Windows the mouse cursor is a "no" sign. // This makes it a drop symbol. @@ -653,7 +653,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed dragstart event */ - ondragstart: function (aEvent) + ondragstart: function(aEvent) { var tbo = this.tree.treeBoxObject; var clickedRow = tbo.getRowAt(aEvent.clientX, aEvent.clientY); @@ -688,7 +688,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed keypress event */ - onkeypress: function (aEvent) + onkeypress: function(aEvent) { var grippyRow = this.getGrippyRow(); var tbo = this.tree.treeBoxObject; @@ -749,7 +749,7 @@ var gContiguousSelectionTreeHelper = { * @param aEvent * The observed mousedown event */ - onmousedown: function (aEvent) + onmousedown: function(aEvent) { var tbo = this.tree.treeBoxObject; var clickedRow = tbo.getRowAt(aEvent.clientX, aEvent.clientY); @@ -771,7 +771,7 @@ var gContiguousSelectionTreeHelper = { * @param aEndRow * The range [0, aEndRow] will be selected. */ - rangedSelect: function (aEndRow) + rangedSelect: function(aEndRow) { var tbo = this.tree.treeBoxObject; if (aEndRow < 0) @@ -784,7 +784,7 @@ var gContiguousSelectionTreeHelper = { /** * Scrolls the tree so that the grippy row is in the center of the view. */ - scrollToGrippy: function () + scrollToGrippy: function() { var rowCount = this.tree.view.rowCount; var tbo = this.tree.treeBoxObject; @@ -817,14 +817,14 @@ var gContiguousSelectionTreeHelper = { * @param aProtoTreeView * Used as the new view's prototype if specified */ - _makeTreeView: function (aProtoTreeView) + _makeTreeView: function(aProtoTreeView) { var view = aProtoTreeView; var that = this; //XXXadw: When Alex gets the grippy icon done, this may or may not change, // depending on how we style it. - view.isSeparator = function (aRow) + view.isSeparator = function(aRow) { return aRow === that.getGrippyRow(); }; @@ -832,7 +832,7 @@ var gContiguousSelectionTreeHelper = { // rowCount includes the grippy row. view.__defineGetter__("_rowCount", view.__lookupGetter__("rowCount")); view.__defineGetter__("rowCount", - function () + function() { return this._rowCount + 1; }); diff --git a/application/palemoon/components/distribution.js b/application/palemoon/components/distribution.js index c9ea928458..317193bb6d 100644 --- a/application/palemoon/components/distribution.js +++ b/application/palemoon/components/distribution.js @@ -63,12 +63,12 @@ DistributionCustomizer.prototype = { return this._ioSvc; }, - _makeURI: function (spec) { + _makeURI: function(spec) { return this._ioSvc.newURI(spec, null, null); }, _parseBookmarksSection: - function (parentId, section) { + function(parentId, section) { let keys = []; for (let i in enumerate(this._ini.getKeys(section))) keys.push(i); @@ -177,7 +177,7 @@ DistributionCustomizer.prototype = { }, _customizationsApplied: false, - applyCustomizations: function () { + applyCustomizations: function() { this._customizationsApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -190,7 +190,7 @@ DistributionCustomizer.prototype = { }, _bookmarksApplied: false, - applyBookmarks: function () { + applyBookmarks: function() { this._bookmarksApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -230,7 +230,7 @@ DistributionCustomizer.prototype = { }, _prefDefaultsApplied: false, - applyPrefDefaults: function () { + applyPrefDefaults: function() { this._prefDefaultsApplied = true; if (!this._iniFile) return this._checkCustomizationComplete(); @@ -321,7 +321,7 @@ DistributionCustomizer.prototype = { return this._checkCustomizationComplete(); }, - _checkCustomizationComplete: function () { + _checkCustomizationComplete: function() { let prefDefaultsApplied = this._prefDefaultsApplied || !this._iniFile; if (this._customizationsApplied && this._bookmarksApplied && prefDefaultsApplied) { diff --git a/application/palemoon/components/downloads/DownloadsCommon.jsm b/application/palemoon/components/downloads/DownloadsCommon.jsm index afe8361e0b..5d5aa4fcdb 100644 --- a/application/palemoon/components/downloads/DownloadsCommon.jsm +++ b/application/palemoon/components/downloads/DownloadsCommon.jsm @@ -97,7 +97,7 @@ const kPrefBranch = Services.prefs.getBranch("browser.download."); var PrefObserver = { QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver, Ci.nsISupportsWeakReference]), - getPref: function (name) { + getPref: function(name) { try { switch (typeof this.prefs[name]) { case "boolean": @@ -106,17 +106,17 @@ var PrefObserver = { } catch (ex) { } return this.prefs[name]; }, - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { if (this.prefs.hasOwnProperty(aData)) { return this[aData] = this.getPref(aData); } }, - register: function (prefs) { + register: function(prefs) { this.prefs = prefs; kPrefBranch.addObserver("", this, true); for (let key in prefs) { let name = key; - XPCOMUtils.defineLazyGetter(this, name, function () { + XPCOMUtils.defineLazyGetter(this, name, function() { return PrefObserver.getPref(name); }); } @@ -138,9 +138,9 @@ PrefObserver.register({ * and provides shared methods for all the instances of the user interface. */ this.DownloadsCommon = { - log: function (...aMessageArgs) { + log: function(...aMessageArgs) { delete this.log; - this.log = function (...aMessageArgs) { + this.log = function(...aMessageArgs) { if (!PrefObserver.debug) { return; } @@ -149,9 +149,9 @@ this.DownloadsCommon = { this.log.apply(this, aMessageArgs); }, - error: function (...aMessageArgs) { + error: function(...aMessageArgs) { delete this.error; - this.error = function (...aMessageArgs) { + this.error = function(...aMessageArgs) { if (!PrefObserver.debug) { return; } @@ -173,14 +173,14 @@ this.DownloadsCommon = { let string = enumerator.getNext().QueryInterface(Ci.nsIPropertyElement); let stringName = string.key; if (stringName in kDownloadsStringsRequiringFormatting) { - strings[stringName] = function () { + strings[stringName] = function() { // Convert "arguments" to a real array before calling into XPCOM. return sb.formatStringFromName(stringName, Array.slice(arguments, 0), arguments.length); }; } else if (stringName in kDownloadsStringsRequiringPluralForm) { - strings[stringName] = function (aCount) { + strings[stringName] = function(aCount) { // Convert "arguments" to a real array before calling into XPCOM. let formattedString = sb.formatStringFromName(stringName, Array.slice(arguments, 0), @@ -205,7 +205,7 @@ this.DownloadsCommon = { * @return Formatted string, for example "30s" or "2h". The returned value is * maximum three characters long, at least in English. */ - formatTimeLeft: function (aSeconds) + formatTimeLeft: function(aSeconds) { // Decide what text to show for the time let seconds = Math.round(aSeconds); @@ -259,7 +259,7 @@ this.DownloadsCommon = { * @param aWindow * The browser window which owns the download button. */ - getData: function (aWindow) { + getData: function(aWindow) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { return PrivateDownloadsData; } else { @@ -277,7 +277,7 @@ this.DownloadsCommon = { * called, and we must ensure to register our listeners before the * getService call for the Download Manager returns. */ - initializeAllDataLinks: function (aDownloadManagerService) { + initializeAllDataLinks: function(aDownloadManagerService) { DownloadsData.initializeDataLink(aDownloadManagerService); PrivateDownloadsData.initializeDataLink(aDownloadManagerService); }, @@ -286,7 +286,7 @@ this.DownloadsCommon = { * Terminates the data link for both the private and non-private downloads * data objects. */ - terminateAllDataLinks: function () { + terminateAllDataLinks: function() { DownloadsData.terminateDataLink(); PrivateDownloadsData.terminateDataLink(); }, @@ -299,7 +299,7 @@ this.DownloadsCommon = { * True to load only active downloads from the database. */ ensureAllPersistentDataLoaded: - function (aActiveOnly) { + function(aActiveOnly) { DownloadsData.ensurePersistentDataLoaded(aActiveOnly); }, @@ -308,7 +308,7 @@ this.DownloadsCommon = { * PrivateDownloadsIndicatorData objects, depending on the privacy status of * the window in question. */ - getIndicatorData: function (aWindow) { + getIndicatorData: function(aWindow) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { return PrivateDownloadsIndicatorData; } else { @@ -326,7 +326,7 @@ this.DownloadsCommon = { * The number of items on the top of the downloads list to exclude * from the summary. */ - getSummary: function (aWindow, aNumToExclude) + getSummary: function(aWindow, aNumToExclude) { if (PrivateBrowsingUtils.isWindowPrivate(aWindow)) { if (this._privateSummary) { @@ -465,7 +465,7 @@ this.DownloadsCommon = { * downloads. This is a floating point value to help get sub-second * accuracy for current and future estimates. */ - smoothSeconds: function (aSeconds, aLastSeconds) + smoothSeconds: function(aSeconds, aLastSeconds) { // We apply an algorithm similar to the DownloadUtils.getTimeLeft function, // though tailored to a single time estimation for all downloads. We never @@ -503,7 +503,7 @@ this.DownloadsCommon = { * @param aOwnerWindow * the window with which this action is associated. */ - openDownloadedFile: function (aFile, aMimeInfo, aOwnerWindow) { + openDownloadedFile: function(aFile, aMimeInfo, aOwnerWindow) { if (!(aFile instanceof Ci.nsIFile)) throw new Error("aFile must be a nsIFile object"); if (aMimeInfo && !(aMimeInfo instanceof Ci.nsIMIMEInfo)) @@ -572,7 +572,7 @@ this.DownloadsCommon = { * @param aFile * a downloaded file. */ - showDownloadedFile: function (aFile) { + showDownloadedFile: function(aFile) { if (!(aFile instanceof Ci.nsIFile)) throw new Error("aFile must be a nsIFile object"); try { @@ -601,7 +601,7 @@ this.DownloadsCommon = { /** * Returns true if we are executing on Windows Vista or a later version. */ -XPCOMUtils.defineLazyGetter(DownloadsCommon, "isWinVistaOrHigher", function () { +XPCOMUtils.defineLazyGetter(DownloadsCommon, "isWinVistaOrHigher", function() { let os = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime).OS; if (os != "WINNT") { return false; @@ -615,7 +615,7 @@ XPCOMUtils.defineLazyGetter(DownloadsCommon, "isWinVistaOrHigher", function () { * for downloads instead of the nsIDownloadManager back-end. * This is kept for compatibility/leftovers and should be removed later. */ -XPCOMUtils.defineLazyGetter(DownloadsCommon, "useJSTransfer", function () { +XPCOMUtils.defineLazyGetter(DownloadsCommon, "useJSTransfer", function() { return true; }); @@ -669,7 +669,7 @@ DownloadsDataCtor.prototype = { /** * Stops receiving events for current downloads and cancels any pending read. */ - terminateDataLink: function () + terminateDataLink: function() { Cu.reportError("terminateDataLink not applicable with JS Transfers"); return; @@ -698,7 +698,7 @@ DownloadsDataCtor.prototype = { /** * Asks the back-end to remove finished downloads from the list. */ - removeFinished: function () + removeFinished: function() { let promiseList = Downloads.getList(this._isPrivate ? Downloads.PRIVATE : Downloads.PUBLIC); @@ -804,7 +804,7 @@ DownloadsDataCtor.prototype = { * DownloadsView object to be added. This reference must be passed to * removeView before termination. */ - addView: function (aView) + addView: function(aView) { this._views.push(aView); this._updateView(aView); @@ -816,7 +816,7 @@ DownloadsDataCtor.prototype = { * @param aView * DownloadsView object to be removed. */ - removeView: function (aView) + removeView: function(aView) { let index = this._views.indexOf(aView); if (index != -1) { @@ -830,7 +830,7 @@ DownloadsDataCtor.prototype = { * @param aView * DownloadsView object to be initialized. */ - _updateView: function (aView) + _updateView: function(aView) { // Indicate to the view that a batch loading operation is in progress. aView.onDataLoadStarting(); @@ -857,7 +857,7 @@ DownloadsDataCtor.prototype = { /** * Clears the loaded data. */ - clear: function () + clear: function() { this._terminateDataAccess(); this.dataItems = {}; @@ -890,7 +890,7 @@ DownloadsDataCtor.prototype = { * @return New or existing data item, or null if the item was deleted from the * list of available downloads. */ - _getOrAddDataItem: function (aSource, aMayReuseGUID) + _getOrAddDataItem: function(aSource, aMayReuseGUID) { let downloadGuid = (aSource instanceof Ci.nsIDownload) ? aSource.guid @@ -910,7 +910,7 @@ DownloadsDataCtor.prototype = { // Create the view items before returning. let addToStartOfList = aSource instanceof Ci.nsIDownload; this._views.forEach( - function (view) view.onDataItemAdded(dataItem, addToStartOfList) + function(view) view.onDataItemAdded(dataItem, addToStartOfList) ); return dataItem; }, @@ -920,13 +920,13 @@ DownloadsDataCtor.prototype = { * * This method can be called at most once per download identifier. */ - _removeDataItem: function (aDownloadId) + _removeDataItem: function(aDownloadId) { if (aDownloadId in this.dataItems) { let dataItem = this.dataItems[aDownloadId]; this.dataItems[aDownloadId] = null; this._views.forEach( - function (view) view.onDataItemRemoved(dataItem) + function(view) view.onDataItemRemoved(dataItem) ); } }, @@ -961,7 +961,7 @@ DownloadsDataCtor.prototype = { * True to load only active downloads from the database. */ ensurePersistentDataLoaded: - function (aActiveOnly) + function(aActiveOnly) { if (this == PrivateDownloadsData) { Cu.reportError("ensurePersistentDataLoaded should not be called on PrivateDownloadsData"); @@ -978,7 +978,7 @@ DownloadsDataCtor.prototype = { DownloadsCommon.log("Loading only active downloads from the persistence database"); // Indicate to the views that a batch loading operation is in progress. this._views.forEach( - function (view) view.onDataLoadStarting() + function(view) view.onDataLoadStarting() ); // Reload the list using the Download Manager service. The list is @@ -992,7 +992,7 @@ DownloadsDataCtor.prototype = { // Indicate to the views that the batch loading operation is complete. this._views.forEach( - function (view) view.onDataLoadCompleted() + function(view) view.onDataLoadCompleted() ); DownloadsCommon.log("Active downloads done loading."); } @@ -1022,7 +1022,7 @@ DownloadsDataCtor.prototype = { /** * Cancels any pending data access and ensures views are notified. */ - _terminateDataAccess: function () + _terminateDataAccess: function() { if (this._pendingStatement) { this._pendingStatement.cancel(); @@ -1032,14 +1032,14 @@ DownloadsDataCtor.prototype = { // Close all the views on the current data. Create a copy of the array // because some views might unregister while processing this event. Array.slice(this._views, 0).forEach( - function (view) view.onDataInvalidated() + function(view) view.onDataInvalidated() ); }, ////////////////////////////////////////////////////////////////////////////// //// mozIStorageStatementCallback - handleResult: function (aResultSet) + handleResult: function(aResultSet) { for (let row = aResultSet.getNextRow(); row; @@ -1051,13 +1051,13 @@ DownloadsDataCtor.prototype = { } }, - handleError: function (aError) + handleError: function(aError) { DownloadsCommon.error("Database statement execution error (", aError.result, "): ", aError.message); }, - handleCompletion: function (aReason) + handleCompletion: function(aReason) { DownloadsCommon.log("Loading all downloads from database completed with reason:", aReason); @@ -1076,14 +1076,14 @@ DownloadsDataCtor.prototype = { // would open and immediately close. This case is rare enough not to need a // special treatment. this._views.forEach( - function (view) view.onDataLoadCompleted() + function(view) view.onDataLoadCompleted() ); }, ////////////////////////////////////////////////////////////////////////////// //// nsIObserver - observe: function (aSubject, aTopic, aData) + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "download-manager-remove-download-guid": @@ -1121,7 +1121,7 @@ DownloadsDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIDownloadProgressListener - onDownloadStateChange: function (aOldState, aDownload) + onDownloadStateChange: function(aOldState, aDownload) { if (aDownload.isPrivate != this._isPrivate) { // Ignore the downloads with a privacy status other than what we are @@ -1202,7 +1202,7 @@ DownloadsDataCtor.prototype = { } }, - onProgressChange: function (aWebProgress, aRequest, + onProgressChange: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, @@ -1225,13 +1225,13 @@ DownloadsDataCtor.prototype = { dataItem.percentComplete = aDownload.percentComplete; this._views.forEach( - function (view) view.getViewItem(dataItem).onProgressChange() + function(view) view.getViewItem(dataItem).onProgressChange() ); }, - onStateChange: function () { }, + onStateChange: function() { }, - onSecurityChange: function () { }, + onSecurityChange: function() { }, ////////////////////////////////////////////////////////////////////////////// //// Notifications sent to the most recent browser window only @@ -1259,7 +1259,7 @@ DownloadsDataCtor.prototype = { * @param aType * Set to "start" for new downloads, "finish" for completed downloads. */ - _notifyDownloadEvent: function (aType) + _notifyDownloadEvent: function(aType) { DownloadsCommon.log("Attempting to notify that a new download has started or finished."); if (DownloadsCommon.useToolkitUI) { @@ -1329,7 +1329,7 @@ const DownloadsViewPrototype = { * View object to be added. This reference must be * passed to removeView before termination. */ - addView: function (aView) + addView: function(aView) { // Start receiving events when the first of our views is registered. if (this._views.length == 0) { @@ -1350,7 +1350,7 @@ const DownloadsViewPrototype = { * @param aView * View object to be updated. */ - refreshView: function (aView) + refreshView: function(aView) { // Update immediately even if we are still loading data asynchronously. // Subclasses must provide these two functions! @@ -1364,7 +1364,7 @@ const DownloadsViewPrototype = { * @param aView * View object to be removed. */ - removeView: function (aView) + removeView: function(aView) { let index = this._views.indexOf(aView); if (index != -1) { @@ -1392,7 +1392,7 @@ const DownloadsViewPrototype = { /** * Called before multiple downloads are about to be loaded. */ - onDataLoadStarting: function () + onDataLoadStarting: function() { this._loading = true; }, @@ -1400,7 +1400,7 @@ const DownloadsViewPrototype = { /** * Called after data loading finished. */ - onDataLoadCompleted: function () + onDataLoadCompleted: function() { this._loading = false; }, @@ -1412,7 +1412,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - onDataInvalidated: function () + onDataInvalidated: function() { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, @@ -1481,7 +1481,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - _refreshProperties: function () + _refreshProperties: function() { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; }, @@ -1491,7 +1491,7 @@ const DownloadsViewPrototype = { * * @note Subclasses should override this. */ - _updateView: function () + _updateView: function() { throw Components.results.NS_ERROR_NOT_IMPLEMENTED; } @@ -1523,7 +1523,7 @@ DownloadsIndicatorDataCtor.prototype = { * @param aView * DownloadsIndicatorView object to be removed. */ - removeView: function (aView) + removeView: function(aView) { DownloadsViewPrototype.removeView.call(this, aView); @@ -1535,7 +1535,7 @@ DownloadsIndicatorDataCtor.prototype = { ////////////////////////////////////////////////////////////////////////////// //// Callback functions from DownloadsData - onDataLoadCompleted: function () + onDataLoadCompleted: function() { DownloadsViewPrototype.onDataLoadCompleted.call(this); this._updateViews(); @@ -1546,7 +1546,7 @@ DownloadsIndicatorDataCtor.prototype = { * entered Private Browsing Mode and the database backend changed). * References to existing data should be discarded. */ - onDataInvalidated: function () + onDataInvalidated: function() { this._itemCount = 0; }, @@ -1612,7 +1612,7 @@ DownloadsIndicatorDataCtor.prototype = { /** * Computes aggregate values and propagates the changes to our views. */ - _updateViews: function () + _updateViews: function() { // Do not update the status indicators during batch loads of download items. if (this._loading) { @@ -1629,7 +1629,7 @@ DownloadsIndicatorDataCtor.prototype = { * @param aView * DownloadsIndicatorView object to be updated. */ - _updateView: function (aView) + _updateView: function(aView) { aView.hasDownloads = this._hasDownloads; aView.counter = this._counter; @@ -1681,7 +1681,7 @@ DownloadsIndicatorDataCtor.prototype = { /** * Computes aggregate values based on the current state of downloads. */ - _refreshProperties: function () + _refreshProperties: function() { let summary = DownloadsCommon.summarizeDownloads(this._activeDownloads()); @@ -1780,7 +1780,7 @@ DownloadsSummaryData.prototype = { * @param aView * DownloadsSummary view to be removed. */ - removeView: function (aView) + removeView: function(aView) { DownloadsViewPrototype.removeView.call(this, aView); @@ -1796,13 +1796,13 @@ DownloadsSummaryData.prototype = { //// DownloadsViewPrototype for more information on what these functions //// are used for. - onDataLoadCompleted: function () + onDataLoadCompleted: function() { DownloadsViewPrototype.onDataLoadCompleted.call(this); this._updateViews(); }, - onDataInvalidated: function () + onDataInvalidated: function() { this._dataItems = []; }, @@ -1839,7 +1839,7 @@ DownloadsSummaryData.prototype = { /** * Computes aggregate values and propagates the changes to our views. */ - _updateViews: function () + _updateViews: function() { // Do not update the status indicators during batch loads of download items. if (this._loading) { @@ -1856,7 +1856,7 @@ DownloadsSummaryData.prototype = { * @param aView * DownloadsIndicatorView object to be updated. */ - _updateView: function (aView) + _updateView: function(aView) { aView.showingProgress = this._showingProgress; aView.percentComplete = this._percentComplete; @@ -1885,7 +1885,7 @@ DownloadsSummaryData.prototype = { /** * Computes aggregate values based on the current state of downloads. */ - _refreshProperties: function () + _refreshProperties: function() { // Pre-load summary with default values. let summary = diff --git a/application/palemoon/components/downloads/DownloadsLogger.jsm b/application/palemoon/components/downloads/DownloadsLogger.jsm index 52572781ab..833826ec08 100644 --- a/application/palemoon/components/downloads/DownloadsLogger.jsm +++ b/application/palemoon/components/downloads/DownloadsLogger.jsm @@ -24,7 +24,7 @@ Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/Services.jsm"); this.DownloadsLogger = { - _generateLogMessage: function (args) { + _generateLogMessage: function(args) { // create a string representation of a list of arbitrary things let strings = []; @@ -51,7 +51,7 @@ this.DownloadsLogger = { * * Enable with about:config pref browser.download.debug */ - log: function (...args) { + log: function(...args) { let output = this._generateLogMessage(args); dump(output + "\n"); @@ -63,7 +63,7 @@ this.DownloadsLogger = { * reportError() - report an error through component utils as well as * our log function */ - reportError: function (...aArgs) { + reportError: function(...aArgs) { // Report the error in the browser let output = this._generateLogMessage(aArgs); Cu.reportError(output); diff --git a/application/palemoon/components/downloads/DownloadsStartup.js b/application/palemoon/components/downloads/DownloadsStartup.js index e2715e1eab..8c0c40f2fe 100644 --- a/application/palemoon/components/downloads/DownloadsStartup.js +++ b/application/palemoon/components/downloads/DownloadsStartup.js @@ -82,7 +82,7 @@ DownloadsStartup.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIObserver - observe: function (aSubject, aTopic, aData) + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "profile-after-change": @@ -259,7 +259,7 @@ DownloadsStartup.prototype = { /** * Ensures that persistent download data is reloaded at the appropriate time. */ - _ensureDataLoaded: function () + _ensureDataLoaded: function() { if (!this._downloadsServiceInitialized) { return; diff --git a/application/palemoon/components/downloads/DownloadsUI.js b/application/palemoon/components/downloads/DownloadsUI.js index d6493a78a2..9686c2b780 100644 --- a/application/palemoon/components/downloads/DownloadsUI.js +++ b/application/palemoon/components/downloads/DownloadsUI.js @@ -40,7 +40,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "PrivateBrowsingUtils", function DownloadsUI() { - XPCOMUtils.defineLazyGetter(this, "_toolkitUI", function () { + XPCOMUtils.defineLazyGetter(this, "_toolkitUI", function() { // Create Toolkit's nsIDownloadManagerUI implementation. return Components.classesByID["{7dfdf0d1-aff6-4a34-bad1-d0fe74601642}"] .getService(Ci.nsIDownloadManagerUI); @@ -60,7 +60,7 @@ DownloadsUI.prototype = { ////////////////////////////////////////////////////////////////////////////// //// nsIDownloadManagerUI - show: function (aWindowContext, aDownload, aReason, aUsePrivateUI) + show: function(aWindowContext, aDownload, aReason, aUsePrivateUI) { if (DownloadsCommon.useToolkitUI && !PrivateBrowsingUtils.isWindowPrivate(aWindowContext)) { this._toolkitUI.show(aWindowContext, aDownload, aReason, aUsePrivateUI); @@ -101,7 +101,7 @@ DownloadsUI.prototype = { return DownloadsCommon.useToolkitUI ? this._toolkitUI.visible : true; }, - getAttention: function () + getAttention: function() { if (DownloadsCommon.useToolkitUI) { this._toolkitUI.getAttention(); @@ -112,7 +112,7 @@ DownloadsUI.prototype = { * Helper function that opens the download manager UI. */ _showDownloadManagerUI: - function (aWindowContext, aUsePrivateUI) + function(aWindowContext, aUsePrivateUI) { // If we weren't given a window context, try to find a browser window // to use as our parent - and if that doesn't work, error out and give up. diff --git a/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js b/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js index ce6deca723..b17e2b14a3 100644 --- a/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js +++ b/application/palemoon/components/downloads/content/allDownloadsViewOverlay.js @@ -213,7 +213,7 @@ HistoryDownloadElementShell.prototype = { * be activated when entering the visible area. Session downloads are always * active. */ - ensureActive: function () { + ensureActive: function() { if (!this._active) { this._active = true; this.element.setAttribute("active", true); @@ -305,7 +305,7 @@ HistoryDownloadElementShell.prototype = { }, /* nsIController */ - isCommandEnabled: function (aCommand) { + isCommandEnabled: function(aCommand) { // The only valid command for inactive elements is cmd_delete. if (!this.active && aCommand != "cmd_delete") return false; @@ -340,7 +340,7 @@ HistoryDownloadElementShell.prototype = { }, /* nsIController */ - doCommand: function (aCommand) { + doCommand: function(aCommand) { switch (aCommand) { case "downloadsCmd_open": { let file = new FileUtils.File(this.download.target.path); @@ -391,7 +391,7 @@ HistoryDownloadElementShell.prototype = { // Returns whether or not the download handled by this shell should // show up in the search results for the given term. Both the display // name for the download and the url are searched. - matchesSearchTerm: function (aTerm) { + matchesSearchTerm: function(aTerm) { if (!aTerm) return true; aTerm = aTerm.toLowerCase(); @@ -401,7 +401,7 @@ HistoryDownloadElementShell.prototype = { // Handles return keypress on the element (the keypress listener is // set in the DownloadsPlacesView object). - doDefaultCommand: function () { + doDefaultCommand: function() { function getDefaultCommandForState(aState) { switch (aState) { case nsIDM.DOWNLOAD_FINISHED: @@ -435,7 +435,7 @@ HistoryDownloadElementShell.prototype = { * existence of the target file already, we can do it now and then update * the commands as needed. */ - onSelect: function () { + onSelect: function() { if (!this.active) return; @@ -775,7 +775,7 @@ DownloadsPlacesView.prototype = { } }, - _removeElement: function (aElement) { + _removeElement: function(aElement) { // If the element was selected exclusively, select its next // sibling first, if not, try for previous sibling, if any. if ((aElement.nextSibling || aElement.previousSibling) && @@ -796,7 +796,7 @@ DownloadsPlacesView.prototype = { }, _removeHistoryDownloadFromView: - function (aPlacesNode) { + function(aPlacesNode) { let downloadURI = aPlacesNode.uri; let shellsForURI = this._downloadElementsShellsForURI.get(downloadURI); if (shellsForURI) { @@ -857,7 +857,7 @@ DownloadsPlacesView.prototype = { }, _ensureVisibleElementsAreActive: - function () { + function() { if (!this.active || this._ensureVisibleTimer || !this._richlistbox.firstChild) return; @@ -964,12 +964,12 @@ DownloadsPlacesView.prototype = { get hasSelection() this.selectedNodes.length > 0, containerStateChanged: - function (aNode, aOldState, aNewState) { + function(aNode, aOldState, aNewState) { this.invalidateContainer(aNode) }, invalidateContainer: - function (aContainer) { + function(aContainer) { if (aContainer != this._resultNode) throw new Error("Unexpected container node"); if (!aContainer.containerOpen) @@ -1015,7 +1015,7 @@ DownloadsPlacesView.prototype = { goUpdateDownloadCommands(); }, - _appendDownloadsFragment: function (aDOMFragment) { + _appendDownloadsFragment: function(aDOMFragment) { // Workaround multiple reflows hang by removing the richlistbox // and adding it back when we're done. @@ -1037,11 +1037,11 @@ DownloadsPlacesView.prototype = { } }, - nodeInserted: function (aParent, aPlacesNode) { + nodeInserted: function(aParent, aPlacesNode) { this._addDownloadData(null, aPlacesNode); }, - nodeRemoved: function (aParent, aPlacesNode, aOldIndex) { + nodeRemoved: function(aParent, aPlacesNode, aOldIndex) { this._removeHistoryDownloadFromView(aPlacesNode); }, @@ -1086,7 +1086,7 @@ DownloadsPlacesView.prototype = { * data is done loading. However, if the selection has changed in-between, * we assume the user has already started using the view and give up. */ - _ensureInitialSelection: function () { + _ensureInitialSelection: function() { // Either they're both null, or the selection has not changed in between. if (this._richlistbox.selectedItem == this._initiallySelectedElement) { let firstDownloadElement = this._richlistbox.firstChild; @@ -1106,7 +1106,7 @@ DownloadsPlacesView.prototype = { }, onDataLoadStarting: function() { }, - onDataLoadCompleted: function () { + onDataLoadCompleted: function() { this._ensureInitialSelection(); }, @@ -1126,7 +1126,7 @@ DownloadsPlacesView.prototype = { this._removeSessionDownloadFromView(download); }, - supportsCommand: function (aCommand) { + supportsCommand: function(aCommand) { if (DOWNLOAD_VIEW_SUPPORTED_COMMANDS.indexOf(aCommand) != -1) { // The clear-downloads command may be performed by the toolbar-button, // which can be focused on OS X. Thus enable this command even if the @@ -1144,7 +1144,7 @@ DownloadsPlacesView.prototype = { return false; }, - isCommandEnabled: function (aCommand) { + isCommandEnabled: function(aCommand) { switch (aCommand) { case "cmd_copy": return this._richlistbox.selectedItems.length > 0; @@ -1161,7 +1161,7 @@ DownloadsPlacesView.prototype = { } }, - _canClearDownloads: function () { + _canClearDownloads: function() { // Downloads can be cleared if there's at least one removable download in // the list (either a history download or a completed session download). // Because history downloads are always removable and are listed after the @@ -1177,7 +1177,7 @@ DownloadsPlacesView.prototype = { }, _copySelectedDownloadsToClipboard: - function () { + function() { let urls = [for (element of this._richlistbox.selectedItems) element._shell.download.source.url]; @@ -1186,7 +1186,7 @@ DownloadsPlacesView.prototype = { .copyString(urls.join("\n"), document); }, - _getURLFromClipboardData: function () { + _getURLFromClipboardData: function() { let trans = Cc["@mozilla.org/widget/transferable;1"]. createInstance(Ci.nsITransferable); trans.init(null); @@ -1210,19 +1210,19 @@ DownloadsPlacesView.prototype = { return ["", ""]; }, - _canDownloadClipboardURL: function () { + _canDownloadClipboardURL: function() { let [url, name] = this._getURLFromClipboardData(); return url != ""; }, - _downloadURLFromClipboard: function () { + _downloadURLFromClipboard: function() { let [url, name] = this._getURLFromClipboardData(); let browserWin = RecentWindow.getMostRecentBrowserWindow(); let initiatingDoc = browserWin ? browserWin.document : document; DownloadURL(url, name, initiatingDoc); }, - doCommand: function (aCommand) { + doCommand: function(aCommand) { // Commands may be invoked with keyboard shortcuts even if disabled. if (!this.isCommandEnabled(aCommand)) { return; @@ -1263,7 +1263,7 @@ DownloadsPlacesView.prototype = { onEvent: function() { }, - onContextMenu: function (aEvent) + onContextMenu: function(aEvent) { let element = this._richlistbox.selectedItem; if (!element || !element._shell) @@ -1283,7 +1283,7 @@ DownloadsPlacesView.prototype = { return true; }, - onKeyPress: function (aEvent) { + onKeyPress: function(aEvent) { let selectedElements = this._richlistbox.selectedItems; if (aEvent.keyCode == KeyEvent.DOM_VK_RETURN) { // In the content tree, opening bookmarks by pressing return is only @@ -1304,7 +1304,7 @@ DownloadsPlacesView.prototype = { } }, - onDoubleClick: function (aEvent) { + onDoubleClick: function(aEvent) { if (aEvent.button != 0) return; @@ -1317,11 +1317,11 @@ DownloadsPlacesView.prototype = { element._shell.doDefaultCommand(); }, - onScroll: function () { + onScroll: function() { this._ensureVisibleElementsAreActive(); }, - onSelect: function () { + onSelect: function() { goUpdateDownloadCommands(); let selectedElements = this._richlistbox.selectedItems; @@ -1331,7 +1331,7 @@ DownloadsPlacesView.prototype = { } }, - onDragStart: function (aEvent) { + onDragStart: function(aEvent) { // TODO Bug 831358: Support d&d for multiple selection. // For now, we just drag the first element. let selectedItem = this._richlistbox.selectedItem; @@ -1357,7 +1357,7 @@ DownloadsPlacesView.prototype = { dt.addElement(selectedItem); }, - onDragOver: function (aEvent) { + onDragOver: function(aEvent) { let types = aEvent.dataTransfer.types; if (types.contains("text/uri-list") || types.contains("text/x-moz-url") || @@ -1366,7 +1366,7 @@ DownloadsPlacesView.prototype = { } }, - onDrop: function (aEvent) { + onDrop: function(aEvent) { let dt = aEvent.dataTransfer; // If dragged item is from our source, do not try to // redownload already downloaded file. diff --git a/application/palemoon/components/downloads/content/contentAreaDownloadsView.js b/application/palemoon/components/downloads/content/contentAreaDownloadsView.js index 2a43246ccd..07bff3ef1c 100644 --- a/application/palemoon/components/downloads/content/contentAreaDownloadsView.js +++ b/application/palemoon/components/downloads/content/contentAreaDownloadsView.js @@ -5,7 +5,7 @@ Components.utils.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); var ContentAreaDownloadsView = { - init: function () { + init: function() { let view = new DownloadsPlacesView(document.getElementById("downloadsRichListBox")); // Do not display the Places downloads in private windows if (!PrivateBrowsingUtils.isWindowPrivate(window)) { diff --git a/application/palemoon/components/downloads/content/downloads.js b/application/palemoon/components/downloads/content/downloads.js index 2c935ba65d..308987cefc 100644 --- a/application/palemoon/components/downloads/content/downloads.js +++ b/application/palemoon/components/downloads/content/downloads.js @@ -122,7 +122,7 @@ const DownloadsPanel = { * @param aCallback * Called when initialization is complete. */ - initialize: function (aCallback) + initialize: function(aCallback) { DownloadsCommon.log("Attempting to initialize DownloadsPanel for a window."); if (this._state != this.kStateUninitialized) { @@ -164,7 +164,7 @@ const DownloadsPanel = { * downloads. The downloads panel can be reopened later, even after this * function has been called. */ - terminate: function () + terminate: function() { DownloadsCommon.log("Attempting to terminate DownloadsPanel for a window."); if (this._state == this.kStateUninitialized) { @@ -214,7 +214,7 @@ const DownloadsPanel = { * initialized the first time this method is called, and the panel is shown * only when data is ready. */ - showPanel: function () + showPanel: function() { DownloadsCommon.log("Opening the downloads panel."); @@ -229,7 +229,7 @@ const DownloadsPanel = { // called while another window is closing (like the window for selecting // whether to save or open the file), and that would cause the panel to // close immediately. - setTimeout(function () DownloadsPanel._openPopupIfDataReady(), 0); + setTimeout(function() DownloadsPanel._openPopupIfDataReady(), 0); }.bind(this)); DownloadsCommon.log("Waiting for the downloads panel to appear."); @@ -240,7 +240,7 @@ const DownloadsPanel = { * Hides the downloads panel, if visible, but keeps the internal state so that * the panel can be reopened quickly if required. */ - hidePanel: function () + hidePanel: function() { DownloadsCommon.log("Closing the downloads panel."); @@ -297,7 +297,7 @@ const DownloadsPanel = { * Handles the mousemove event for the panel, which disables focusring * visualization. */ - handleEvent: function (aEvent) + handleEvent: function(aEvent) { if (aEvent.type == "mousemove") { this.keyFocusing = false; @@ -310,7 +310,7 @@ const DownloadsPanel = { /** * Called after data loading finished. */ - onViewLoadCompleted: function () + onViewLoadCompleted: function() { this._openPopupIfDataReady(); }, @@ -318,13 +318,13 @@ const DownloadsPanel = { ////////////////////////////////////////////////////////////////////////////// //// User interface event functions - onWindowUnload: function () + onWindowUnload: function() { // This function is registered as an event listener, we can't use "this". DownloadsPanel.terminate(); }, - onPopupShown: function (aEvent) + onPopupShown: function(aEvent) { // Ignore events raised by nested popups. if (aEvent.target != aEvent.currentTarget) { @@ -346,7 +346,7 @@ const DownloadsPanel = { this._focusPanel(); }, - onPopupHidden: function (aEvent) + onPopupHidden: function(aEvent) { // Ignore events raised by nested popups. if (aEvent.target != aEvent.currentTarget) { @@ -375,7 +375,7 @@ const DownloadsPanel = { /** * Shows or focuses the user interface dedicated to downloads history. */ - showDownloadsHistory: function () + showDownloadsHistory: function() { DownloadsCommon.log("Showing download history."); // Hide the panel before showing another window, otherwise focus will return @@ -393,7 +393,7 @@ const DownloadsPanel = { * removed in _unattachEventListeners. This is called automatically after the * panel has successfully loaded. */ - _attachEventListeners: function () + _attachEventListeners: function() { // Handle keydown to support accel-V. this.panel.addEventListener("keydown", this._onKeyDown.bind(this), false); @@ -406,7 +406,7 @@ const DownloadsPanel = { * Unattach event listeners that were added in _attachEventListeners. This * is called automatically on panel termination. */ - _unattachEventListeners: function () + _unattachEventListeners: function() { this.panel.removeEventListener("keydown", this._onKeyDown.bind(this), false); @@ -414,7 +414,7 @@ const DownloadsPanel = { false); }, - _onKeyPress: function (aEvent) + _onKeyPress: function(aEvent) { // Handle unmodified keys only. if (aEvent.altKey || aEvent.ctrlKey || aEvent.shiftKey || aEvent.metaKey) { @@ -462,7 +462,7 @@ const DownloadsPanel = { * as the the accel-V "paste" event, which initiates a file download if the * pasted item can be resolved to a URI. */ - _onKeyDown: function (aEvent) + _onKeyDown: function(aEvent) { // If the footer is focused and the downloads list has at least 1 element // in it, focus the last element in the list when going up. @@ -516,7 +516,7 @@ const DownloadsPanel = { * Move focus to the main element in the downloads panel, unless another * element in the panel is already focused. */ - _focusPanel: function () + _focusPanel: function() { // We may be invoked while the panel is still waiting to be shown. if (this._state != this.kStateShown) { @@ -539,7 +539,7 @@ const DownloadsPanel = { /** * Opens the downloads panel when data is ready to be displayed. */ - _openPopupIfDataReady: function () + _openPopupIfDataReady: function() { // We don't want to open the popup if we already displayed it, or if we are // still loading data. @@ -627,7 +627,7 @@ const DownloadsOverlayLoader = { * Invoked when loading is completed. If the overlay is already * loaded, the function is called immediately. */ - ensureOverlayLoaded: function (aOverlay, aCallback) + ensureOverlayLoaded: function(aOverlay, aCallback) { // The overlay is already loaded, invoke the callback immediately. if (aOverlay in this._loadedOverlays) { @@ -663,7 +663,7 @@ const DownloadsOverlayLoader = { * and/or loading more overlays as needed. In most cases, there will be a * single request for one overlay, that will be processed immediately. */ - processPendingRequests: function () + processPendingRequests: function() { // Re-process all the currently pending requests, yet allow more requests // to be appended at the end of the array if we're not ready for them. @@ -721,7 +721,7 @@ const DownloadsView = { /** * Called when the number of items in the list changes. */ - _itemCountChanged: function () + _itemCountChanged: function() { DownloadsCommon.log("The downloads item count has changed - we are tracking", this._downloads.length, "downloads in total."); @@ -766,7 +766,7 @@ const DownloadsView = { /** * Called before multiple downloads are about to be loaded. */ - onDataLoadStarting: function () + onDataLoadStarting: function() { DownloadsCommon.log("onDataLoadStarting called for DownloadsView."); this.loading = true; @@ -775,7 +775,7 @@ const DownloadsView = { /** * Called after data loading finished. */ - onDataLoadCompleted: function () + onDataLoadCompleted: function() { DownloadsCommon.log("onDataLoadCompleted called for DownloadsView."); @@ -795,7 +795,7 @@ const DownloadsView = { * entering Private Browsing Mode). References to existing data should be * discarded. */ - onDataInvalidated: function () + onDataInvalidated: function() { DownloadsCommon.log("Downloads data has been invalidated. Cleaning up", "DownloadsView."); @@ -952,7 +952,7 @@ const DownloadsView = { * @param aCommand * The command to be performed. */ - onDownloadCommand: function (aEvent, aCommand) + onDownloadCommand: function(aEvent, aCommand) { let target = aEvent.target; while (target.nodeName != "richlistitem") { @@ -961,7 +961,7 @@ const DownloadsView = { DownloadsView.controllerForElement(target).doCommand(aCommand); }, - onDownloadClick: function (aEvent) + onDownloadClick: function(aEvent) { // Handle primary clicks only, and exclude the action button. if (aEvent.button == 0 && @@ -973,7 +973,7 @@ const DownloadsView = { /** * Handles keypress events on a download item. */ - onDownloadKeyPress: function (aEvent) + onDownloadKeyPress: function(aEvent) { // Pressing the key on buttons should not invoke the action because the // event has already been handled by the button itself. @@ -997,12 +997,12 @@ const DownloadsView = { /** * Mouse listeners to handle selection on hover. */ - onDownloadMouseOver: function (aEvent) + onDownloadMouseOver: function(aEvent) { if (aEvent.originalTarget.parentNode == this.richListBox) this.richListBox.selectedItem = aEvent.originalTarget; }, - onDownloadMouseOut: function (aEvent) + onDownloadMouseOut: function(aEvent) { if (aEvent.originalTarget.parentNode == this.richListBox) { // If the destination element is outside of the richlistitem, clear the @@ -1016,7 +1016,7 @@ const DownloadsView = { } }, - onDownloadContextMenu: function (aEvent) + onDownloadContextMenu: function(aEvent) { let element = this.richListBox.selectedItem; if (!element) { @@ -1030,7 +1030,7 @@ const DownloadsView = { contextMenu.setAttribute("state", element.getAttribute("state")); }, - onDownloadDragStart: function (aEvent) + onDownloadDragStart: function(aEvent) { let element = this.richListBox.selectedItem; if (!element) { @@ -1113,12 +1113,12 @@ const DownloadsViewController = { ////////////////////////////////////////////////////////////////////////////// //// Initialization and termination - initialize: function () + initialize: function() { window.controllers.insertControllerAt(0, this); }, - terminate: function () + terminate: function() { window.controllers.removeController(this); }, @@ -1126,7 +1126,7 @@ const DownloadsViewController = { ////////////////////////////////////////////////////////////////////////////// //// nsIController - supportsCommand: function (aCommand) + supportsCommand: function(aCommand) { // Firstly, determine if this is a command that we can handle. if (!(aCommand in this.commands) && @@ -1143,7 +1143,7 @@ const DownloadsViewController = { return !!element; }, - isCommandEnabled: function (aCommand) + isCommandEnabled: function(aCommand) { // Handle commands that are not selection-specific. if (aCommand == "downloadsCmd_clearList") { @@ -1156,7 +1156,7 @@ const DownloadsViewController = { .isCommandEnabled(aCommand); }, - doCommand: function (aCommand) + doCommand: function(aCommand) { // If this command is not selection-specific, execute it. if (aCommand in this.commands) { @@ -1172,12 +1172,12 @@ const DownloadsViewController = { } }, - onEvent: function () { }, + onEvent: function() { }, ////////////////////////////////////////////////////////////////////////////// //// Other functions - updateCommands: function () + updateCommands: function() { Object.keys(this.commands).forEach(goUpdateCommand); Object.keys(DownloadsViewItemController.prototype.commands) @@ -1192,7 +1192,7 @@ const DownloadsViewController = { * the currently selected item in the list. */ commands: { - downloadsCmd_clearList: function () + downloadsCmd_clearList: function() { DownloadsCommon.getData(window).removeFinished(); } @@ -1213,7 +1213,7 @@ function DownloadsViewItemController(download) { } DownloadsViewItemController.prototype = { - isCommandEnabled: function (aCommand) + isCommandEnabled: function(aCommand) { switch (aCommand) { case "downloadsCmd_open": { @@ -1252,7 +1252,7 @@ DownloadsViewItemController.prototype = { return false; }, - doCommand: function (aCommand) + doCommand: function(aCommand) { if (this.isCommandEnabled(aCommand)) { this.commands[aCommand].apply(this); @@ -1268,20 +1268,20 @@ DownloadsViewItemController.prototype = { * In commands, the "this" identifier points to the controller item. */ commands: { - cmd_delete: function () + cmd_delete: function() { DownloadsCommon.removeAndFinalizeDownload(this.download); PlacesUtils.bhistory.removePage( NetUtil.newURI(this.download.source.url)); }, - downloadsCmd_cancel: function () + downloadsCmd_cancel: function() { this.download.cancel().catch(() => {}); this.download.removePartialData().catch(Cu.reportError); }, - downloadsCmd_open: function () + downloadsCmd_open: function() { this.download.launch().catch(Cu.reportError); @@ -1293,7 +1293,7 @@ DownloadsViewItemController.prototype = { DownloadsPanel.hidePanel(); }, - downloadsCmd_show: function () + downloadsCmd_show: function() { let file = new FileUtils.File(this.download.target.path); DownloadsCommon.showDownloadedFile(file); @@ -1306,7 +1306,7 @@ DownloadsViewItemController.prototype = { DownloadsPanel.hidePanel(); }, - downloadsCmd_pauseResume: function () + downloadsCmd_pauseResume: function() { if (this.download.stopped) { this.download.start(); @@ -1315,29 +1315,29 @@ DownloadsViewItemController.prototype = { } }, - downloadsCmd_retry: function () + downloadsCmd_retry: function() { this.download.start().catch(() => {}); }, - downloadsCmd_openReferrer: function () + downloadsCmd_openReferrer: function() { openURL(this.download.source.referrer); }, - downloadsCmd_copyLocation: function () + downloadsCmd_copyLocation: function() { let clipboard = Cc["@mozilla.org/widget/clipboardhelper;1"] .getService(Ci.nsIClipboardHelper); clipboard.copyString(this.download.source.url, document); }, - downloadsCmd_doDefault: function () + downloadsCmd_doDefault: function() { const nsIDM = Ci.nsIDownloadManager; // Determine the default command for the current item. - let defaultCommand = function () { + let defaultCommand = function() { switch (DownloadsCommon.stateOfDownload(this.download)) { case nsIDM.DOWNLOAD_NOTSTARTED: return "downloadsCmd_cancel"; case nsIDM.DOWNLOAD_FINISHED: return "downloadsCmd_open"; @@ -1478,7 +1478,7 @@ const DownloadsSummary = { * @param aEvent * The keydown event being handled. */ - onKeyDown: function (aEvent) + onKeyDown: function(aEvent) { if (aEvent.charCode == " ".charCodeAt(0) || aEvent.keyCode == KeyEvent.DOM_VK_ENTER || @@ -1493,7 +1493,7 @@ const DownloadsSummary = { * @param aEvent * The click event being handled. */ - onClick: function (aEvent) + onClick: function(aEvent) { DownloadsPanel.showDownloadsHistory(); }, @@ -1569,7 +1569,7 @@ const DownloadsFooter = { * is visible, focus it. If not, focus the "Show All Downloads" * button. */ - focus: function () + focus: function() { if (this._showingSummary) { DownloadsSummary.focus(); diff --git a/application/palemoon/components/downloads/content/indicator.js b/application/palemoon/components/downloads/content/indicator.js index 7503f7d04d..c20f2f6f20 100644 --- a/application/palemoon/components/downloads/content/indicator.js +++ b/application/palemoon/components/downloads/content/indicator.js @@ -59,7 +59,7 @@ const DownloadsButton = { * startup time, and in particular should not cause the Download Manager * service to start. */ - initializeIndicator: function () + initializeIndicator: function() { this._update(); }, @@ -77,7 +77,7 @@ const DownloadsButton = { * placeholder is an ordinary button defined in the browser window that can be * moved freely between the toolbars and the customization palette. */ - customizeStart: function () + customizeStart: function() { // Hide the indicator and prevent it to be displayed as a temporary anchor // during customization, even if requested using the getAnchor method. @@ -98,7 +98,7 @@ const DownloadsButton = { /** * This function is called when toolbar customization ends. */ - customizeDone: function () + customizeDone: function() { this._customizing = false; this._update(); @@ -114,7 +114,7 @@ const DownloadsButton = { * input/output it performs, and in particular should not cause the * Download Manager service to start. */ - _update: function () { + _update: function() { this._updatePositionInternal(); if (!DownloadsCommon.useToolkitUI) { @@ -131,7 +131,7 @@ const DownloadsButton = { * that the panel doesn't flicker because we move the DOM element to which * it's anchored. */ - updatePosition: function () + updatePosition: function() { if (!this._anchorRequested) { this._updatePositionInternal(); @@ -144,7 +144,7 @@ const DownloadsButton = { * * @return Anchor element, or null if the indicator is not visible. */ - _updatePositionInternal: function () + _updatePositionInternal: function() { let indicator = DownloadsIndicatorView.indicator; if (!indicator) { @@ -187,7 +187,7 @@ const DownloadsButton = { * Called once the indicator overlay has loaded. Gets a boolean * argument representing the indicator visibility. */ - checkIsVisible: function (aCallback) + checkIsVisible: function(aCallback) { function DB_CEV_callback() { if (!this._placeholder) { @@ -215,7 +215,7 @@ const DownloadsButton = { * panel should be anchored, or null if an anchor is not available (for * example because both the tab bar and the navigation bar are hidden). */ - getAnchor: function (aCallback) + getAnchor: function(aCallback) { // Do not allow anchoring the panel to the element while customizing. if (this._customizing) { @@ -235,7 +235,7 @@ const DownloadsButton = { /** * Allows the temporary anchor to be hidden. */ - releaseAnchor: function () + releaseAnchor: function() { this._anchorRequested = false; this._updatePositionInternal(); @@ -284,7 +284,7 @@ const DownloadsIndicatorView = { /** * Prepares the downloads indicator to be displayed. */ - ensureInitialized: function () + ensureInitialized: function() { if (this._initialized) { return; @@ -298,7 +298,7 @@ const DownloadsIndicatorView = { /** * Frees the internal resources related to the indicator. */ - ensureTerminated: function () + ensureTerminated: function() { if (!this._initialized) { return; @@ -320,7 +320,7 @@ const DownloadsIndicatorView = { * Ensures that the user interface elements required to display the indicator * are loaded, then invokes the given callback. */ - _ensureOperational: function (aCallback) + _ensureOperational: function(aCallback) { if (this._operational) { aCallback(); @@ -359,7 +359,7 @@ const DownloadsIndicatorView = { * @param aType * Set to "start" for new downloads, "finish" for completed downloads. */ - showEventNotification: function (aType) + showEventNotification: function(aType) { if (!this._initialized) { return; @@ -386,7 +386,7 @@ const DownloadsIndicatorView = { let indicator = this.indicator; indicator.setAttribute("notification", aType); this._notificationTimeout = setTimeout( - function () indicator.removeAttribute("notification"), 1000); + function() indicator.removeAttribute("notification"), 1000); } this._ensureOperational(DIV_SEN_callback.bind(this)); @@ -516,13 +516,13 @@ const DownloadsIndicatorView = { ////////////////////////////////////////////////////////////////////////////// //// User interface event functions - onWindowUnload: function () + onWindowUnload: function() { // This function is registered as an event listener, we can't use "this". DownloadsIndicatorView.ensureTerminated(); }, - onCommand: function (aEvent) + onCommand: function(aEvent) { if (DownloadsCommon.useToolkitUI) { // The panel won't suppress attention for us, we need to clear now. @@ -535,12 +535,12 @@ const DownloadsIndicatorView = { aEvent.stopPropagation(); }, - onDragOver: function (aEvent) + onDragOver: function(aEvent) { browserDragAndDrop.dragOver(aEvent); }, - onDrop: function (aEvent) + onDrop: function(aEvent) { let dt = aEvent.dataTransfer; // If dragged item is from our source, do not try to diff --git a/application/palemoon/components/feeds/FeedConverter.js b/application/palemoon/components/feeds/FeedConverter.js index e41958cd84..5ccb09f0f3 100644 --- a/application/palemoon/components/feeds/FeedConverter.js +++ b/application/palemoon/components/feeds/FeedConverter.js @@ -127,7 +127,7 @@ FeedConverter.prototype = { /** * See nsIStreamConverter.idl */ - convert: function (sourceStream, sourceType, destinationType, + convert: function(sourceStream, sourceType, destinationType, context) { throw Cr.NS_ERROR_NOT_IMPLEMENTED; }, @@ -135,7 +135,7 @@ FeedConverter.prototype = { /** * See nsIStreamConverter.idl */ - asyncConvertData: function (sourceType, destinationType, + asyncConvertData: function(sourceType, destinationType, listener, context) { this._listener = listener; }, @@ -148,7 +148,7 @@ FeedConverter.prototype = { /** * Release our references to various things once we're done using them. */ - _releaseHandles: function () { + _releaseHandles: function() { this._listener = null; this._request = null; this._processor = null; @@ -157,7 +157,7 @@ FeedConverter.prototype = { /** * See nsIFeedResultListener.idl */ - handleResult: function (result) { + handleResult: function(result) { // Feeds come in various content types, which our feed sniffer coerces to // the maybe.feed type. However, feeds are used as a transport for // different data types, e.g. news/blogs (traditional feed), video/audio @@ -270,7 +270,7 @@ FeedConverter.prototype = { /** * See nsIStreamListener.idl */ - onDataAvailable: function (request, context, inputStream, + onDataAvailable: function(request, context, inputStream, sourceOffset, count) { if (this._processor) this._processor.onDataAvailable(request, context, inputStream, @@ -280,7 +280,7 @@ FeedConverter.prototype = { /** * See nsIRequestObserver.idl */ - onStartRequest: function (request, context) { + onStartRequest: function(request, context) { var channel = request.QueryInterface(Ci.nsIChannel); // Check for a header that tells us there was no sniffing @@ -323,7 +323,7 @@ FeedConverter.prototype = { /** * See nsIRequestObserver.idl */ - onStopRequest: function (request, context, status) { + onStopRequest: function(request, context, status) { if (this._processor) this._processor.onStopRequest(request, context, status); }, @@ -331,7 +331,7 @@ FeedConverter.prototype = { /** * See nsISupports.idl */ - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIFeedResultListener) || iid.equals(Ci.nsIStreamConverter) || iid.equals(Ci.nsIStreamListener) || @@ -366,7 +366,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - addToClientReader: function (spec, title, subtitle, feedType) { + addToClientReader: function(spec, title, subtitle, feedType) { var prefs = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefBranch); @@ -432,7 +432,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - addFeedResult: function (feedResult) { + addFeedResult: function(feedResult) { NS_ASSERT(feedResult.uri != null, "null URI!"); NS_ASSERT(feedResult.uri != null, "null feedResult!"); var spec = feedResult.uri.spec; @@ -444,7 +444,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - getFeedResult: function (uri) { + getFeedResult: function(uri) { NS_ASSERT(uri != null, "null URI!"); var resultList = this._results[uri.spec]; for (var i in resultList) { @@ -457,7 +457,7 @@ FeedResultService.prototype = { /** * See nsIFeedResultService.idl */ - removeFeedResult: function (uri) { + removeFeedResult: function(uri) { NS_ASSERT(uri != null, "null URI!"); var resultList = this._results[uri.spec]; if (!resultList) @@ -478,13 +478,13 @@ FeedResultService.prototype = { delete this._results[uri.spec]; }, - createInstance: function (outer, iid) { + createInstance: function(outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return this.QueryInterface(iid); }, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIFeedResultService) || iid.equals(Ci.nsIFactory) || iid.equals(Ci.nsISupports)) @@ -500,7 +500,7 @@ FeedResultService.prototype = { function GenericProtocolHandler() { } GenericProtocolHandler.prototype = { - _init: function (scheme) { + _init: function(scheme) { var ios = Cc["@mozilla.org/network/io-service;1"]. getService(Ci.nsIIOService); @@ -520,11 +520,11 @@ GenericProtocolHandler.prototype = { return this._http.defaultPort; }, - allowPort: function (port, scheme) { + allowPort: function(port, scheme) { return this._http.allowPort(port, scheme); }, - newURI: function (spec, originalCharset, baseURI) { + newURI: function(spec, originalCharset, baseURI) { // Feed URIs can be either nested URIs of the form feed:realURI (in which // case we create a nested URI for the realURI) or feed://example.com, in // which case we create a nested URI for the real protocol which is http. @@ -548,7 +548,7 @@ GenericProtocolHandler.prototype = { return uri; }, - newChannel2: function (aUri, aLoadInfo) { + newChannel2: function(aUri, aLoadInfo) { var inner = aUri.QueryInterface(Ci.nsINestedURI).innerURI; var channel = Cc["@mozilla.org/network/io-service;1"]. getService(Ci.nsIIOService). @@ -562,7 +562,7 @@ GenericProtocolHandler.prototype = { }, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIProtocolHandler) || iid.equals(Ci.nsISupports)) return this; diff --git a/application/palemoon/components/feeds/FeedWriter.js b/application/palemoon/components/feeds/FeedWriter.js index 048da1fe6d..2dcebede83 100644 --- a/application/palemoon/components/feeds/FeedWriter.js +++ b/application/palemoon/components/feeds/FeedWriter.js @@ -149,12 +149,12 @@ FeedWriter.prototype = { _mimeSvc : Cc["@mozilla.org/mime;1"]. getService(Ci.nsIMIMEService), - _getPropertyAsBag: function (container, property) { + _getPropertyAsBag: function(container, property) { return container.fields.getProperty(property). QueryInterface(Ci.nsIPropertyBag2); }, - _getPropertyAsString: function (container, property) { + _getPropertyAsString: function(container, property) { try { return container.fields.getPropertyAsAString(property); } @@ -163,7 +163,7 @@ FeedWriter.prototype = { return ""; }, - _setContentText: function (id, text) { + _setContentText: function(id, text) { this._contentSandbox.element = this._document.getElementById(id); this._contentSandbox.textNode = text.createDocumentFragment(this._contentSandbox.element); var codeStr = @@ -190,7 +190,7 @@ FeedWriter.prototype = { * The URI spec to set as the href */ _safeSetURIAttribute: - function (element, attribute, uri) { + function(element, attribute, uri) { var secman = Cc["@mozilla.org/scriptsecuritymanager;1"]. getService(Ci.nsIScriptSecurityManager); const flags = Ci.nsIScriptSecurityManager.DISALLOW_INHERIT_PRINCIPAL; @@ -243,7 +243,7 @@ FeedWriter.prototype = { * @param aElement * the XUL element to call doCommand() on. */ - _safeDoCommand: function (aElement) { + _safeDoCommand: function(aElement) { this._contentSandbox.element = aElement; Cu.evalInSandbox("element.doCommand();", this._contentSandbox); this._contentSandbox.element = null; @@ -268,16 +268,16 @@ FeedWriter.prototype = { return this.__bundle; }, - _getFormattedString: function (key, params) { + _getFormattedString: function(key, params) { return this._bundle.formatStringFromName(key, params, params.length); }, - _getString: function (key) { + _getString: function(key) { return this._bundle.GetStringFromName(key); }, /* Magic helper methods to be used instead of xbl properties */ - _getSelectedItemFromMenulist: function (aList) { + _getSelectedItemFromMenulist: function(aList) { var node = aList.firstChild.firstChild; while (node) { if (node.localName == "menuitem" && node.getAttribute("selected") == "true") @@ -289,7 +289,7 @@ FeedWriter.prototype = { return null; }, - _setCheckboxCheckedState: function (aCheckbox, aValue) { + _setCheckboxCheckedState: function(aCheckbox, aValue) { // see checkbox.xml, xbl bindings are not applied within the sandbox! this._contentSandbox.checkbox = aCheckbox; var codeStr; @@ -315,7 +315,7 @@ FeedWriter.prototype = { * @param dateString * A date as extracted from a feed entry. (entry.updated) */ - _parseDate: function (dateString) { + _parseDate: function(dateString) { // Convert the date into the user's local time zone dateObj = new Date(dateString); @@ -334,7 +334,7 @@ FeedWriter.prototype = { * Returns the feed type. */ __feedType: null, - _getFeedType: function () { + _getFeedType: function() { if (this.__feedType != null) return this.__feedType; @@ -352,7 +352,7 @@ FeedWriter.prototype = { /** * Maps a feed type to a maybe-feed mimetype. */ - _getMimeTypeForFeedType: function () { + _getMimeTypeForFeedType: function() { switch (this._getFeedType()) { case Ci.nsIFeed.TYPE_VIDEO: return TYPE_MAYBE_VIDEO_FEED; @@ -370,7 +370,7 @@ FeedWriter.prototype = { * @param container * The feed container */ - _setTitleText: function (container) { + _setTitleText: function(container) { if (container.title) { var title = container.title.plainText(); this._setContentText(TITLE_ID, container.title); @@ -390,7 +390,7 @@ FeedWriter.prototype = { * @param container * The feed container */ - _setTitleImage: function (container) { + _setTitleImage: function(container) { try { var parts = container.image; @@ -432,7 +432,7 @@ FeedWriter.prototype = { * @param container * The container of entries in the feed */ - _writeFeedContent: function (container) { + _writeFeedContent: function(container) { // Build the actual feed content var feed = container.QueryInterface(Ci.nsIFeed); if (feed.items.length == 0) @@ -532,7 +532,7 @@ FeedWriter.prototype = { * The URL string from which to create a display name * @returns a string */ - _getURLDisplayName: function (aURL) { + _getURLDisplayName: function(aURL) { var url = makeURI(aURL); url.QueryInterface(Ci.nsIURL); if (url == null || url.fileName.length == 0) @@ -548,7 +548,7 @@ FeedWriter.prototype = { * FeedEntry with enclosures * @returns element */ - _buildEnclosureDiv: function (entry) { + _buildEnclosureDiv: function(entry) { var enclosuresDiv = this._document.createElementNS(HTML_NS, "div"); enclosuresDiv.className = "enclosures"; @@ -628,7 +628,7 @@ FeedWriter.prototype = { * @returns A valid nsIFeedContainer object containing the contents of * the feed. */ - _getContainer: function (result) { + _getContainer: function(result) { var feedService = Cc["@mozilla.org/browser/feeds/result-service;1"]. getService(Ci.nsIFeedResultService); @@ -668,7 +668,7 @@ FeedWriter.prototype = { * A nsIFile to look up the name of * @returns The display name of the application represented by the file. */ - _getFileDisplayName: function (file) { + _getFileDisplayName: function(file) { #ifdef XP_WIN if (file instanceof Ci.nsILocalFileWin) { try { @@ -710,7 +710,7 @@ FeedWriter.prototype = { * Helper method to get an element in the XBL binding where the handler * selection UI lives */ - _getUIElement: function (id) { + _getUIElement: function(id) { return this._document.getAnonymousElementByAttribute( this._document.getElementById("feedSubscribeLine"), "anonid", id); }, @@ -720,7 +720,7 @@ FeedWriter.prototype = { * @param aCallback the callback method, passes in true if a feed reader was * selected, false otherwise. */ - _chooseClientApp: function (aCallback) { + _chooseClientApp: function(aCallback) { try { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { @@ -766,7 +766,7 @@ FeedWriter.prototype = { } }, - _setAlwaysUseCheckedState: function (feedType) { + _setAlwaysUseCheckedState: function(feedType) { var checkbox = this._getUIElement("alwaysUse"); if (checkbox) { var alwaysUse = false; @@ -781,7 +781,7 @@ FeedWriter.prototype = { } }, - _setSubscribeUsingLabel: function () { + _setSubscribeUsingLabel: function() { var stringLabel = "subscribeFeedUsing"; switch (this._getFeedType()) { case Ci.nsIFeed.TYPE_VIDEO: @@ -800,7 +800,7 @@ FeedWriter.prototype = { Cu.evalInSandbox(codeStr, this._contentSandbox); }, - _setAlwaysUseLabel: function () { + _setAlwaysUseLabel: function() { var checkbox = this._getUIElement("alwaysUse"); if (checkbox) { if (this._handlersMenuList) { @@ -864,7 +864,7 @@ FeedWriter.prototype = { } }, - _setSelectedHandler: function (feedType) { + _setSelectedHandler: function(feedType) { var prefs = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefBranch); @@ -927,7 +927,7 @@ FeedWriter.prototype = { } }, - _initSubscriptionUI: function () { + _initSubscriptionUI: function() { var handlersMenuPopup = this._getUIElement("handlersMenuPopup"); if (!handlersMenuPopup) return; @@ -1105,7 +1105,7 @@ FeedWriter.prototype = { * @param aWindow * The window of the document invoking the BrowserFeedWriter */ - _getOriginalURI: function (aWindow) { + _getOriginalURI: function(aWindow) { var chan = aWindow.QueryInterface(Ci.nsIInterfaceRequestor). getInterface(Ci.nsIWebNavigation). QueryInterface(Ci.nsIDocShell).currentDocumentChannel; @@ -1135,7 +1135,7 @@ FeedWriter.prototype = { _handlersMenuList: null, // BrowserFeedWriter WebIDL methods - init: function (aWindow) { + init: function(aWindow) { var window = aWindow; this._feedURI = this._getOriginalURI(window); if (!this._feedURI) @@ -1171,7 +1171,7 @@ FeedWriter.prototype = { prefs.addObserver(PREF_AUDIO_SELECTED_APP, this, false); }, - writeContent: function () { + writeContent: function() { if (!this._window) return; @@ -1190,7 +1190,7 @@ FeedWriter.prototype = { } }, - close: function () { + close: function() { this._getUIElement("handlersMenuPopup") .removeEventListener("command", this, false); this._getUIElement("subscribeButton") @@ -1220,7 +1220,7 @@ FeedWriter.prototype = { this.__contentSandbox = null; }, - _removeFeedFromCache: function () { + _removeFeedFromCache: function() { if (this._feedURI) { var feedService = Cc["@mozilla.org/browser/feeds/result-service;1"]. getService(Ci.nsIFeedResultService); @@ -1229,7 +1229,7 @@ FeedWriter.prototype = { } }, - subscribe: function () { + subscribe: function() { var feedType = this._getFeedType(); // Subscribe to the feed using the selected handler and save prefs @@ -1313,7 +1313,7 @@ FeedWriter.prototype = { }, // nsIObserver - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (!this._window) { // this._window is null unless this.init was called with a trusted // window object. @@ -1356,7 +1356,7 @@ FeedWriter.prototype = { * to the icon url. See Bug 358878 for details. */ _setFaviconForWebReader: - function (aReaderUrl, aMenuItem) { + function(aReaderUrl, aMenuItem) { var readerURI = makeURI(aReaderUrl); if (!/^https?$/.test(readerURI.scheme)) { // Don't try to get a favicon for non http(s) URIs. @@ -1374,7 +1374,7 @@ FeedWriter.prototype = { this._faviconService.setAndFetchFaviconForPage(readerURI, faviconURI, false, usePrivateBrowsing ? this._faviconService.FAVICON_LOAD_PRIVATE : this._faviconService.FAVICON_LOAD_NON_PRIVATE, - function (aURI, aDataLen, aData, aMimeType) { + function(aURI, aDataLen, aData, aMimeType) { if (aDataLen > 0) { var dataURL = "data:" + aMimeType + ";base64," + btoa(String.fromCharCode.apply(null, aData)); diff --git a/application/palemoon/components/feeds/WebContentConverter.js b/application/palemoon/components/feeds/WebContentConverter.js index 0ade021141..a6b144c654 100644 --- a/application/palemoon/components/feeds/WebContentConverter.js +++ b/application/palemoon/components/feeds/WebContentConverter.js @@ -73,19 +73,19 @@ const NS_ERROR_DOM_SYNTAX_ERR = NS_ERROR_MODULE_DOM + 12; function WebContentConverter() { } WebContentConverter.prototype = { - convert: function () { }, - asyncConvertData: function () { }, - onDataAvailable: function () { }, - onStopRequest: function () { }, + convert: function() { }, + asyncConvertData: function() { }, + onDataAvailable: function() { }, + onStopRequest: function() { }, - onStartRequest: function (request, context) { + onStartRequest: function(request, context) { var wccr = Cc[WCCR_CONTRACTID]. getService(Ci.nsIWebContentConverterService); wccr.loadPreferredHandler(request); }, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIStreamConverter) || iid.equals(Ci.nsIStreamListener) || iid.equals(Ci.nsISupports)) @@ -95,13 +95,13 @@ WebContentConverter.prototype = { }; var WebContentConverterFactory = { - createInstance: function (outer, iid) { + createInstance: function(outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return new WebContentConverter().QueryInterface(iid); }, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIFactory) || iid.equals(Ci.nsISupports)) return this; @@ -125,7 +125,7 @@ ServiceInfo.prototype = { /** * See nsIHandlerApp */ - equals: function (aHandlerApp) { + equals: function(aHandlerApp) { if (!aHandlerApp) throw Cr.NS_ERROR_NULL_POINTER; @@ -154,11 +154,11 @@ ServiceInfo.prototype = { /** * See nsIWebContentHandlerInfo */ - getHandlerURI: function (uri) { + getHandlerURI: function(uri) { return this._uri.replace(/%s/gi, encodeURIComponent(uri)); }, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Ci.nsIWebContentHandlerInfo) || iid.equals(Ci.nsISupports)) return this; @@ -180,11 +180,11 @@ WebContentConverterRegistrar.prototype = { return WebContentConverterRegistrar.prototype.stringBundle = sb; }, - _getFormattedString: function (key, params) { + _getFormattedString: function(key, params) { return this.stringBundle.formatStringFromName(key, params, params.length); }, - _getString: function (key) { + _getString: function(key) { return this.stringBundle.GetStringFromName(key); }, @@ -192,7 +192,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getAutoHandler: - function (contentType) { + function(contentType) { contentType = this._resolveContentType(contentType); if (contentType in this._autoHandleContentTypes) return this._autoHandleContentTypes[contentType]; @@ -203,7 +203,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ setAutoHandler: - function (contentType, handler) { + function(contentType, handler) { if (handler && !this._typeIsRegistered(contentType, handler.uri)) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -226,7 +226,7 @@ WebContentConverterRegistrar.prototype = { * Update the internal data structure (not persistent) */ _setAutoHandler: - function (contentType, handler) { + function(contentType, handler) { if (handler) this._autoHandleContentTypes[contentType] = handler; else if (contentType in this._autoHandleContentTypes) @@ -237,7 +237,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getWebContentHandlerByURI: - function (contentType, uri) { + function(contentType, uri) { var handlers = this.getContentHandlers(contentType, { }); for (var i = 0; i < handlers.length; ++i) { if (handlers[i].uri == uri) @@ -250,7 +250,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ loadPreferredHandler: - function (request) { + function(request) { var channel = request.QueryInterface(Ci.nsIChannel); var contentType = this._resolveContentType(channel.contentType); var handler = this.getAutoHandler(contentType); @@ -269,7 +269,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ removeProtocolHandler: - function (aProtocol, aURITemplate) { + function(aProtocol, aURITemplate) { var eps = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. getService(Ci.nsIExternalProtocolService); var handlerInfo = eps.getProtocolHandlerInfo(aProtocol); @@ -292,7 +292,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ removeContentHandler: - function (contentType, uri) { + function(contentType, uri) { function notURI(serviceInfo) { return serviceInfo.uri != uri; } @@ -326,7 +326,7 @@ WebContentConverterRegistrar.prototype = { * @returns The resolved contentType value. */ _resolveContentType: - function (contentType) { + function(contentType) { if (contentType in this._mappings) return this._mappings[contentType]; return contentType; @@ -339,7 +339,7 @@ WebContentConverterRegistrar.prototype = { }, _checkAndGetURI: - function (aURIString, aContentWindow) + function(aURIString, aContentWindow) { try { let baseURI = aContentWindow.document.baseURIObject; @@ -382,7 +382,7 @@ WebContentConverterRegistrar.prototype = { * @return true if it is already registered, false otherwise. */ _protocolHandlerRegistered: - function (aProtocol, aURITemplate) { + function(aProtocol, aURITemplate) { var eps = Cc["@mozilla.org/uriloader/external-protocol-service;1"]. getService(Ci.nsIExternalProtocolService); var handlerInfo = eps.getProtocolHandlerInfo(aProtocol); @@ -401,7 +401,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentHandlerRegistrar */ registerProtocolHandler: - function (aProtocol, aURIString, aTitle, aContentWindow) { + function(aProtocol, aURIString, aTitle, aContentWindow) { LOG("registerProtocolHandler(" + aProtocol + "," + aURIString + "," + aTitle + ")"); var uri = this._checkAndGetURI(aURIString, aContentWindow); @@ -455,7 +455,7 @@ WebContentConverterRegistrar.prototype = { protocolInfo: { protocol: aProtocol, uri: uri.spec, name: aTitle }, callback: - function (aNotification, aButtonInfo) { + function(aNotification, aButtonInfo) { var protocol = aButtonInfo.protocolInfo.protocol; var uri = aButtonInfo.protocolInfo.uri; var name = aButtonInfo.protocolInfo.name; @@ -496,7 +496,7 @@ WebContentConverterRegistrar.prototype = { * prompt the user to confirm the registration. */ registerContentHandler: - function (aContentType, aURIString, aTitle, aContentWindow) { + function(aContentType, aURIString, aTitle, aContentWindow) { LOG("registerContentHandler(" + aContentType + "," + aURIString + "," + aTitle + ")"); // Check against the type blacklist. @@ -526,7 +526,7 @@ WebContentConverterRegistrar.prototype = { * Returns the browser chrome window in which the content window is in */ _getBrowserWindowForContentWindow: - function (aContentWindow) { + function(aContentWindow) { return aContentWindow.QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIWebNavigation) .QueryInterface(Ci.nsIDocShellTreeItem) @@ -547,7 +547,7 @@ WebContentConverterRegistrar.prototype = { * (i.e. the content window of a frame/iframe). */ _getBrowserForContentWindow: - function (aBrowserWindow, aContentWindow) { + function(aBrowserWindow, aContentWindow) { // This depends on pseudo APIs of browser.js and tabbrowser.xml aContentWindow = aContentWindow.top; var browsers = aBrowserWindow.gBrowser.browsers; @@ -579,7 +579,7 @@ WebContentConverterRegistrar.prototype = { * @return true if a notification has been appended, false otherwise. */ _appendFeedReaderNotification: - function (aURI, aName, aNotificationBox) { + function(aURI, aName, aNotificationBox) { var uriSpec = aURI.spec; var notificationValue = "feed reader notification: " + uriSpec; var notificationIcon = aURI.prePath + "/favicon.ico"; @@ -603,7 +603,7 @@ WebContentConverterRegistrar.prototype = { /* static */ callback: - function (aNotification, aButtonInfo) { + function(aNotification, aButtonInfo) { var uri = aButtonInfo.feedReaderInfo.uri; var name = aButtonInfo.feedReaderInfo.name; var outer = aButtonInfo._outer; @@ -645,7 +645,7 @@ WebContentConverterRegistrar.prototype = { * browser.contentHandlers.title0 = Foo 2.0alphr */ _saveContentHandlerToPrefs: - function (contentType, uri, title) { + function(contentType, uri, title) { var ps = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefService); @@ -685,7 +685,7 @@ WebContentConverterRegistrar.prototype = { * @param uri * The uri of the */ - _typeIsRegistered: function (contentType, uri) { + _typeIsRegistered: function(contentType, uri) { if (!(contentType in this._contentTypes)) return false; @@ -705,7 +705,7 @@ WebContentConverterRegistrar.prototype = { * @returns A contract id to construct a converter to convert between the * contentType and *\/*. */ - _getConverterContractID: function (contentType) { + _getConverterContractID: function(contentType) { const template = "@mozilla.org/streamconv;1?from=%s&to=*/*"; return template.replace(/%s/, contentType); }, @@ -721,7 +721,7 @@ WebContentConverterRegistrar.prototype = { * the human readable name of the web service */ _registerContentHandler: - function (contentType, uri, title) { + function(contentType, uri, title) { this._updateContentTypeHandlerMap(contentType, uri, title); this._saveContentHandlerToPrefs(contentType, uri, title); @@ -754,7 +754,7 @@ WebContentConverterRegistrar.prototype = { * The human readable name of the web service */ _updateContentTypeHandlerMap: - function (contentType, uri, title) { + function(contentType, uri, title) { if (!(contentType in this._contentTypes)) this._contentTypes[contentType] = []; @@ -776,7 +776,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ getContentHandlers: - function (contentType, countRef) { + function(contentType, countRef) { countRef.value = 0; if (!(contentType in this._contentTypes)) return []; @@ -790,7 +790,7 @@ WebContentConverterRegistrar.prototype = { * See nsIWebContentConverterService */ resetHandlersForType: - function (contentType) { + function(contentType) { // currently unused within the tree, so only useful for extensions; previous // impl. was buggy (and even infinite-looped!), so I argue that this is a // definite improvement @@ -833,7 +833,7 @@ WebContentConverterRegistrar.prototype = { * Load the auto handler, content handler and protocol tables from * preferences. */ - _init: function () { + _init: function() { var ps = Cc["@mozilla.org/preferences-service;1"]. getService(Ci.nsIPrefService); @@ -883,7 +883,7 @@ WebContentConverterRegistrar.prototype = { /** * See nsIObserver */ - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { var os = Cc["@mozilla.org/observer-service;1"]. getService(Ci.nsIObserverService); @@ -901,7 +901,7 @@ WebContentConverterRegistrar.prototype = { /** * See nsIFactory */ - createInstance: function (outer, iid) { + createInstance: function(outer, iid) { if (outer != null) throw Cr.NS_ERROR_NO_AGGREGATION; return this.QueryInterface(iid); diff --git a/application/palemoon/components/feeds/content/subscribe.js b/application/palemoon/components/feeds/content/subscribe.js index 7cf7a9e198..c06e7b19ab 100644 --- a/application/palemoon/components/feeds/content/subscribe.js +++ b/application/palemoon/components/feeds/content/subscribe.js @@ -9,15 +9,15 @@ var SubscribeHandler = { */ _feedWriter: null, - init: function () { + init: function() { this._feedWriter = new BrowserFeedWriter(); }, - writeContent: function () { + writeContent: function() { this._feedWriter.writeContent(); }, - uninit: function () { + uninit: function() { this._feedWriter.close(); } }; diff --git a/application/palemoon/components/fuel/fuelApplication.js b/application/palemoon/components/fuel/fuelApplication.js index be0b23667d..4b9550d4a9 100644 --- a/application/palemoon/components/fuel/fuelApplication.js +++ b/application/palemoon/components/fuel/fuelApplication.js @@ -49,14 +49,14 @@ var Utilities = { return this.windowMediator; }, - makeURI: function (aSpec) { + makeURI: function(aSpec) { if (!aSpec) return null; var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService); return ios.newURI(aSpec, null, null); }, - free: function () { + free: function() { delete this.bookmarks; delete this.bookmarksObserver; delete this.annotations; @@ -103,12 +103,12 @@ Window.prototype = { * Helper used to setup event handlers on the XBL element. Note that the events * are actually dispatched to tabs, so we capture them. */ - _watch: function (aType) { + _watch: function(aType) { this._tabbrowser.tabContainer.addEventListener(aType, this, /* useCapture = */ true); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { this._events.dispatch(aEvent.type, getBrowserTab(this, aEvent.originalTarget.linkedBrowser)); }, @@ -124,7 +124,7 @@ Window.prototype = { return getBrowserTab(this, this._tabbrowser.selectedBrowser); }, - open: function (aURI) { + open: function(aURI) { return getBrowserTab(this, this._tabbrowser.addTab(aURI.spec).linkedBrowser); }, @@ -192,12 +192,12 @@ BrowserTab.prototype = { /* * Helper used to setup event handlers on the XBL element */ - _watch: function (aType) { + _watch: function(aType) { this._browser.addEventListener(aType, this, /* useCapture = */ true); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { if (aEvent.type == "load") { if (!(aEvent.originalTarget instanceof Ci.nsIDOMDocument)) return; @@ -211,29 +211,29 @@ BrowserTab.prototype = { /* * Helper used to determine the index offset of the browsertab */ - _getTab: function () { + _getTab: function() { var tabs = this._tabbrowser.tabs; return tabs[this.index] || null; }, - load: function (aURI) { + load: function(aURI) { this._browser.loadURI(aURI.spec, null, null); }, - focus: function () { + focus: function() { this._tabbrowser.selectedTab = this._getTab(); this._tabbrowser.focus(); }, - close: function () { + close: function() { this._tabbrowser.removeTab(this._getTab()); }, - moveBefore: function (aBefore) { + moveBefore: function(aBefore) { this._tabbrowser.moveTabTo(this._getTab(), aBefore.index); }, - moveToEnd: function () { + moveToEnd: function() { this._tabbrowser.moveTabTo(this._getTab(), this._tabbrowser.browsers.length); }, @@ -252,21 +252,21 @@ Annotations.prototype = { return Utilities.annotations.getItemAnnotationNames(this._id); }, - has: function (aName) { + has: function(aName) { return Utilities.annotations.itemHasAnnotation(this._id, aName); }, - get: function (aName) { + get: function(aName) { if (this.has(aName)) return Utilities.annotations.getItemAnnotation(this._id, aName); return null; }, - set: function (aName, aValue, aExpiration) { + set: function(aName, aValue, aExpiration) { Utilities.annotations.setItemAnnotation(this._id, aName, aValue, 0, aExpiration); }, - remove: function (aName) { + remove: function(aName) { if (aName) Utilities.annotations.removeItemAnnotation(this._id, aName); }, @@ -304,37 +304,37 @@ function BookmarksObserver() { } BookmarksObserver.prototype = { - onBeginUpdateBatch: function () {}, - onEndUpdateBatch: function () {}, - onItemVisited: function () {}, + onBeginUpdateBatch: function() {}, + onEndUpdateBatch: function() {}, + onItemVisited: function() {}, - onItemAdded: function (aId, aFolder, aIndex, aItemType, aURI) { + onItemAdded: function(aId, aFolder, aIndex, aItemType, aURI) { this._rootEvents.dispatch("add", aId); this._dispatchToEvents("addchild", aId, this._folderEventsDict[aFolder]); }, - onItemRemoved: function (aId, aFolder, aIndex) { + onItemRemoved: function(aId, aFolder, aIndex) { this._rootEvents.dispatch("remove", aId); this._dispatchToEvents("remove", aId, this._eventsDict[aId]); this._dispatchToEvents("removechild", aId, this._folderEventsDict[aFolder]); }, - onItemChanged: function (aId, aProperty, aIsAnnotationProperty, aValue) { + onItemChanged: function(aId, aProperty, aIsAnnotationProperty, aValue) { this._rootEvents.dispatch("change", aProperty); this._dispatchToEvents("change", aProperty, this._eventsDict[aId]); }, - onItemMoved: function (aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { + onItemMoved: function(aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { this._dispatchToEvents("move", aId, this._eventsDict[aId]); }, - _dispatchToEvents: function (aEvent, aData, aEvents) { + _dispatchToEvents: function(aEvent, aData, aEvents) { if (aEvents) { aEvents.dispatch(aEvent, aData); } }, - _addListenerToDict: function (aId, aEvent, aListener, aDict) { + _addListenerToDict: function(aId, aEvent, aListener, aDict) { var events = aDict[aId]; if (!events) { events = new Events(); @@ -343,7 +343,7 @@ BookmarksObserver.prototype = { events.addListener(aEvent, aListener); }, - _removeListenerFromDict: function (aId, aEvent, aListener, aDict) { + _removeListenerFromDict: function(aId, aEvent, aListener, aDict) { var events = aDict[aId]; if (!events) { return; @@ -354,27 +354,27 @@ BookmarksObserver.prototype = { } }, - addListener: function (aId, aEvent, aListener) { + addListener: function(aId, aEvent, aListener) { this._addListenerToDict(aId, aEvent, aListener, this._eventsDict); }, - removeListener: function (aId, aEvent, aListener) { + removeListener: function(aId, aEvent, aListener) { this._removeListenerFromDict(aId, aEvent, aListener, this._eventsDict); }, - addFolderListener: function (aId, aEvent, aListener) { + addFolderListener: function(aId, aEvent, aListener) { this._addListenerToDict(aId, aEvent, aListener, this._folderEventsDict); }, - removeFolderListener: function (aId, aEvent, aListener) { + removeFolderListener: function(aId, aEvent, aListener) { this._removeListenerFromDict(aId, aEvent, aListener, this._folderEventsDict); }, - addRootListener: function (aEvent, aListener) { + addRootListener: function(aEvent, aListener) { this._rootEvents.addListener(aEvent, aListener); }, - removeRootListener: function (aEvent, aListener) { + removeRootListener: function(aEvent, aListener) { this._rootEvents.removeListener(aEvent, aListener); }, @@ -408,10 +408,10 @@ function Bookmark(aId, aParent, aType) { // Our _events object forwards to bookmarksObserver. var self = this; this._events = { - addListener: function (aEvent, aListener) { + addListener: function(aEvent, aListener) { Utilities.bookmarksObserver.addListener(self._id, aEvent, aListener); }, - removeListener: function (aEvent, aListener) { + removeListener: function(aEvent, aListener) { Utilities.bookmarksObserver.removeListener(self._id, aEvent, aListener); }, QueryInterface: XPCOMUtils.generateQI([Ci.extIEvents]) @@ -479,16 +479,16 @@ Bookmark.prototype = { return this._events; }, - remove : function () { + remove : function() { Utilities.bookmarks.removeItem(this._id); }, - onBeginUpdateBatch: function () {}, - onEndUpdateBatch: function () {}, - onItemAdded: function () {}, - onItemVisited: function () {}, - onItemRemoved: function () {}, - onItemChanged: function () {}, + onBeginUpdateBatch: function() {}, + onEndUpdateBatch: function() {}, + onItemAdded: function() {}, + onItemVisited: function() {}, + onItemRemoved: function() {}, + onItemChanged: function() {}, onItemMoved: function(aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { if (aId == this._id) { @@ -528,7 +528,7 @@ function BookmarkFolder(aId, aParent) { var self = this; this._events = { - addListener: function (aEvent, aListener) { + addListener: function(aEvent, aListener) { if (self._parent) { if (/child$/.test(aEvent)) { Utilities.bookmarksObserver.addFolderListener(self._id, aEvent, aListener); @@ -541,7 +541,7 @@ function BookmarkFolder(aId, aParent) { Utilities.bookmarksObserver.addRootListener(aEvent, aListener); } }, - removeListener: function (aEvent, aListener) { + removeListener: function(aEvent, aListener) { if (self._parent) { if (/child$/.test(aEvent)) { Utilities.bookmarksObserver.removeFolderListener(self._id, aEvent, aListener); @@ -633,36 +633,36 @@ BookmarkFolder.prototype = { return items; }, - addBookmark: function (aTitle, aUri) { + addBookmark: function(aTitle, aUri) { var newBookmarkID = Utilities.bookmarks.insertBookmark(this._id, aUri, Utilities.bookmarks.DEFAULT_INDEX, aTitle); var newBookmark = new Bookmark(newBookmarkID, this, "bookmark"); return newBookmark; }, - addSeparator: function () { + addSeparator: function() { var newBookmarkID = Utilities.bookmarks.insertSeparator(this._id, Utilities.bookmarks.DEFAULT_INDEX); var newBookmark = new Bookmark(newBookmarkID, this, "separator"); return newBookmark; }, - addFolder: function (aTitle) { + addFolder: function(aTitle) { var newFolderID = Utilities.bookmarks.createFolder(this._id, aTitle, Utilities.bookmarks.DEFAULT_INDEX); var newFolder = new BookmarkFolder(newFolderID, this); return newFolder; }, - remove: function () { + remove: function() { Utilities.bookmarks.removeItem(this._id); }, // observer - onBeginUpdateBatch: function () {}, - onEndUpdateBatch : function () {}, - onItemAdded : function () {}, - onItemRemoved : function () {}, - onItemChanged : function () {}, + onBeginUpdateBatch: function() {}, + onEndUpdateBatch : function() {}, + onItemAdded : function() {}, + onItemRemoved : function() {}, + onItemChanged : function() {}, - onItemMoved: function (aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { + onItemMoved: function(aId, aOldParent, aOldIndex, aNewParent, aNewIndex) { if (this._id == aId) { this._parent = new BookmarkFolder(aNewParent, Utilities.bookmarks.getFolderIdForItem(aNewParent)); } @@ -718,7 +718,7 @@ BookmarkRoots.prototype = { // See bug 386535. var gSingleton = null; var ApplicationFactory = { - createInstance: function (aOuter, aIID) { + createInstance: function(aOuter, aIID) { if (aOuter != null) throw Components.results.NS_ERROR_NO_AGGREGATION; @@ -771,7 +771,7 @@ function ApplicationPrototype() { }); // for nsIObserver - this.observe = function (aSubject, aTopic, aData) { + this.observe = function(aSubject, aTopic, aData) { // Call the extApplication version of this function first var superPrototype = Object.getPrototypeOf(Object.getPrototypeOf(this)); superPrototype.observe.call(this, aSubject, aTopic, aData); diff --git a/application/palemoon/components/newtab/cells.js b/application/palemoon/components/newtab/cells.js index 7319175154..cc1b8ee75d 100644 --- a/application/palemoon/components/newtab/cells.js +++ b/application/palemoon/components/newtab/cells.js @@ -15,7 +15,7 @@ function Cell(aGrid, aNode) { this._node._newtabCell = this; // Register drag-and-drop event handlers. - ["dragenter", "dragover", "dragexit", "drop"].forEach(function (aType) { + ["dragenter", "dragover", "dragexit", "drop"].forEach(function(aType) { this._node.addEventListener(aType, this, false); }, this); } @@ -81,7 +81,7 @@ Cell.prototype = { * Checks whether the cell contains a pinned site. * @return Whether the cell contains a pinned site. */ - containsPinnedSite: function () { + containsPinnedSite: function() { let site = this.site; return site && site.isPinned(); }, @@ -90,14 +90,14 @@ Cell.prototype = { * Checks whether the cell contains a site (is empty). * @return Whether the cell is empty. */ - isEmpty: function () { + isEmpty: function() { return !this.site; }, /** * Handles all cell events. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { // We're not responding to external drag/drop events // when our parent window is in private browsing mode. if (inPrivateBrowsingMode() && !gDrag.draggedSite) diff --git a/application/palemoon/components/newtab/drag.js b/application/palemoon/components/newtab/drag.js index ac4f09abfc..566e3755f8 100644 --- a/application/palemoon/components/newtab/drag.js +++ b/application/palemoon/components/newtab/drag.js @@ -33,7 +33,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragstart' event. */ - start: function (aSite, aEvent) { + start: function(aSite, aEvent) { this._draggedSite = aSite; // Mark nodes as being dragged. @@ -66,7 +66,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'drag' event. */ - drag: function (aSite, aEvent) { + drag: function(aSite, aEvent) { // Get the viewport size. let {clientWidth, clientHeight} = document.documentElement; @@ -90,7 +90,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragend' event. */ - end: function (aSite, aEvent) { + end: function(aSite, aEvent) { let nodes = gGrid.node.querySelectorAll("[dragged]") for (let i = 0; i < nodes.length; i++) nodes[i].removeAttribute("dragged"); @@ -106,7 +106,7 @@ var gDrag = { * @param aEvent The drag event to check. * @return Whether we should handle this drag and drop operation. */ - isValid: function (aEvent) { + isValid: function(aEvent) { let link = gDragDataHelper.getLinkFromDragEvent(aEvent); // Check that the drag data is non-empty. @@ -125,7 +125,7 @@ var gDrag = { * @param aSite The site that's being dragged. * @param aEvent The 'dragstart' event. */ - _setDragData: function (aSite, aEvent) { + _setDragData: function(aSite, aEvent) { let {url, title} = aSite; let dt = aEvent.dataTransfer; diff --git a/application/palemoon/components/newtab/dragDataHelper.js b/application/palemoon/components/newtab/dragDataHelper.js index c8a70f76da..e92b9bb1c8 100644 --- a/application/palemoon/components/newtab/dragDataHelper.js +++ b/application/palemoon/components/newtab/dragDataHelper.js @@ -9,7 +9,7 @@ var gDragDataHelper = { return "text/x-moz-url"; }, - getLinkFromDragEvent: function (aEvent) { + getLinkFromDragEvent: function(aEvent) { let dt = aEvent.dataTransfer; if (!dt || !dt.types.includes(this.mimeType)) { return null; diff --git a/application/palemoon/components/newtab/drop.js b/application/palemoon/components/newtab/drop.js index d9601866b6..fe402a29bf 100644 --- a/application/palemoon/components/newtab/drop.js +++ b/application/palemoon/components/newtab/drop.js @@ -21,7 +21,7 @@ var gDrop = { * Handles the 'dragenter' event. * @param aCell The drop target cell. */ - enter: function (aCell) { + enter: function(aCell) { this._delayedRearrange(aCell); }, @@ -30,7 +30,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - exit: function (aCell, aEvent) { + exit: function(aCell, aEvent) { if (aEvent.dataTransfer && !aEvent.dataTransfer.mozUserCancelled) { this._delayedRearrange(); } else { @@ -45,7 +45,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - drop: function (aCell, aEvent) { + drop: function(aCell, aEvent) { // The cell that is the drop target could contain a pinned site. We need // to find out where that site has gone and re-pin it there. if (aCell.containsPinnedSite()) @@ -64,11 +64,11 @@ var gDrop = { * Re-pins all pinned sites in their (new) positions. * @param aCell The drop target cell. */ - _repinSitesAfterDrop: function (aCell) { + _repinSitesAfterDrop: function(aCell) { let sites = gDropPreview.rearrange(aCell); // Filter out pinned sites. - let pinnedSites = sites.filter(function (aSite) { + let pinnedSites = sites.filter(function(aSite) { return aSite && aSite.isPinned(); }); @@ -81,7 +81,7 @@ var gDrop = { * @param aCell The drop target cell. * @param aEvent The 'dragexit' event. */ - _pinDraggedSite: function (aCell, aEvent) { + _pinDraggedSite: function(aCell, aEvent) { let index = aCell.index; let draggedSite = gDrag.draggedSite; @@ -105,7 +105,7 @@ var gDrop = { * Time a rearrange with a little delay. * @param aCell The drop target cell. */ - _delayedRearrange: function (aCell) { + _delayedRearrange: function(aCell) { // The last drop target didn't change so there's no need to re-arrange. if (this._lastDropTarget == aCell) return; @@ -127,7 +127,7 @@ var gDrop = { /** * Cancels a timed rearrange, if any. */ - _cancelDelayedArrange: function () { + _cancelDelayedArrange: function() { if (this._rearrangeTimeout) { clearTimeout(this._rearrangeTimeout); this._rearrangeTimeout = null; @@ -138,7 +138,7 @@ var gDrop = { * Rearrange all sites in the grid depending on the current drop target. * @param aCell The drop target cell. */ - _rearrange: function (aCell) { + _rearrange: function(aCell) { let sites = gGrid.sites; // We need to rearrange the grid only if there's a current drop target. diff --git a/application/palemoon/components/newtab/dropPreview.js b/application/palemoon/components/newtab/dropPreview.js index 9baa9410db..219b84c89f 100644 --- a/application/palemoon/components/newtab/dropPreview.js +++ b/application/palemoon/components/newtab/dropPreview.js @@ -16,7 +16,7 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The re-arranged array of sites. */ - rearrange: function (aCell) { + rearrange: function(aCell) { let sites = gGrid.sites; // Insert the dragged site into the current grid. @@ -34,7 +34,7 @@ var gDropPreview = { * @param aSites The array of sites to insert into. * @param aCell The drop target cell. */ - _insertDraggedSite: function (aSites, aCell) { + _insertDraggedSite: function(aSites, aCell) { let dropIndex = aCell.index; let draggedSite = gDrag.draggedSite; @@ -61,13 +61,13 @@ var gDropPreview = { * @param aCell The drop target cell. */ _repositionPinnedSites: - function (aSites, aCell) { + function(aSites, aCell) { // Collect all pinned sites. let pinnedSites = this._filterPinnedSites(aSites, aCell); // Correct pinned site positions. - pinnedSites.forEach(function (aSite) { + pinnedSites.forEach(function(aSite) { aSites[aSites.indexOf(aSite)] = aSites[aSite.cell.index]; aSites[aSite.cell.index] = aSite; }, this); @@ -85,14 +85,14 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The filtered array of sites. */ - _filterPinnedSites: function (aSites, aCell) { + _filterPinnedSites: function(aSites, aCell) { let draggedSite = gDrag.draggedSite; // When dropping on a cell that contains a pinned site make sure that all // pinned cells surrounding the drop target are moved as well. let range = this._getPinnedRange(aCell); - return aSites.filter(function (aSite, aIndex) { + return aSites.filter(function(aSite, aIndex) { // The site must be valid, pinned and not the dragged site. if (!aSite || aSite == draggedSite || !aSite.isPinned()) return false; @@ -109,7 +109,7 @@ var gDropPreview = { * @param aCell The drop target cell. * @return The range of pinned cells. */ - _getPinnedRange: function (aCell) { + _getPinnedRange: function(aCell) { let dropIndex = aCell.index; let range = {start: dropIndex, end: dropIndex}; @@ -139,7 +139,7 @@ var gDropPreview = { * @return Whether there is an overflowed pinned cell. */ _hasOverflowedPinnedSite: - function (aSites, aCell) { + function(aSites, aCell) { // If the drop target isn't pinned there's no way a pinned site has been // pushed out of the grid so we can just exit here. @@ -166,7 +166,7 @@ var gDropPreview = { * @param aCell The drop target cell. */ _repositionOverflowedPinnedSite: - function (aSites, aCell) { + function(aSites, aCell) { // Try to find a lower-priority cell (empty or containing an unpinned site). let index = this._indexOfLowerPrioritySite(aSites, aCell); @@ -197,7 +197,7 @@ var gDropPreview = { * @return The cell's index. */ _indexOfLowerPrioritySite: - function (aSites, aCell) { + function(aSites, aCell) { let cells = gGrid.cells; let dropIndex = aCell.index; diff --git a/application/palemoon/components/newtab/dropTargetShim.js b/application/palemoon/components/newtab/dropTargetShim.js index d3998cd16b..698a9e33e1 100644 --- a/application/palemoon/components/newtab/dropTargetShim.js +++ b/application/palemoon/components/newtab/dropTargetShim.js @@ -23,14 +23,14 @@ var gDropTargetShim = { /** * Initializes the drop target shim. */ - init: function () { + init: function() { gGrid.node.addEventListener("dragstart", this, true); }, /** * Add all event listeners needed during a drag operation. */ - _addEventListeners: function () { + _addEventListeners: function() { gGrid.node.addEventListener("dragend", this); let docElement = document.documentElement; @@ -42,7 +42,7 @@ var gDropTargetShim = { /** * Remove all event listeners that were needed during a drag operation. */ - _removeEventListeners: function () { + _removeEventListeners: function() { gGrid.node.removeEventListener("dragend", this); let docElement = document.documentElement; @@ -54,7 +54,7 @@ var gDropTargetShim = { /** * Handles all shim events. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "dragstart": this._dragstart(aEvent); @@ -78,7 +78,7 @@ var gDropTargetShim = { * Handles the 'dragstart' event. * @param aEvent The 'dragstart' event. */ - _dragstart: function (aEvent) { + _dragstart: function(aEvent) { if (aEvent.target.classList.contains("newtab-link")) { gGrid.lock(); this._addEventListeners(); @@ -89,7 +89,7 @@ var gDropTargetShim = { * Handles the 'dragover' event. * @param aEvent The 'dragover' event. */ - _dragover: function (aEvent) { + _dragover: function(aEvent) { // XXX bug 505521 - Use the dragover event to retrieve the // current mouse coordinates while dragging. let sourceNode = aEvent.dataTransfer.mozSourceNode.parentNode; @@ -109,7 +109,7 @@ var gDropTargetShim = { * Handles the 'drop' event. * @param aEvent The 'drop' event. */ - _drop: function (aEvent) { + _drop: function(aEvent) { // We're accepting all drops. aEvent.preventDefault(); @@ -129,7 +129,7 @@ var gDropTargetShim = { * Handles the 'dragend' event. * @param aEvent The 'dragend' event. */ - _dragend: function (aEvent) { + _dragend: function(aEvent) { if (this._lastDropTarget) { if (aEvent.dataTransfer.mozUserCancelled || !this._dropSeen) { // The drag operation was cancelled or no drop event was generated @@ -152,7 +152,7 @@ var gDropTargetShim = { * appropriate dragenter, dragexit, and dragleave events. * @param aEvent The current drag event. */ - _updateDropTarget: function (aEvent) { + _updateDropTarget: function(aEvent) { // Let's see if we find a drop target. let target = this._findDropTarget(aEvent); @@ -178,7 +178,7 @@ var gDropTargetShim = { * against all cells in the grid. * @return The currently hovered drop target or null. */ - _findDropTarget: function () { + _findDropTarget: function() { // These are the minimum intersection values - we want to use the cell if // the site is >= 50% hovering its position. let minWidth = gDrag.cellWidth / 2; @@ -204,11 +204,11 @@ var gDropTargetShim = { * Gets the positions of all cell nodes. * @return The (cached) cell positions. */ - _getCellPositions: function () { + _getCellPositions: function() { if (this._cellPositions) return this._cellPositions; - return this._cellPositions = gGrid.cells.map(function (cell) { + return this._cellPositions = gGrid.cells.map(function(cell) { return {cell: cell, rect: gTransformation.getNodePosition(cell.node)}; }); }, @@ -219,7 +219,7 @@ var gDropTargetShim = { * @param aType The event type. * @param aTarget The target node that receives the event. */ - _dispatchEvent: function (aEvent, aType, aTarget) { + _dispatchEvent: function(aEvent, aType, aTarget) { let node = aTarget.node; let event = document.createEvent("DragEvent"); diff --git a/application/palemoon/components/newtab/grid.js b/application/palemoon/components/newtab/grid.js index fcb466d8aa..118159f9c0 100644 --- a/application/palemoon/components/newtab/grid.js +++ b/application/palemoon/components/newtab/grid.js @@ -48,7 +48,7 @@ var gGrid = { * Initializes the grid. * @param aSelector The query selector of the grid. */ - init: function () { + init: function() { this._node = document.getElementById("newtab-grid"); this._gridDefaultContent = this._node.lastChild; this._createSiteFragment(); @@ -65,7 +65,7 @@ var gGrid = { * @param aCell The cell that will contain the new site. * @return The newly created site. */ - createSite: function (aLink, aCell) { + createSite: function(aLink, aCell) { let node = aCell.node; node.appendChild(this._siteFragment.cloneNode(true)); return new Site(node.firstElementChild, aLink); @@ -74,21 +74,21 @@ var gGrid = { /** * Handles all grid events. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { // Any specific events should go here. }, /** * Locks the grid to block all pointer events. */ - lock: function () { + lock: function() { this.node.setAttribute("locked", "true"); }, /** * Unlocks the grid to allow all pointer events. */ - unlock: function () { + unlock: function() { this.node.removeAttribute("locked"); }, @@ -142,7 +142,7 @@ var gGrid = { /** * Creates the DOM fragment that is re-used when creating sites. */ - _createSiteFragment: function () { + _createSiteFragment: function() { let site = document.createElementNS(HTML_NAMESPACE, "div"); site.classList.add("newtab-site"); site.setAttribute("draggable", "true"); @@ -167,7 +167,7 @@ var gGrid = { * Test a tile at a given position for being pinned or history * @param position Position in sites array */ - _isHistoricalTile: function (aPos) { + _isHistoricalTile: function(aPos) { let site = this.sites[aPos]; return site && (site.isPinned() || site.link && site.link.type == "history"); } diff --git a/application/palemoon/components/newtab/page.js b/application/palemoon/components/newtab/page.js index fe9fd34556..04a5dd377a 100644 --- a/application/palemoon/components/newtab/page.js +++ b/application/palemoon/components/newtab/page.js @@ -15,7 +15,7 @@ var gPage = { /** * Initializes the page. */ - init: function () { + init: function() { // Add ourselves to the list of pages to receive notifications. gAllPages.register(this); @@ -42,7 +42,7 @@ var gPage = { /** * Listens for notifications specific to this page. */ - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { if (aTopic == "nsPref:changed") { let enabled = gAllPages.enabled; this._updateAttributes(enabled); @@ -102,7 +102,7 @@ var gPage = { * Internally initializes the page. This runs only when/if the feature * is/gets enabled. */ - _init: function () { + _init: function() { if (this._initialized) return; @@ -136,7 +136,7 @@ var gPage = { * Updates the 'page-disabled' attributes of the respective DOM nodes. * @param aValue Whether the New Tab Page is enabled or not. */ - _updateAttributes: function (aValue) { + _updateAttributes: function(aValue) { // Set the nodes' states. let nodeSelector = "#newtab-grid, #searchContainer"; for (let node of document.querySelectorAll(nodeSelector)) { @@ -159,14 +159,14 @@ var gPage = { /** * Handles unload event */ - _handleUnloadEvent: function () { + _handleUnloadEvent: function() { gAllPages.unregister(this); }, /** * Handles all page events. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "load": this.onPageVisibleAndLoaded(); @@ -211,7 +211,7 @@ var gPage = { } }, - onPageFirstVisible: function () { + onPageFirstVisible: function() { // Record another page impression. Services.telemetry.getHistogramById("NEWTAB_PAGE_SHOWN").add(true); diff --git a/application/palemoon/components/newtab/sites.js b/application/palemoon/components/newtab/sites.js index c2ea001972..1bba1649b4 100644 --- a/application/palemoon/components/newtab/sites.js +++ b/application/palemoon/components/newtab/sites.js @@ -55,7 +55,7 @@ Site.prototype = { * @param aIndex The pinned index (optional). * @return true if link changed type after pin */ - pin: function (aIndex) { + pin: function(aIndex) { if (typeof aIndex == "undefined") aIndex = this.cell.index; @@ -71,7 +71,7 @@ Site.prototype = { /** * Unpins the site and calls the given callback when done. */ - unpin: function () { + unpin: function() { if (this.isPinned()) { this._updateAttributes(false); gPinnedLinks.unpin(this._link); @@ -83,7 +83,7 @@ Site.prototype = { * Checks whether this site is pinned. * @return Whether this site is pinned. */ - isPinned: function () { + isPinned: function() { return gPinnedLinks.isPinned(this._link); }, @@ -91,7 +91,7 @@ Site.prototype = { * Blocks the site (removes it from the grid) and calls the given callback * when done. */ - block: function () { + block: function() { if (!gBlockedLinks.isBlocked(this._link)) { gUndoDialog.show(this); gBlockedLinks.block(this._link); @@ -104,7 +104,7 @@ Site.prototype = { * @param aSelector The query selector. * @return The DOM node we found. */ - _querySelector: function (aSelector) { + _querySelector: function(aSelector) { return this.node.querySelector(aSelector); }, @@ -113,7 +113,7 @@ Site.prototype = { * pinned or unpinned. * @param aPinned Whether this site is now pinned or unpinned. */ - _updateAttributes: function (aPinned) { + _updateAttributes: function(aPinned) { let control = this._querySelector(".newtab-control-pin"); if (aPinned) { @@ -139,7 +139,7 @@ Site.prototype = { /** * Checks for and modifies link at campaign end time */ - _checkLinkEndTime: function () { + _checkLinkEndTime: function() { if (this.link.endTime && this.link.endTime < Date.now()) { let oldUrl = this.url; // chop off the path part from url @@ -155,7 +155,7 @@ Site.prototype = { /** * Renders the site's data (fills the HTML fragment). */ - _render: function () { + _render: function() { // first check for end time, as it may modify the link this._checkLinkEndTime(); // setup display variables @@ -189,7 +189,7 @@ Site.prototype = { * Since the newtab may be preloaded long before it's displayed, * check for changed conditions and re-render if needed */ - onFirstVisible: function () { + onFirstVisible: function() { if (this.link.endTime && this.link.endTime < Date.now()) { // site needs to change landing url and background image this._render(); @@ -203,7 +203,7 @@ Site.prototype = { * Captures the site's thumbnail in the background, but only if there's no * existing thumbnail and the page allows background captures. */ - captureIfMissing: function () { + captureIfMissing: function() { if (!document.hidden && !this.link.imageURI) { BackgroundPageThumbs.captureIfMissing(this.url); } @@ -212,7 +212,7 @@ Site.prototype = { /** * Refreshes the thumbnail for the site. */ - refreshThumbnail: function () { + refreshThumbnail: function() { let link = this.link; let thumbnail = this._querySelector(".newtab-thumbnail.thumbnail"); @@ -249,7 +249,7 @@ Site.prototype = { /** * Adds event handlers for the site and its buttons. */ - _addEventHandlers: function () { + _addEventHandlers: function() { // Register drag-and-drop event handlers. this._node.addEventListener("dragstart", this, false); this._node.addEventListener("dragend", this, false); @@ -259,7 +259,7 @@ Site.prototype = { /** * Speculatively opens a connection to the current site. */ - _speculativeConnect: function () { + _speculativeConnect: function() { let sc = Services.io.QueryInterface(Ci.nsISpeculativeConnect); let uri = Services.io.newURI(this.url, null, null); try { @@ -272,7 +272,7 @@ Site.prototype = { /** * Record interaction with site using telemetry. */ - _recordSiteClicked: function (aIndex) { + _recordSiteClicked: function(aIndex) { if (Services.prefs.prefHasUserValue("browser.newtabpage.rows") || Services.prefs.prefHasUserValue("browser.newtabpage.columns") || aIndex > 8) { @@ -297,7 +297,7 @@ Site.prototype = { /** * Handles site click events. */ - onClick: function (aEvent) { + onClick: function(aEvent) { let action; let pinned = this.isPinned(); let tileIndex = this.cell.index; @@ -336,7 +336,7 @@ Site.prototype = { /** * Handles all site events. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "mouseover": this._node.removeEventListener("mouseover", this, false); diff --git a/application/palemoon/components/newtab/transformations.js b/application/palemoon/components/newtab/transformations.js index e9dafcd334..6dd63b1c08 100644 --- a/application/palemoon/components/newtab/transformations.js +++ b/application/palemoon/components/newtab/transformations.js @@ -33,7 +33,7 @@ var gTransformation = { * @param aNode The DOM node. * @return A Rect instance with the position. */ - getNodePosition: function (aNode) { + getNodePosition: function(aNode) { let {left, top, width, height} = aNode.getBoundingClientRect(); return new Rect(left + scrollX, top + scrollY, width, height); }, @@ -43,8 +43,8 @@ var gTransformation = { * @param aNode The node to fade. * @param aCallback The callback to call when finished. */ - fadeNodeIn: function (aNode, aCallback) { - this._setNodeOpacity(aNode, 1, function () { + fadeNodeIn: function(aNode, aCallback) { + this._setNodeOpacity(aNode, 1, function() { // Clear the style property. aNode.style.opacity = ""; @@ -58,7 +58,7 @@ var gTransformation = { * @param aNode The node to fade. * @param aCallback The callback to call when finished. */ - fadeNodeOut: function (aNode, aCallback) { + fadeNodeOut: function(aNode, aCallback) { this._setNodeOpacity(aNode, 0, aCallback); }, @@ -67,7 +67,7 @@ var gTransformation = { * @param aSite The site to fade. * @param aCallback The callback to call when finished. */ - showSite: function (aSite, aCallback) { + showSite: function(aSite, aCallback) { this.fadeNodeIn(aSite.node, aCallback); }, @@ -76,7 +76,7 @@ var gTransformation = { * @param aSite The site to fade. * @param aCallback The callback to call when finished. */ - hideSite: function (aSite, aCallback) { + hideSite: function(aSite, aCallback) { this.fadeNodeOut(aSite.node, aCallback); }, @@ -85,7 +85,7 @@ var gTransformation = { * @param aSite The site to re-position. * @param aPosition The desired position for the given site. */ - setSitePosition: function (aSite, aPosition) { + setSitePosition: function(aSite, aPosition) { let style = aSite.node.style; let {top, left} = aPosition; @@ -97,7 +97,7 @@ var gTransformation = { * Freezes a site in its current position by positioning it absolute. * @param aSite The site to freeze. */ - freezeSitePosition: function (aSite) { + freezeSitePosition: function(aSite) { if (this._isFrozen(aSite)) return; @@ -114,7 +114,7 @@ var gTransformation = { * Unfreezes a site by removing its absolute positioning. * @param aSite The site to unfreeze. */ - unfreezeSitePosition: function (aSite) { + unfreezeSitePosition: function(aSite) { if (!this._isFrozen(aSite)) return; @@ -131,7 +131,7 @@ var gTransformation = { * unfreeze - unfreeze the site after sliding * callback - the callback to call when finished */ - slideSiteTo: function (aSite, aTarget, aOptions) { + slideSiteTo: function(aSite, aTarget, aOptions) { let currentPosition = this.getNodePosition(aSite.node); let targetPosition = this.getNodePosition(aTarget.node) let callback = aOptions && aOptions.callback; @@ -168,13 +168,13 @@ var gTransformation = { * unfreeze - unfreeze the site after rearranging * callback - the callback to call when finished */ - rearrangeSites: function (aSites, aOptions) { + rearrangeSites: function(aSites, aOptions) { let batch = []; let cells = gGrid.cells; let callback = aOptions && aOptions.callback; let unfreeze = aOptions && aOptions.unfreeze; - aSites.forEach(function (aSite, aIndex) { + aSites.forEach(function(aSite, aIndex) { // Do not re-arrange empty cells or the dragged site. if (!aSite || aSite == gDrag.draggedSite) return; @@ -206,7 +206,7 @@ var gTransformation = { * @param aCallback The callback to call when finished. */ _whenTransitionEnded: - function (aNode, aProperties, aCallback) { + function(aNode, aProperties, aCallback) { let props = new Set(aProperties); aNode.addEventListener("transitionend", function onEnd(e) { @@ -222,7 +222,7 @@ var gTransformation = { * @param aNode The node to get the opacity value from. * @return The node's opacity value. */ - _getNodeOpacity: function (aNode) { + _getNodeOpacity: function(aNode) { let cstyle = window.getComputedStyle(aNode, null); return cstyle.getPropertyValue("opacity"); }, @@ -234,7 +234,7 @@ var gTransformation = { * @param aCallback The callback to call when finished. */ _setNodeOpacity: - function (aNode, aOpacity, aCallback) { + function(aNode, aOpacity, aCallback) { if (this._getNodeOpacity(aNode) == aOpacity) { if (aCallback) @@ -254,7 +254,7 @@ var gTransformation = { * @param aIndex The target cell's index. * @param aOptions Options that are directly passed to slideSiteTo(). */ - _moveSite: function (aSite, aIndex, aOptions) { + _moveSite: function(aSite, aIndex, aOptions) { this.freezeSitePosition(aSite); this.slideSiteTo(aSite, gGrid.cells[aIndex], aOptions); }, @@ -264,7 +264,7 @@ var gTransformation = { * @param aSite The site to check. * @return Whether the given site is frozen. */ - _isFrozen: function (aSite) { + _isFrozen: function(aSite) { return aSite.node.hasAttribute("frozen"); } }; diff --git a/application/palemoon/components/newtab/undo.js b/application/palemoon/components/newtab/undo.js index 6649e1cad5..9abcabf0f1 100644 --- a/application/palemoon/components/newtab/undo.js +++ b/application/palemoon/components/newtab/undo.js @@ -22,7 +22,7 @@ var gUndoDialog = { /** * Initializes the undo dialog. */ - init: function () { + init: function() { this._undoContainer = document.getElementById("newtab-undo-container"); this._undoContainer.addEventListener("click", this, false); this._undoButton = document.getElementById("newtab-undo-button"); @@ -34,7 +34,7 @@ var gUndoDialog = { * Shows the undo dialog. * @param aSite The site that just got removed. */ - show: function (aSite) { + show: function(aSite) { if (this._undoData) clearTimeout(this._undoData.timeout); @@ -54,7 +54,7 @@ var gUndoDialog = { /** * Hides the undo dialog. */ - hide: function () { + hide: function() { if (!this._undoData) return; @@ -70,7 +70,7 @@ var gUndoDialog = { * The undo dialog event handler. * @param aEvent The event to handle. */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.target.id) { case "newtab-undo-button": this._undo(); @@ -87,7 +87,7 @@ var gUndoDialog = { /** * Undo the last blocked site. */ - _undo: function () { + _undo: function() { if (!this._undoData) return; @@ -105,7 +105,7 @@ var gUndoDialog = { /** * Undo all blocked sites. */ - _undoAll: function () { + _undoAll: function() { NewTabUtils.undoAll(function() { gUpdater.updateGrid(); this.hide(); diff --git a/application/palemoon/components/newtab/updater.js b/application/palemoon/components/newtab/updater.js index 6af0dfa6ae..e1c03e0297 100644 --- a/application/palemoon/components/newtab/updater.js +++ b/application/palemoon/components/newtab/updater.js @@ -14,7 +14,7 @@ var gUpdater = { * This removes old, moves existing and creates new sites to fill gaps. * @param aCallback The callback to call when finished. */ - updateGrid: function (aCallback) { + updateGrid: function(aCallback) { let links = gLinks.getLinks().slice(0, gGrid.cells.length); // Find all sites that remain in the grid. @@ -50,17 +50,17 @@ var gUpdater = { * @param aLinks The array of links to find sites for. * @return Array of sites mapped to the given links (can contain null values). */ - _findRemainingSites: function (aLinks) { + _findRemainingSites: function(aLinks) { let map = {}; // Create a map to easily retrieve the site for a given URL. - gGrid.sites.forEach(function (aSite) { + gGrid.sites.forEach(function(aSite) { if (aSite) map[aSite.url] = aSite; }); // Map each link to its corresponding site, if any. - return aLinks.map(function (aLink) { + return aLinks.map(function(aLink) { return aLink && (aLink.url in map) && map[aLink.url]; }); }, @@ -69,8 +69,8 @@ var gUpdater = { * Freezes the given sites' positions. * @param aSites The array of sites to freeze. */ - _freezeSitePositions: function (aSites) { - aSites.forEach(function (aSite) { + _freezeSitePositions: function(aSites) { + aSites.forEach(function(aSite) { if (aSite) gTransformation.freezeSitePosition(aSite); }); @@ -80,7 +80,7 @@ var gUpdater = { * Moves the given sites' DOM nodes to their new positions. * @param aSites The array of sites to move. */ - _moveSiteNodes: function (aSites) { + _moveSiteNodes: function(aSites) { let cells = gGrid.cells; // Truncate the given array of sites to not have more sites than cells. @@ -88,7 +88,7 @@ var gUpdater = { // of link) onto the grid. let sites = aSites.slice(0, cells.length); - sites.forEach(function (aSite, aIndex) { + sites.forEach(function(aSite, aIndex) { let cell = cells[aIndex]; let cellSite = cell.site; @@ -112,7 +112,7 @@ var gUpdater = { * @param aSites The array of sites to re-arrange. * @param aCallback The callback to call when finished. */ - _rearrangeSites: function (aSites, aCallback) { + _rearrangeSites: function(aSites, aCallback) { let options = {callback: aCallback, unfreeze: true}; gTransformation.rearrangeSites(aSites, options); }, @@ -123,18 +123,18 @@ var gUpdater = { * @param aSites The array of sites remaining in the grid. * @param aCallback The callback to call when finished. */ - _removeLegacySites: function (aSites, aCallback) { + _removeLegacySites: function(aSites, aCallback) { let batch = []; // Delete sites that were removed from the grid. - gGrid.sites.forEach(function (aSite) { + gGrid.sites.forEach(function(aSite) { // The site must be valid and not in the current grid. if (!aSite || aSites.indexOf(aSite) != -1) return; batch.push(new Promise(resolve => { // Fade out the to-be-removed site. - gTransformation.hideSite(aSite, function () { + gTransformation.hideSite(aSite, function() { let node = aSite.node; // Remove the site from the DOM. @@ -152,7 +152,7 @@ var gUpdater = { * @param aLinks The array of links. * @param aCallback The callback to call when finished. */ - _fillEmptyCells: function (aLinks, aCallback) { + _fillEmptyCells: function(aLinks, aCallback) { let {cells, sites} = gGrid; // Find empty cells and fill them. diff --git a/application/palemoon/components/nsAboutRedirector.js b/application/palemoon/components/nsAboutRedirector.js index 754faf861f..b4b92a065d 100644 --- a/application/palemoon/components/nsAboutRedirector.js +++ b/application/palemoon/components/nsAboutRedirector.js @@ -80,7 +80,7 @@ AboutRedirector.prototype = { /** * Gets the module name from the given URI. */ - _getModuleName: function (aURI) { + _getModuleName: function(aURI) { // Strip out the first ? or #, and anything following it let name = (/[^?#]+/.exec(aURI.path))[0]; return name.toLowerCase(); diff --git a/application/palemoon/components/nsBrowserContentHandler.js b/application/palemoon/components/nsBrowserContentHandler.js index 19ba2b253d..285f77bca9 100644 --- a/application/palemoon/components/nsBrowserContentHandler.js +++ b/application/palemoon/components/nsBrowserContentHandler.js @@ -200,7 +200,7 @@ function openWindow(parent, url, target, features, args, noExternalArgs) { // put the URIs into argArray var uriArray = Components.classes["@mozilla.org/supports-array;1"] .createInstance(Components.interfaces.nsISupportsArray); - stringArgs.forEach(function (uri) { + stringArgs.forEach(function(uri) { var sstring = Components.classes["@mozilla.org/supports-string;1"] .createInstance(nsISupportsString); sstring.data = uri; @@ -278,7 +278,7 @@ nsBrowserContentHandler.prototype = { classID: Components.ID("{5d0ce354-df01-421a-83fb-7ead0990c24e}"), _xpcom_factory: { - createInstance: function (outer, iid) { + createInstance: function(outer, iid) { if (outer) throw Components.results.NS_ERROR_NO_AGGREGATION; return gBrowserContentHandler.QueryInterface(iid); @@ -308,7 +308,7 @@ nsBrowserContentHandler.prototype = { nsICommandLineValidator]), /* nsICommandLineHandler */ - handle : function (cmdLine) { + handle : function(cmdLine) { if (cmdLine.handleFlag("browser", false)) { // Passing defaultArgs, so use NO_EXTERNAL_URIS openWindow(null, this.chromeURL, "_blank", @@ -601,7 +601,7 @@ nsBrowserContentHandler.prototype = { mFeatures : null, - getFeatures : function (cmdLine) { + getFeatures : function(cmdLine) { if (this.mFeatures === null) { this.mFeatures = ""; @@ -629,7 +629,7 @@ nsBrowserContentHandler.prototype = { /* nsIContentHandler */ - handleContent : function (contentType, context, request) { + handleContent : function(contentType, context, request) { try { var webNavInfo = Components.classes["@mozilla.org/webnavigation-info;1"] .getService(nsIWebNavigationInfo); @@ -647,7 +647,7 @@ nsBrowserContentHandler.prototype = { }, /* nsICommandLineValidator */ - validate : function (cmdLine) { + validate : function(cmdLine) { // Other handlers may use osint so only handle the osint flag if the url // flag is also present and the command line is valid. var osintFlagIdx = cmdLine.findFlag("osint", false); @@ -699,7 +699,7 @@ nsDefaultCommandLineHandler.prototype = { classID: Components.ID("{47cd0651-b1be-4a0f-b5c4-10e5a573ef71}"), /* nsISupports */ - QueryInterface : function (iid) { + QueryInterface : function(iid) { if (!iid.equals(nsISupports) && !iid.equals(nsICommandLineHandler)) throw Components.results.NS_ERROR_NO_INTERFACE; @@ -712,7 +712,7 @@ nsDefaultCommandLineHandler.prototype = { #endif /* nsICommandLineHandler */ - handle : function (cmdLine) { + handle : function(cmdLine) { var urilist = []; #ifdef XP_WIN @@ -780,7 +780,7 @@ nsDefaultCommandLineHandler.prototype = { } } - var URLlist = urilist.filter(shouldLoadURI).map(function (u) u.spec); + var URLlist = urilist.filter(shouldLoadURI).map(function(u) u.spec); if (URLlist.length) { openWindow(null, gBrowserContentHandler.chromeURL, "_blank", "chrome,dialog=no,all" + gBrowserContentHandler.getFeatures(cmdLine), diff --git a/application/palemoon/components/nsBrowserGlue.js b/application/palemoon/components/nsBrowserGlue.js index 0d90e249fd..081c26065a 100644 --- a/application/palemoon/components/nsBrowserGlue.js +++ b/application/palemoon/components/nsBrowserGlue.js @@ -68,7 +68,7 @@ const BOOKMARKS_BACKUP_MAX_BACKUPS = 10; // Factory object const BrowserGlueServiceFactory = { _instance: null, - createInstance: function (outer, iid) { + createInstance: function(outer, iid) { if (outer != null) throw Components.results.NS_ERROR_NO_AGGREGATION; return this._instance == null ? @@ -113,7 +113,7 @@ BrowserGlue.prototype = { _isPlacesDatabaseLocked: false, _migrationImportsDefaultBookmarks: false, - _setPrefToSaveSession: function (aForce) { + _setPrefToSaveSession: function(aForce) { if (!this._saveSession && !aForce) return; @@ -126,7 +126,7 @@ BrowserGlue.prototype = { }, #ifdef MOZ_SERVICES_SYNC - _setSyncAutoconnectDelay: function () { + _setSyncAutoconnectDelay: function() { // Assume that a non-zero value for services.sync.autoconnectDelay should override if (Services.prefs.prefHasUserValue("services.sync.autoconnectDelay")) { let prefDelay = Services.prefs.getIntPref("services.sync.autoconnectDelay"); @@ -150,7 +150,7 @@ BrowserGlue.prototype = { #endif // nsIObserver implementation - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { switch (topic) { case "notifications-open-settings": this._openPermissions(subject); @@ -312,7 +312,7 @@ BrowserGlue.prototype = { } }, - _syncSearchEngines: function () { + _syncSearchEngines: function() { // Only do this if the search service is already initialized. This function // gets called in finalUIStartup and from a browser-search-service observer, // to catch both cases (search service initialization occurring before and @@ -323,7 +323,7 @@ BrowserGlue.prototype = { }, // initialization (called on application startup) - _init: function () { + _init: function() { let os = Services.obs; os.addObserver(this, "notifications-open-settings", false); os.addObserver(this, "prefservice:after-app-defaults", false); @@ -356,7 +356,7 @@ BrowserGlue.prototype = { }, // cleanup (called on application shutdown) - _dispose: function () { + _dispose: function() { let os = Services.obs; os.removeObserver(this, "notifications-open-settings"); os.removeObserver(this, "prefservice:after-app-defaults"); @@ -391,7 +391,7 @@ BrowserGlue.prototype = { } catch (ex) {} }, - _onAppDefaults: function () { + _onAppDefaults: function() { // apply distribution customizations (prefs) // other customizations are applied in _finalUIStartup() this._distributionCustomizer.applyPrefDefaults(); @@ -399,7 +399,7 @@ BrowserGlue.prototype = { // runs on startup, before the first command line handler is invoked // (i.e. before the first window is opened) - _finalUIStartup: function () { + _finalUIStartup: function() { this._sanitizer.onStartup(); // check if we're in safe mode if (Services.appinfo.inSafeMode) { @@ -433,11 +433,11 @@ BrowserGlue.prototype = { Services.obs.notifyObservers(null, "browser-ui-startup-complete", ""); }, - _setUpUserAgentOverrides: function () { + _setUpUserAgentOverrides: function() { UserAgentOverrides.init(); if (Services.prefs.getBoolPref("general.useragent.complexOverride.moodle")) { - UserAgentOverrides.addComplexOverride(function (aHttpChannel, aOriginalUA) { + UserAgentOverrides.addComplexOverride(function(aHttpChannel, aOriginalUA) { let cookies; try { cookies = aHttpChannel.getRequestHeader("Cookie"); @@ -449,7 +449,7 @@ BrowserGlue.prototype = { } }, - _trackSlowStartup: function () { + _trackSlowStartup: function() { if (Services.startup.interrupted || Services.prefs.getBoolPref("browser.slowStartup.notificationDisabled")) return; @@ -475,7 +475,7 @@ BrowserGlue.prototype = { Services.prefs.setIntPref("browser.slowStartup.samples", samples); }, - _showSlowStartupNotification: function () { + _showSlowStartupNotification: function() { let win = this.getMostRecentBrowserWindow(); if (!win) return; @@ -487,14 +487,14 @@ BrowserGlue.prototype = { { label: win.gNavigatorBundle.getString("slowStartup.helpButton.label"), accessKey: win.gNavigatorBundle.getString("slowStartup.helpButton.accesskey"), - callback: function () { + callback: function() { win.openUILinkIn(Services.prefs.getCharPref("browser.slowstartup.help.url"), "tab"); } }, { label: win.gNavigatorBundle.getString("slowStartup.disableNotificationButton.label"), accessKey: win.gNavigatorBundle.getString("slowStartup.disableNotificationButton.accesskey"), - callback: function () { + callback: function() { Services.prefs.setBoolPref("browser.slowStartup.notificationDisabled", true); } } @@ -507,7 +507,7 @@ BrowserGlue.prototype = { }, // the first browser window has finished initializing - _onFirstWindowLoaded: function () { + _onFirstWindowLoaded: function() { #ifdef XP_WIN // For windows seven, initialize the jump list module. const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1"; @@ -529,7 +529,7 @@ BrowserGlue.prototype = { * All components depending on Places should be shut down in * _onPlacesShutdown() and not here. */ - _onProfileShutdown: function () { + _onProfileShutdown: function() { BrowserNewTabPreloader.uninit(); UserAgentOverrides.uninit(); #ifdef MOZ_WEBRTC @@ -541,7 +541,7 @@ BrowserGlue.prototype = { }, // All initial windows have opened. - _onWindowsRestored: function () { + _onWindowsRestored: function() { // Show update notification, if needed. if (Services.prefs.prefHasUserValue("app.update.postupdate")) this._showUpdateNotification(); @@ -644,7 +644,7 @@ BrowserGlue.prototype = { } }, - _onQuitRequest: function (aCancelQuit, aQuitType) { + _onQuitRequest: function(aCancelQuit, aQuitType) { // If user has already dismissed quit request, then do nothing if ((aCancelQuit instanceof Ci.nsISupportsPRBool) && aCancelQuit.data) return; @@ -776,7 +776,7 @@ BrowserGlue.prototype = { } }, - _showUpdateNotification: function () { + _showUpdateNotification: function() { Services.prefs.clearUserPref("app.update.postupdate"); var um = Cc["@mozilla.org/updates/update-manager;1"]. @@ -877,7 +877,7 @@ BrowserGlue.prototype = { } }, - _showPluginUpdatePage: function () { + _showPluginUpdatePage: function() { // Pale Moon: disable this functionality from BrowserGlue, people are // already notified if they visit a page with an outdated plugin, and // they can check properly from the plugins page as well. @@ -912,7 +912,7 @@ BrowserGlue.prototype = { * Set to true by safe-mode dialog to indicate we must restore default * bookmarks. */ - _initPlaces: function (aInitialMigrationPerformed) { + _initPlaces: function(aInitialMigrationPerformed) { // We must instantiate the history service since it will tell us if we // need to import or restore bookmarks due to first-run, corruption or // forced migration (due to a major schema change). @@ -1078,7 +1078,7 @@ BrowserGlue.prototype = { * - export bookmarks as HTML, if so configured. * - finalize components depending on Places. */ - _onPlacesShutdown: function () { + _onPlacesShutdown: function() { this._sanitizer.onShutdown(); PageThumbs.uninit(); @@ -1134,7 +1134,7 @@ BrowserGlue.prototype = { * Determine whether to backup bookmarks or not. * @return true if bookmarks should be backed up, false if not. */ - _shouldBackupBookmarks: function () { + _shouldBackupBookmarks: function() { let lastBackupFile = PlacesBackups.getMostRecent(); // Should backup bookmarks if there are no backups or the maximum interval between @@ -1146,7 +1146,7 @@ BrowserGlue.prototype = { /** * Backup bookmarks. */ - _backupBookmarks: function () { + _backupBookmarks: function() { return Task.spawn(function() { // Backup bookmarks if there are no backups or the maximum interval between // backups elapsed. @@ -1163,7 +1163,7 @@ BrowserGlue.prototype = { /** * Show the notificationBox for a locked places database. */ - _showPlacesLockedNotificationBox: function () { + _showPlacesLockedNotificationBox: function() { var applicationName = gBrandBundle.GetStringFromName("brandShortName"); var placesBundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties"); var title = placesBundle.GetStringFromName("lockPrompt.title"); @@ -1197,7 +1197,7 @@ BrowserGlue.prototype = { notification.persistence = -1; // Until user closes it }, - _migrateUI: function () { + _migrateUI: function() { const UI_VERSION = 22; const BROWSER_DOCURL = "chrome://browser/content/browser.xul#"; let currentUIVersion = 0; @@ -1477,7 +1477,7 @@ BrowserGlue.prototype = { Services.prefs.setIntPref("browser.migration.version", UI_VERSION); }, - _hasExistingNotificationPermission: function () { + _hasExistingNotificationPermission: function() { let enumerator = Services.perms.enumerator; while (enumerator.hasMoreElements()) { let permission = enumerator.getNext().QueryInterface(Ci.nsIPermission); @@ -1488,7 +1488,7 @@ BrowserGlue.prototype = { return false; }, - _notifyNotificationsUpgrade: function () { + _notifyNotificationsUpgrade: function() { if (!this._hasExistingNotificationPermission()) { return; } @@ -1533,14 +1533,14 @@ BrowserGlue.prototype = { return false; }, - _getPersist: function (aSource, aProperty) { + _getPersist: function(aSource, aProperty) { var target = this._dataSource.GetTarget(aSource, aProperty, true); if (target instanceof Ci.nsIRDFLiteral) return target.Value; return null; }, - _setPersist: function (aSource, aProperty, aTarget) { + _setPersist: function(aSource, aProperty, aTarget) { this._dirty = true; try { var oldTarget = this._dataSource.GetTarget(aSource, aProperty, true); @@ -1570,12 +1570,12 @@ BrowserGlue.prototype = { // public nsIBrowserGlue members // ------------------------------ - sanitize: function (aParentWindow) { + sanitize: function(aParentWindow) { this._sanitizer.sanitize(aParentWindow); }, ensurePlacesDefaultQueriesInitialized: - function () { + function() { // This is actual version of the smart bookmarks, must be increased every // time smart bookmarks change. // When adding a new smart bookmark below, its newInVersion property must @@ -1610,7 +1610,7 @@ BrowserGlue.prototype = { } let batch = { - runBatched: function () { + runBatched: function() { let menuIndex = 0; let toolbarIndex = 0; let bundle = Services.strings.createBundle("chrome://browser/locale/places/places.properties"); @@ -1658,7 +1658,7 @@ BrowserGlue.prototype = { // we will use these informations to create the new version at the same // position. let smartBookmarkItemIds = PlacesUtils.annotations.getItemsWithAnnotation(SMART_BOOKMARKS_ANNO); - smartBookmarkItemIds.forEach(function (itemId) { + smartBookmarkItemIds.forEach(function(itemId) { let queryId = PlacesUtils.annotations.getItemAnnotation(itemId, SMART_BOOKMARKS_ANNO); if (queryId in smartBookmarks) { let smartBookmark = smartBookmarks[queryId]; @@ -1732,7 +1732,7 @@ BrowserGlue.prototype = { }, // this returns the most recent non-popup browser window - getMostRecentBrowserWindow: function () { + getMostRecentBrowserWindow: function() { return RecentWindow.getMostRecentBrowserWindow(); }, @@ -1748,7 +1748,7 @@ BrowserGlue.prototype = { * lesser evil than sending a tab to a specific device (from e.g. Fennec) * and having nothing happen on the receiving end. */ - _onDisplaySyncURI: function (data) { + _onDisplaySyncURI: function(data) { try { let tabbrowser = RecentWindow.getMostRecentBrowserWindow({private: false}).gBrowser; @@ -1778,7 +1778,7 @@ ContentPermissionPrompt.prototype = { QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPermissionPrompt]), - _getChromeWindow: function (aWindow) { + _getChromeWindow: function(aWindow) { var chromeWin = aWindow .QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIWebNavigation) @@ -1790,7 +1790,7 @@ ContentPermissionPrompt.prototype = { return chromeWin; }, - _getBrowserForRequest: function (aRequest) { + _getBrowserForRequest: function(aRequest) { let requestingWindow = aRequest.window.top; // find the requesting browser or iframe let browser = requestingWindow.QueryInterface(Ci.nsIInterfaceRequestor) @@ -1814,7 +1814,7 @@ ContentPermissionPrompt.prototype = { * @param aAnchorId The id for the PopupNotification anchor. * @param aOptions Options for the PopupNotification */ - _showPrompt: function (aRequest, aMessage, aPermission, aActions, + _showPrompt: function(aRequest, aMessage, aPermission, aActions, aNotificationId, aAnchorId, aOptions) { function onFullScreen() { popup.remove(); @@ -2005,7 +2005,7 @@ ContentPermissionPrompt.prototype = { "web-notifications-notification-icon", options); }, - _promptPointerLock: function (aRequest, autoAllow) { + _promptPointerLock: function(aRequest, autoAllow) { let requestingURI = aRequest.principal.URI; let originString = requestingURI.schemeIs("file") ? requestingURI.path : requestingURI.host; @@ -2042,7 +2042,7 @@ ContentPermissionPrompt.prototype = { "pointerLock-notification-icon", null); }, - prompt: function (request) { + prompt: function(request) { // Only allow exactly one permission rquest here. let types = request.types.QueryInterface(Ci.nsIArray); if (types.length != 1) { diff --git a/application/palemoon/components/pageinfo/permissions.js b/application/palemoon/components/pageinfo/permissions.js index 15cb2cb3e0..c9e999971a 100644 --- a/application/palemoon/components/pageinfo/permissions.js +++ b/application/palemoon/components/pageinfo/permissions.js @@ -18,21 +18,21 @@ var gPrefs; var gUsageRequest; var gPermObj = { - image: function () + image: function() { if (gPrefs.getIntPref("permissions.default.image") == IMAGE_DENY) { return DENY; } return ALLOW; }, - popup: function () + popup: function() { if (gPrefs.getBoolPref("dom.disable_open_during_load")) { return DENY; } return ALLOW; }, - cookie: function () + cookie: function() { if (gPrefs.getIntPref("network.cookie.cookieBehavior") == COOKIE_DENY) { return DENY; @@ -42,35 +42,35 @@ var gPermObj = { } return ALLOW; }, - "desktop-notification": function () + "desktop-notification": function() { if (!gPrefs.getBoolPref("dom.webnotifications.enabled")) { return DENY; } return UNKNOWN; }, - install: function () + install: function() { if (Services.prefs.getBoolPref("xpinstall.whitelist.required")) { return DENY; } return ALLOW; }, - geo: function () + geo: function() { if (!gPrefs.getBoolPref("geo.enabled")) { return DENY; } return ALLOW; }, - plugins: function () + plugins: function() { return UNKNOWN; }, }; var permissionObserver = { - observe: function (aSubject, aTopic, aData) + observe: function(aSubject, aTopic, aData) { if (aTopic == "perm-changed") { var permission = aSubject.QueryInterface( @@ -309,7 +309,7 @@ function initPluginsRow() { // fillInPluginPermissionTemplate(p.permission, p.obj) for (p of entries) // ]; let permissionEntries = []; - entries.forEach(function (p) { + entries.forEach(function(p) { permissionEntries.push(fillInPluginPermissionTemplate(p.permission, p.obj)); }); diff --git a/application/palemoon/components/places/PlacesUIUtils.jsm b/application/palemoon/components/places/PlacesUIUtils.jsm index e9e6415694..b32bb364ff 100644 --- a/application/palemoon/components/places/PlacesUIUtils.jsm +++ b/application/palemoon/components/places/PlacesUIUtils.jsm @@ -42,11 +42,11 @@ this.PlacesUIUtils = { * The string spec of the URI * @returns A URI object for the spec. */ - createFixedURI: function (aSpec) { + createFixedURI: function(aSpec) { return URIFixup.createFixupURI(aSpec, Ci.nsIURIFixup.FIXUP_FLAG_NONE); }, - getFormattedString: function (key, params) { + getFormattedString: function(key, params) { return bundle.formatStringFromName(key, params, params.length); }, @@ -65,17 +65,17 @@ this.PlacesUIUtils = { * @see https://developer.mozilla.org/en/Localization_and_Plurals * @return The localized plural string. */ - getPluralString: function (aKey, aNumber, aParams) { + getPluralString: function(aKey, aNumber, aParams) { let str = PluralForm.get(aNumber, bundle.GetStringFromName(aKey)); // Replace #1 with aParams[0], #2 with aParams[1], and so on. - return str.replace(/\#(\d+)/g, function (matchedId, matchedNumber) { + return str.replace(/\#(\d+)/g, function(matchedId, matchedNumber) { let param = aParams[parseInt(matchedNumber, 10) - 1]; return param !== undefined ? param : matchedId; }); }, - getString: function (key) { + getString: function(key) { return bundle.GetStringFromName(key); }, @@ -103,7 +103,7 @@ this.PlacesUIUtils = { * @see this._copyableAnnotations for the list of copyable annotations. */ _getURIItemCopyTransaction: - function (aData, aContainer, aIndex) + function(aData, aContainer, aIndex) { let transactions = []; if (aData.dateAdded) { @@ -120,7 +120,7 @@ this.PlacesUIUtils = { let keyword = aData.keyword || null; let annos = []; if (aData.annos) { - annos = aData.annos.filter(function (aAnno) { + annos = aData.annos.filter(function(aAnno) { return this._copyableAnnotations.indexOf(aAnno.name) != -1; }, this); } @@ -231,7 +231,7 @@ this.PlacesUIUtils = { let annos = []; if (aData.annos) { - annos = aData.annos.filter(function (aAnno) { + annos = aData.annos.filter(function(aAnno) { return this._copyableAnnotations.indexOf(aAnno.name) != -1; }, this); } @@ -257,7 +257,7 @@ this.PlacesUIUtils = { * @see this._copyableAnnotations for the list of copyable annotations. */ _getLivemarkCopyTransaction: - function (aData, aContainer, aIndex) + function(aData, aContainer, aIndex) { if (!aData.livemark || !aData.annos) { throw new Error("node is not a livemark"); @@ -266,7 +266,7 @@ this.PlacesUIUtils = { let feedURI, siteURI; let annos = []; if (aData.annos) { - annos = aData.annos.filter(function (aAnno) { + annos = aData.annos.filter(function(aAnno) { if (aAnno.name == PlacesUtils.LMANNO_FEEDURI) { feedURI = PlacesUtils._uri(aAnno.value); } @@ -291,7 +291,7 @@ this.PlacesUIUtils = { * @note Maybe this should be removed later, see bug 1072833. */ _isLivemark: - function (aItemId) + function(aItemId) { // Since this check may be done on each dragover event, it's worth maintaining // a cache. @@ -344,7 +344,7 @@ this.PlacesUIUtils = { * the move/insert. */ makeTransaction: - function (data, type, container, index, copy) + function(data, type, container, index, copy) { switch (data.type) { case PlacesUtils.TYPE_X_MOZ_PLACE_CONTAINER: @@ -399,7 +399,7 @@ this.PlacesUIUtils = { * @return true if any transaction has been performed, false otherwise. */ showBookmarkDialog: - function (aInfo, aParentWindow) { + function(aInfo, aParentWindow) { // Preserve size attributes differently based on the fact the dialog has // a folder picker or not, since it needs more horizontal space than the // other controls. @@ -415,7 +415,7 @@ this.PlacesUIUtils = { return ("performed" in aInfo && aInfo.performed); }, - _getTopBrowserWin: function () { + _getTopBrowserWin: function() { return RecentWindow.getMostRecentBrowserWindow(); }, @@ -425,7 +425,7 @@ this.PlacesUIUtils = { * a DOM node * @return the closet ancestor places view if exists, null otherwsie. */ - getViewForNode: function (aNode) { + getViewForNode: function(aNode) { let node = aNode; // The view for a of which its associated menupopup is a places @@ -454,7 +454,7 @@ this.PlacesUIUtils = { * organizer. If this is not called visits will be marked as * TRANSITION_LINK. */ - markPageAsTyped: function (aURL) { + markPageAsTyped: function(aURL) { PlacesUtils.history.markPageAsTyped(this.createFixedURI(aURL)); }, @@ -465,7 +465,7 @@ this.PlacesUIUtils = { * personal toolbar, and bookmarks from within the places organizer. * If this is not called visits will be marked as TRANSITION_LINK. */ - markPageAsFollowedBookmark: function (aURL) { + markPageAsFollowedBookmark: function(aURL) { PlacesUtils.history.markPageAsFollowedBookmark(this.createFixedURI(aURL)); }, @@ -475,7 +475,7 @@ this.PlacesUIUtils = { * This is actually used to distinguish user-initiated visits in frames * so automatic visits can be correctly ignored. */ - markPageAsFollowedLink: function (aURL) { + markPageAsFollowedLink: function(aURL) { PlacesUtils.history.markPageAsFollowedLink(this.createFixedURI(aURL)); }, @@ -489,7 +489,7 @@ this.PlacesUIUtils = { * @return true if it's safe to open the node in the browser, false otherwise. * */ - checkURLSecurity: function (aURINode, aWindow) { + checkURLSecurity: function(aURINode, aWindow) { if (PlacesUtils.nodeIsBookmark(aURINode)) return true; @@ -516,7 +516,7 @@ this.PlacesUIUtils = { * @returns A description string if a META element was discovered with a * "description" or "httpequiv" attribute, empty string otherwise. */ - getDescriptionFromDocument: function (doc) { + getDescriptionFromDocument: function(doc) { var metaElements = doc.getElementsByTagName("META"); for (var i = 0; i < metaElements.length; ++i) { if (metaElements[i].name.toLowerCase() == "description" || @@ -534,7 +534,7 @@ this.PlacesUIUtils = { * @returns the description of the given item, or an empty string if it is * not set. */ - getItemDescription: function (aItemId) { + getItemDescription: function(aItemId) { if (PlacesUtils.annotations.itemHasAnnotation(aItemId, this.DESCRIPTION_ANNO)) return PlacesUtils.annotations.getItemAnnotation(aItemId, this.DESCRIPTION_ANNO); return ""; @@ -548,7 +548,7 @@ this.PlacesUIUtils = { * a node, except the root node of a query. * @return true if the aNode represents a removable entry, false otherwise. */ - canUserRemove: function (aNode) { + canUserRemove: function(aNode) { let parentNode = aNode.parent; if (!parentNode) throw new Error("canUserRemove doesn't accept root nodes"); @@ -594,7 +594,7 @@ this.PlacesUIUtils = { * @note livemark "folders" are considered read-only (but see bug 1072833). * @return true if aItemId points to a read-only folder, false otherwise. */ - isContentsReadOnly: function (aNodeOrItemId) { + isContentsReadOnly: function(aNodeOrItemId) { let itemId; if (typeof(aNodeOrItemId) == "number") { itemId = aNodeOrItemId; @@ -631,7 +631,7 @@ this.PlacesUIUtils = { * Gives the user a chance to cancel loading lots of tabs at once */ _confirmOpenInTabs: - function (numTabsToOpen, aWindow) { + function(numTabsToOpen, aWindow) { const WARN_ON_OPEN_PREF = "browser.tabs.warnOnOpen"; var reallyOpen = true; @@ -673,7 +673,7 @@ this.PlacesUIUtils = { /** aItemsToOpen needs to be an array of objects of the form: * {uri: string, isBookmark: boolean} */ - _openTabset: function (aItemsToOpen, aEvent, aWindow) { + _openTabset: function(aItemsToOpen, aEvent, aWindow) { if (!aItemsToOpen.length) return; @@ -722,7 +722,7 @@ this.PlacesUIUtils = { }, openLiveMarkNodesInTabs: - function (aNode, aEvent, aView) { + function(aNode, aEvent, aView) { let window = aView.ownerWindow; PlacesUtils.livemarks.getLivemark({id: aNode.itemId}) @@ -741,7 +741,7 @@ this.PlacesUIUtils = { }, openContainerNodeInTabs: - function (aNode, aEvent, aView) { + function(aNode, aEvent, aView) { let window = aView.ownerWindow; let urlsToOpen = PlacesUtils.getURLsForContainerNode(aNode); @@ -750,7 +750,7 @@ this.PlacesUIUtils = { } }, - openURINodesInTabs: function (aNodes, aEvent, aView) { + openURINodesInTabs: function(aNodes, aEvent, aView) { let window = aView.ownerWindow; let urlsToOpen = []; @@ -775,7 +775,7 @@ this.PlacesUIUtils = { * The controller associated with aNode. */ openNodeWithEvent: - function (aNode, aEvent, aView) { + function(aNode, aEvent, aView) { let window = aView.ownerWindow; this._openNodeIn(aNode, window.whereToOpenLink(aEvent, false, true), window); }, @@ -785,12 +785,12 @@ this.PlacesUIUtils = { * web panel. * see also openUILinkIn */ - openNodeIn: function (aNode, aWhere, aView, aPrivate) { + openNodeIn: function(aNode, aWhere, aView, aPrivate) { let window = aView.ownerWindow; this._openNodeIn(aNode, aWhere, window, aPrivate); }, - _openNodeIn: function (aNode, aWhere, aWindow, aPrivate=false) { + _openNodeIn: function(aNode, aWhere, aWindow, aPrivate=false) { if (aNode && PlacesUtils.nodeIsURI(aNode) && this.checkURLSecurity(aNode, aWindow)) { let isBookmark = PlacesUtils.nodeIsBookmark(aNode); @@ -831,11 +831,11 @@ this.PlacesUIUtils = { * * @note this is not supposed be perfect, so use it only for UI purposes. */ - guessUrlSchemeForUI: function (aUrlString) { + guessUrlSchemeForUI: function(aUrlString) { return aUrlString.substr(0, aUrlString.indexOf(":")); }, - getBestTitle: function (aNode, aDoNotCutTitle) { + getBestTitle: function(aNode, aDoNotCutTitle) { var title; if (!aNode.title && PlacesUtils.nodeIsURI(aNode)) { // if node title is empty, try to set the label using host and filename @@ -1016,7 +1016,7 @@ this.PlacesUIUtils = { // Create a new left pane folder. var callback = { // Helper to create an organizer special query. - create_query: function (aQueryName, aParentId, aQueryUrl) { + create_query: function(aQueryName, aParentId, aQueryUrl) { let itemId = bs.insertBookmark(aParentId, PlacesUtils._uri(aQueryUrl), bs.DEFAULT_INDEX, @@ -1033,7 +1033,7 @@ this.PlacesUIUtils = { }, // Helper to create an organizer special folder. - create_folder: function (aFolderName, aParentId, aIsRoot) { + create_folder: function(aFolderName, aParentId, aIsRoot) { // Left Pane Root Folder. let folderId = bs.createFolder(aParentId, queries[aFolderName].title, @@ -1057,7 +1057,7 @@ this.PlacesUIUtils = { return folderId; }, - runBatched: function (aUserData) { + runBatched: function(aUserData) { delete PlacesUIUtils.leftPaneQueries; PlacesUIUtils.leftPaneQueries = { }; @@ -1125,7 +1125,7 @@ this.PlacesUIUtils = { * @param aItemId id of a container * @returns the name of the query, or empty string if not a left-pane query */ - getLeftPaneQueryNameFromId: function (aItemId) { + getLeftPaneQueryNameFromId: function(aItemId) { var queryName = ""; // If the let pane hasn't been built, use the annotation service // directly, to avoid building the left pane too early. @@ -1170,7 +1170,7 @@ this.PlacesUIUtils = { * @return The URL with the fragment at the end */ getImageURLForResolution: - function (aWindow, aURL, aWidth, aHeight) { + function(aWindow, aURL, aWidth, aHeight) { return aURL; } }; diff --git a/application/palemoon/components/places/content/bookmarkProperties.js b/application/palemoon/components/places/content/bookmarkProperties.js index 5b479b02a7..7eae82715c 100644 --- a/application/palemoon/components/places/content/bookmarkProperties.js +++ b/application/palemoon/components/places/content/bookmarkProperties.js @@ -107,7 +107,7 @@ var BookmarkPropertiesPanel = { * This method returns the correct label for the dialog's "accept" * button based on the variant of the dialog. */ - _getAcceptLabel: function () { + _getAcceptLabel: function() { if (this._action == ACTION_ADD) { if (this._URIs.length) return this._strings.getString("dialogAcceptLabelAddMulti"); @@ -127,7 +127,7 @@ var BookmarkPropertiesPanel = { * This method returns the correct title for the current variant * of this dialog. */ - _getDialogTitle: function () { + _getDialogTitle: function() { if (this._action == ACTION_ADD) { if (this._itemType == BOOKMARK_ITEM) return this._strings.getString("dialogTitleAddBookmark"); @@ -150,7 +150,7 @@ var BookmarkPropertiesPanel = { /** * Determines the initial data for the item edited or added by this dialog */ - _determineItemInfo: function () { + _determineItemInfo: function() { var dialogInfo = window.arguments[0]; this._action = dialogInfo.action == "add" ? ACTION_ADD : ACTION_EDIT; this._hiddenRows = dialogInfo.hiddenRows ? dialogInfo.hiddenRows : []; @@ -294,7 +294,7 @@ var BookmarkPropertiesPanel = { * * @returns a title string */ - _getURITitleFromHistory: function (aURI) { + _getURITitleFromHistory: function(aURI) { NS_ASSERT(aURI instanceof Ci.nsIURI); // get the title from History @@ -390,7 +390,7 @@ var BookmarkPropertiesPanel = { }), // nsIDOMEventListener - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { var target = aEvent.target; switch (aEvent.type) { case "input": @@ -413,7 +413,7 @@ var BookmarkPropertiesPanel = { } }, - _beginBatch: function () { + _beginBatch: function() { if (this._batching) return; @@ -421,7 +421,7 @@ var BookmarkPropertiesPanel = { this._batching = true; }, - _endBatch: function () { + _endBatch: function() { if (!this._batching) return; @@ -429,7 +429,7 @@ var BookmarkPropertiesPanel = { this._batching = false; }, - _fillEditProperties: function () { + _fillEditProperties: function() { gEditItemOverlay.initPanel(this._itemId, { hiddenRows: this._hiddenRows, forceReadOnly: this._readOnly }); @@ -449,7 +449,7 @@ var BookmarkPropertiesPanel = { }), // nsISupports - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsISupports)) return this; @@ -457,11 +457,11 @@ var BookmarkPropertiesPanel = { throw Cr.NS_NOINTERFACE; }, - _element: function (aID) { + _element: function(aID) { return document.getElementById("editBMPanel_" + aID); }, - onDialogUnload: function () { + onDialogUnload: function() { // gEditItemOverlay does not exist anymore here, so don't rely on it. this._mutationObserver.disconnect(); delete this._mutationObserver; @@ -478,7 +478,7 @@ var BookmarkPropertiesPanel = { .removeEventListener("input", this, false); }, - onDialogAccept: function () { + onDialogAccept: function() { // We must blur current focused element to save its changes correctly document.commandDispatcher.focusedElement.blur(); // The order here is important! We have to uninit the panel first, otherwise @@ -488,7 +488,7 @@ var BookmarkPropertiesPanel = { window.arguments[0].performed = true; }, - onDialogCancel: function () { + onDialogCancel: function() { // The order here is important! We have to uninit the panel first, otherwise // changes done as part of Undo may change the panel contents and by // that force it to commit more transactions. @@ -503,7 +503,7 @@ var BookmarkPropertiesPanel = { * * @returns true if the input is valid, false otherwise */ - _inputIsValid: function () { + _inputIsValid: function() { if (this._itemType == BOOKMARK_ITEM && !this._containsValidURI("locationField")) return false; @@ -522,7 +522,7 @@ var BookmarkPropertiesPanel = { * * @returns true if the textbox contains a valid URI string, false otherwise */ - _containsValidURI: function (aTextboxID) { + _containsValidURI: function(aTextboxID) { try { var value = this._element(aTextboxID).value; if (value) { @@ -540,7 +540,7 @@ var BookmarkPropertiesPanel = { * The container-identifier and insertion-index are returned separately in * the form of [containerIdentifier, insertionIndex] */ - _getInsertionPointDetails: function () { + _getInsertionPointDetails: function() { var containerId = this._defaultInsertionPoint.itemId; var indexInContainer = this._defaultInsertionPoint.index; @@ -552,7 +552,7 @@ var BookmarkPropertiesPanel = { * various fields and opening arguments of the dialog. */ _getCreateNewBookmarkTransaction: - function (aContainer, aIndex) { + function(aContainer, aIndex) { var annotations = []; var childTransactions = []; @@ -598,7 +598,7 @@ var BookmarkPropertiesPanel = { * Returns a childItems-transactions array representing the URIList with * which the dialog has been opened. */ - _getTransactionsForURIList: function () { + _getTransactionsForURIList: function() { var transactions = []; for (var i = 0; i < this._URIs.length; ++i) { var uri = this._URIs[i]; @@ -616,7 +616,7 @@ var BookmarkPropertiesPanel = { * various fields and opening arguments of the dialog. */ _getCreateNewFolderTransaction: - function (aContainer, aIndex) { + function(aContainer, aIndex) { var annotations = []; var childItemsTransactions; if (this._URIs.length) @@ -635,7 +635,7 @@ var BookmarkPropertiesPanel = { * the various fields and opening arguments of the dialog. */ _getCreateNewLivemarkTransaction: - function (aContainer, aIndex) { + function(aContainer, aIndex) { return new PlacesCreateLivemarkTransaction(this._feedURI, this._siteURI, this._title, aContainer, aIndex); diff --git a/application/palemoon/components/places/content/browserPlacesViews.js b/application/palemoon/components/places/content/browserPlacesViews.js index 6e4926e77a..63ed591c8c 100644 --- a/application/palemoon/components/places/content/browserPlacesViews.js +++ b/application/palemoon/components/places/content/browserPlacesViews.js @@ -92,7 +92,7 @@ PlacesViewBase.prototype = { * @throws if there is no DOM node set for aPlacesNode. */ _getDOMNodeForPlacesNode: - function (aPlacesNode) { + function(aPlacesNode) { let node = this._domNodes.get(aPlacesNode, null); if (!node) { throw new Error("No DOM node set for aPlacesNode.\nnode.type: " + @@ -182,17 +182,17 @@ PlacesViewBase.prototype = { index, orientation, isTag); }, - buildContextMenu: function (aPopup) { + buildContextMenu: function(aPopup) { this._contextMenuShown = aPopup; window.updateCommands("places"); return this.controller.buildContextMenu(aPopup); }, - destroyContextMenu: function (aPopup) { + destroyContextMenu: function(aPopup) { this._contextMenuShown = null; }, - _cleanPopup: function (aPopup, aDelay) { + _cleanPopup: function(aPopup, aDelay) { // Remove Places nodes from the popup. let child = aPopup._startMarker; while (child.nextSibling != aPopup._endMarker) { @@ -215,7 +215,7 @@ PlacesViewBase.prototype = { } }, - _rebuildPopup: function (aPopup) { + _rebuildPopup: function(aPopup) { let resultNode = aPopup._placesNode; if (!resultNode.containerOpen) return; @@ -244,7 +244,7 @@ PlacesViewBase.prototype = { aPopup._built = true; }, - _removeChild: function (aChild) { + _removeChild: function(aChild) { // If document.popupNode pointed to this child, null it out, // otherwise controller's command-updating may rely on the removed // item still being "selected". @@ -255,7 +255,7 @@ PlacesViewBase.prototype = { }, _setEmptyPopupStatus: - function (aPopup, aEmpty) { + function(aPopup, aEmpty) { if (!aPopup._emptyMenuitem) { let label = PlacesUIUtils.getString("bookmarksMenuEmptyFolder"); aPopup._emptyMenuitem = document.createElement("menuitem"); @@ -279,7 +279,7 @@ PlacesViewBase.prototype = { }, _createMenuItemForPlacesNode: - function (aPlacesNode) { + function(aPlacesNode) { this._domNodes.delete(aPlacesNode); let element; @@ -357,7 +357,7 @@ PlacesViewBase.prototype = { }, _insertNewItemToPopup: - function (aNewChild, aPopup, aBefore) { + function(aNewChild, aPopup, aBefore) { let element = this._createMenuItemForPlacesNode(aNewChild); let before = aBefore || aPopup._endMarker; aPopup.insertBefore(element, before); @@ -365,7 +365,7 @@ PlacesViewBase.prototype = { }, _setLivemarkSiteURIMenuItem: - function (aPopup) { + function(aPopup) { let livemarkInfo = this.controller.getCachedLivemarkInfo(aPopup._placesNode); let siteUrl = livemarkInfo && livemarkInfo.siteURI ? livemarkInfo.siteURI.spec : null; @@ -408,7 +408,7 @@ PlacesViewBase.prototype = { * The livemark status */ _setLivemarkStatusMenuItem: - function (aPopup, aStatus) { + function(aPopup, aStatus) { let statusMenuitem = aPopup._statusMenuitem; if (!statusMenuitem) { // Create the status menuitem and cache it in the popup object. @@ -434,7 +434,7 @@ PlacesViewBase.prototype = { } }, - toggleCutNode: function (aPlacesNode, aValue) { + toggleCutNode: function(aPlacesNode, aValue) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // We may get the popup for menus, but we need the menu itself. @@ -446,7 +446,7 @@ PlacesViewBase.prototype = { elt.removeAttribute("cutting"); }, - nodeURIChanged: function (aPlacesNode, aURIString) { + nodeURIChanged: function(aPlacesNode, aURIString) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // Here we need the . @@ -456,7 +456,7 @@ PlacesViewBase.prototype = { elt.setAttribute("scheme", PlacesUIUtils.guessUrlSchemeForUI(aURIString)); }, - nodeIconChanged: function (aPlacesNode) { + nodeIconChanged: function(aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's nothing to @@ -477,7 +477,7 @@ PlacesViewBase.prototype = { }, nodeAnnotationChanged: - function (aPlacesNode, aAnno) { + function(aPlacesNode, aAnno) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // All livemarks have a feedURI, so use it as our indicator of a livemark @@ -504,7 +504,7 @@ PlacesViewBase.prototype = { }, nodeTitleChanged: - function (aPlacesNode, aNewTitle) { + function(aPlacesNode, aNewTitle) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's @@ -528,7 +528,7 @@ PlacesViewBase.prototype = { }, nodeRemoved: - function (aParentPlacesNode, aPlacesNode, aIndex) { + function(aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); let elt = this._getDOMNodeForPlacesNode(aPlacesNode); @@ -548,7 +548,7 @@ PlacesViewBase.prototype = { }, nodeHistoryDetailsChanged: - function (aPlacesNode, aTime, aCount) { + function(aPlacesNode, aTime, aCount) { if (aPlacesNode.parent && this.controller.hasCachedLivemarkInfo(aPlacesNode.parent)) { // Find the node in the parent. @@ -575,7 +575,7 @@ PlacesViewBase.prototype = { batching: function() { }, nodeInserted: - function (aParentPlacesNode, aPlacesNode, aIndex) { + function(aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); if (!parentElt._built) return; @@ -588,7 +588,7 @@ PlacesViewBase.prototype = { }, nodeMoved: - function (aPlacesNode, + function(aPlacesNode, aOldParentPlacesNode, aOldIndex, aNewParentPlacesNode, aNewIndex) { // Note: the current implementation of moveItem does not actually @@ -617,7 +617,7 @@ PlacesViewBase.prototype = { }, containerStateChanged: - function (aPlacesNode, aOldState, aNewState) { + function(aPlacesNode, aOldState, aNewState) { if (aNewState == Ci.nsINavHistoryContainerResultNode.STATE_OPENED || aNewState == Ci.nsINavHistoryContainerResultNode.STATE_CLOSED) { this.invalidateContainer(aPlacesNode); @@ -649,7 +649,7 @@ PlacesViewBase.prototype = { } }, - _populateLivemarkPopup: function (aPopup) + _populateLivemarkPopup: function(aPopup) { this._setLivemarkSiteURIMenuItem(aPopup); // Show the loading status only if there are no entries yet. @@ -679,7 +679,7 @@ PlacesViewBase.prototype = { }, Components.utils.reportError); }, - invalidateContainer: function (aPlacesNode) { + invalidateContainer: function(aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); elt._built = false; @@ -688,7 +688,7 @@ PlacesViewBase.prototype = { this._rebuildPopup(elt); }, - uninit: function () { + uninit: function() { if (this._result) { this._result.removeObserver(this); this._resultNode.containerOpen = false; @@ -729,7 +729,7 @@ PlacesViewBase.prototype = { * @param aPopup * a Places popup. */ - _mayAddCommandsItems: function (aPopup) { + _mayAddCommandsItems: function(aPopup) { // The command items are never added to the root popup. if (aPopup == this._rootElt) return; @@ -794,7 +794,7 @@ PlacesViewBase.prototype = { } }, - _ensureMarkers: function (aPopup) { + _ensureMarkers: function(aPopup) { if (aPopup._startMarker) return; @@ -830,7 +830,7 @@ PlacesViewBase.prototype = { } }, - _onPopupShowing: function (aEvent) { + _onPopupShowing: function(aEvent) { // Avoid handling popupshowing of inner views. let popup = aEvent.originalTarget; @@ -854,14 +854,14 @@ PlacesViewBase.prototype = { }, _addEventListeners: - function (aObject, aEventNames, aCapturing) { + function(aObject, aEventNames, aCapturing) { for (let i = 0; i < aEventNames.length; i++) { aObject.addEventListener(aEventNames[i], this, aCapturing); } }, _removeEventListeners: - function (aObject, aEventNames, aCapturing) { + function(aObject, aEventNames, aCapturing) { for (let i = 0; i < aEventNames.length; i++) { aObject.removeEventListener(aEventNames[i], this, aCapturing); } @@ -878,9 +878,9 @@ function PlacesToolbar(aPlace) { ["_dropIndicator", "PlacesToolbarDropIndicator"], ["_chevron", "PlacesChevron"], ["_chevronPopup", "PlacesChevronPopup"] - ].forEach(function (elementGlobal) { + ].forEach(function(elementGlobal) { let [name, id] = elementGlobal; - thisView.__defineGetter__(name, function () { + thisView.__defineGetter__(name, function() { let element = document.getElementById(id); if (!element) return null; @@ -914,7 +914,7 @@ PlacesToolbar.prototype = { _cbEvents: ["dragstart", "dragover", "dragexit", "dragend", "drop", "mousemove", "mouseover", "mouseout"], - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsITimerCallback)) return this; @@ -922,7 +922,7 @@ PlacesToolbar.prototype = { return PlacesViewBase.prototype.QueryInterface.apply(this, arguments); }, - uninit: function () { + uninit: function() { this._removeEventListeners(this._viewElt, this._cbEvents, false); this._removeEventListeners(this._rootElt, ["popupshowing", "popuphidden"], true); @@ -936,7 +936,7 @@ PlacesToolbar.prototype = { _openedMenuButton: null, _allowPopupShowing: true, - _rebuild: function () { + _rebuild: function() { // Clear out references to existing nodes, since they will be removed // and re-added. if (this._overFolder.elt) @@ -961,7 +961,7 @@ PlacesToolbar.prototype = { }, _insertNewItem: - function (aChild, aBefore) { + function(aChild, aBefore) { this._domNodes.delete(aChild); let type = aChild.type; @@ -1022,7 +1022,7 @@ PlacesToolbar.prototype = { }, _updateChevronPopupNodesVisibility: - function () { + function() { for (let i = 0, node = this._chevronPopup._startMarker.nextSibling; node != this._chevronPopup._endMarker; i++, node = node.nextSibling) { @@ -1031,7 +1031,7 @@ PlacesToolbar.prototype = { }, _onChevronPopupShowing: - function (aEvent) { + function(aEvent) { // Handle popupshowing only for the chevron popup, not for nested ones. if (aEvent.target != this._chevronPopup) return; @@ -1042,7 +1042,7 @@ PlacesToolbar.prototype = { this._updateChevronPopupNodesVisibility(); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "unload": this.uninit(); @@ -1120,7 +1120,7 @@ PlacesToolbar.prototype = { } }, - updateChevron: function () { + updateChevron: function() { // If the chevron is collapsed there's nothing to update. if (this._chevron.collapsed) return; @@ -1133,7 +1133,7 @@ PlacesToolbar.prototype = { this._updateChevronTimer = this._setTimer(100); }, - _updateChevronTimerCallback: function () { + _updateChevronTimerCallback: function() { let scrollRect = this._rootElt.getBoundingClientRect(); let childOverflowed = false; for (let i = 0; i < this._rootElt.childNodes.length; i++) { @@ -1155,7 +1155,7 @@ PlacesToolbar.prototype = { }, nodeInserted: - function (aParentPlacesNode, aPlacesNode, aIndex) { + function(aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); if (parentElt == this._rootElt) { let children = this._rootElt.childNodes; @@ -1169,7 +1169,7 @@ PlacesToolbar.prototype = { }, nodeRemoved: - function (aParentPlacesNode, aPlacesNode, aIndex) { + function(aParentPlacesNode, aPlacesNode, aIndex) { let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode); let elt = this._getDOMNodeForPlacesNode(aPlacesNode); @@ -1187,7 +1187,7 @@ PlacesToolbar.prototype = { }, nodeMoved: - function (aPlacesNode, + function(aPlacesNode, aOldParentPlacesNode, aOldIndex, aNewParentPlacesNode, aNewIndex) { let parentElt = this._getDOMNodeForPlacesNode(aNewParentPlacesNode); @@ -1219,7 +1219,7 @@ PlacesToolbar.prototype = { }, nodeAnnotationChanged: - function (aPlacesNode, aAnno) { + function(aPlacesNode, aAnno) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); if (elt == this._rootElt) return; @@ -1248,7 +1248,7 @@ PlacesToolbar.prototype = { } }, - nodeTitleChanged: function (aPlacesNode, aNewTitle) { + nodeTitleChanged: function(aPlacesNode, aNewTitle) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); // There's no UI representation for the root node, thus there's @@ -1268,7 +1268,7 @@ PlacesToolbar.prototype = { } }, - invalidateContainer: function (aPlacesNode) { + invalidateContainer: function(aPlacesNode) { let elt = this._getDOMNodeForPlacesNode(aPlacesNode); if (elt == this._rootElt) { // Container is the toolbar itself. @@ -1284,7 +1284,7 @@ PlacesToolbar.prototype = { hoverTime: 350, closeTimer: null }, - _clearOverFolder: function () { + _clearOverFolder: function() { // The mouse is no longer dragging over the stored menubutton. // Close the menubutton, clear out drag styles, and clear all // timers for opening/closing it. @@ -1312,7 +1312,7 @@ PlacesToolbar.prototype = { * - beforeIndex: child index to drop before, for the drop indicator. * - folderElt: the folder to drop into, if applicable. */ - _getDropPoint: function (aEvent) { + _getDropPoint: function(aEvent) { let result = this.result; if (!PlacesUtils.nodeIsFolder(this._resultNode)) return null; @@ -1395,13 +1395,13 @@ PlacesToolbar.prototype = { return dropPoint; }, - _setTimer: function (aTime) { + _setTimer: function(aTime) { let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer); timer.initWithCallback(this, aTime, timer.TYPE_ONE_SHOT); return timer; }, - notify: function (aTimer) { + notify: function(aTimer) { if (aTimer == this._updateChevronTimer) { this._updateChevronTimer = null; this._updateChevronTimerCallback(); @@ -1446,18 +1446,18 @@ PlacesToolbar.prototype = { } }, - _onMouseOver: function (aEvent) { + _onMouseOver: function(aEvent) { let button = aEvent.target; if (button.parentNode == this._rootElt && button._placesNode && PlacesUtils.nodeIsURI(button._placesNode)) window.XULBrowserWindow.setOverLink(aEvent.target._placesNode.uri, null); }, - _onMouseOut: function (aEvent) { + _onMouseOut: function(aEvent) { window.XULBrowserWindow.setOverLink("", null); }, - _cleanupDragDetails: function () { + _cleanupDragDetails: function() { // Called on dragend and drop. PlacesControllerDragHelper.currentDropTarget = null; this._draggedElt = null; @@ -1467,7 +1467,7 @@ PlacesToolbar.prototype = { this._dropIndicator.collapsed = true; }, - _onDragStart: function (aEvent) { + _onDragStart: function(aEvent) { // Sub menus have their own d&d handlers. let draggedElt = aEvent.target; if (draggedElt.parentNode != this._rootElt || !draggedElt._placesNode) @@ -1502,7 +1502,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDragOver: function (aEvent) { + _onDragOver: function(aEvent) { // Cache the dataTransfer PlacesControllerDragHelper.currentDropTarget = aEvent.target; let dt = aEvent.dataTransfer; @@ -1578,7 +1578,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDrop: function (aEvent) { + _onDrop: function(aEvent) { PlacesControllerDragHelper.currentDropTarget = aEvent.target; let dropPoint = this._getDropPoint(aEvent); @@ -1591,7 +1591,7 @@ PlacesToolbar.prototype = { aEvent.stopPropagation(); }, - _onDragExit: function (aEvent) { + _onDragExit: function(aEvent) { PlacesControllerDragHelper.currentDropTarget = null; // Set timer to turn off indicator bar (if we turn it off @@ -1606,11 +1606,11 @@ PlacesToolbar.prototype = { this._overFolder.closeTimer = this._setTimer(this._overFolder.hoverTime); }, - _onDragEnd: function (aEvent) { + _onDragEnd: function(aEvent) { this._cleanupDragDetails(); }, - _onPopupShowing: function (aEvent) { + _onPopupShowing: function(aEvent) { if (!this._allowPopupShowing) { this._allowPopupShowing = true; aEvent.preventDefault(); @@ -1624,7 +1624,7 @@ PlacesToolbar.prototype = { PlacesViewBase.prototype._onPopupShowing.apply(this, arguments); }, - _onPopupHidden: function (aEvent) { + _onPopupHidden: function(aEvent) { let popup = aEvent.target; let placesNode = popup._placesNode; // Avoid handling popuphidden of inner views @@ -1650,7 +1650,7 @@ PlacesToolbar.prototype = { } }, - _onMouseMove: function (aEvent) { + _onMouseMove: function(aEvent) { // Used in dragStart to prevent dragging folders when dragging down. this._cachedMouseMoveEvent = aEvent; @@ -1696,18 +1696,18 @@ function PlacesMenu(aPopupShowingEvent, aPlace) { PlacesMenu.prototype = { __proto__: PlacesViewBase.prototype, - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Ci.nsIDOMEventListener)) return this; return PlacesViewBase.prototype.QueryInterface.apply(this, arguments); }, - _removeChild: function (aChild) { + _removeChild: function(aChild) { PlacesViewBase.prototype._removeChild.apply(this, arguments); }, - uninit: function () { + uninit: function() { this._removeEventListeners(this._rootElt, ["popupshowing", "popuphidden"], true); this._removeEventListeners(window, ["unload"], false); @@ -1715,7 +1715,7 @@ PlacesMenu.prototype = { PlacesViewBase.prototype.uninit.apply(this, arguments); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "unload": this.uninit(); @@ -1729,7 +1729,7 @@ PlacesMenu.prototype = { } }, - _onPopupHidden: function (aEvent) { + _onPopupHidden: function(aEvent) { // Avoid handling popuphidden of inner views. let popup = aEvent.originalTarget; let placesNode = popup._placesNode; diff --git a/application/palemoon/components/places/content/controller.js b/application/palemoon/components/places/content/controller.js index 663eddfc0c..1c8eeee514 100644 --- a/application/palemoon/components/places/content/controller.js +++ b/application/palemoon/components/places/content/controller.js @@ -79,7 +79,7 @@ function PlacesController(aView) { XPCOMUtils.defineLazyServiceGetter(this, "clipboard", "@mozilla.org/widget/clipboard;1", "nsIClipboard"); - XPCOMUtils.defineLazyGetter(this, "profileName", function () { + XPCOMUtils.defineLazyGetter(this, "profileName", function() { return Services.dirsvc.get("ProfD", Ci.nsIFile).leafName; }); @@ -97,15 +97,15 @@ PlacesController.prototype = { ]), // nsIClipboardOwner - LosingOwnership: function (aXferable) { + LosingOwnership: function(aXferable) { this.cutNodes = []; }, - terminate: function () { + terminate: function() { this._releaseClipboardOwnership(); }, - supportsCommand: function (aCommand) { + supportsCommand: function(aCommand) { // Non-Places specific commands that we also support switch (aCommand) { case "cmd_undo": @@ -124,7 +124,7 @@ PlacesController.prototype = { return (aCommand.substr(0, CMD_PREFIX.length) == CMD_PREFIX); }, - isCommandEnabled: function (aCommand) { + isCommandEnabled: function(aCommand) { switch (aCommand) { case "cmd_undo": return PlacesUtils.transactionManager.numberOfUndoItems > 0; @@ -199,7 +199,7 @@ PlacesController.prototype = { } }, - doCommand: function (aCommand) { + doCommand: function(aCommand) { switch (aCommand) { case "cmd_undo": PlacesUtils.transactionManager.undoTransaction(); @@ -291,7 +291,7 @@ PlacesController.prototype = { } }, - onEvent: function (eventName) { }, + onEvent: function(eventName) { }, /** @@ -328,7 +328,7 @@ PlacesController.prototype = { /** * Determines whether or not nodes can be inserted relative to the selection. */ - _canInsert: function (isPaste) { + _canInsert: function(isPaste) { var ip = this._view.insertionPoint; return ip != null && (isPaste || ip.isTag != true); }, @@ -341,7 +341,7 @@ PlacesController.prototype = { - clipboard data is of type TEXT_UNICODE and is a valid URI. */ - _isClipboardDataPasteable: function () { + _isClipboardDataPasteable: function() { // if the clipboard contains TYPE_X_MOZ_PLACE_* data, it is definitely // pasteable, with no need to unwrap all the nodes. @@ -401,7 +401,7 @@ PlacesController.prototype = { * Notes: * 1) This can be slow, so don't call it anywhere performance critical! */ - _buildSelectionMetadata: function () { + _buildSelectionMetadata: function() { var metadata = []; var nodes = this._view.selectedNodes; @@ -484,7 +484,7 @@ PlacesController.prototype = { * @returns true if the conditions (see buildContextMenu) are satisfied * and the item can be displayed, false otherwise. */ - _shouldShowMenuItem: function (aMenuItem, aMetaData) { + _shouldShowMenuItem: function(aMenuItem, aMetaData) { var selectiontype = aMenuItem.getAttribute("selectiontype"); if (!selectiontype) { selectiontype = "single|multiple"; @@ -577,7 +577,7 @@ PlacesController.prototype = { * The menupopup to build children into. * @return true if at least one item is visible, false otherwise. */ - buildContextMenu: function (aPopup) { + buildContextMenu: function(aPopup) { var metadata = this._buildSelectionMetadata(); var ip = this._view.insertionPoint; var noIp = !ip || ip.isTag; @@ -648,7 +648,7 @@ PlacesController.prototype = { /** * Select all links in the current view. */ - selectAll: function () { + selectAll: function() { this._view.selectAll(); }, @@ -656,7 +656,7 @@ PlacesController.prototype = { * Opens the bookmark properties for the selected URI Node. */ showBookmarkPropertiesForSelection: - function () { + function() { var node = this._view.selectedNode; if (!node) return; @@ -684,7 +684,7 @@ PlacesController.prototype = { * This method can be run on a URI parameter to ensure that it didn't * receive a string instead of an nsIURI object. */ - _assertURINotString: function (value) { + _assertURINotString: function(value) { NS_ASSERT((typeof(value) == "object") && !(value instanceof String), "This method should be passed a URI as a nsIURI object, not as a string."); }, @@ -692,7 +692,7 @@ PlacesController.prototype = { /** * Reloads the selected livemark if any. */ - reloadSelectedLivemark: function () { + reloadSelectedLivemark: function() { var selectedNode = this._view.selectedNode; if (selectedNode) { let itemId = selectedNode.itemId; @@ -706,7 +706,7 @@ PlacesController.prototype = { /** * Opens the links in the selected folder, or the selected links in new tabs. */ - openSelectionInTabs: function (aEvent) { + openSelectionInTabs: function(aEvent) { var node = this._view.selectedNode; var nodes = this._view.selectedNodes; // In the case of no selection, open the root node: @@ -725,7 +725,7 @@ PlacesController.prototype = { * @param aType * the type of the new item (bookmark/livemark/folder) */ - newItem: function (aType) { + newItem: function(aType) { let ip = this._view.insertionPoint; if (!ip) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -747,7 +747,7 @@ PlacesController.prototype = { /** * Create a new Bookmark separator somewhere. */ - newSeparator: function () { + newSeparator: function() { var ip = this._view.insertionPoint; if (!ip) throw Cr.NS_ERROR_NOT_AVAILABLE; @@ -762,7 +762,7 @@ PlacesController.prototype = { /** * Opens a dialog for moving the selected nodes. */ - moveSelectedBookmarks: function () { + moveSelectedBookmarks: function() { window.openDialog("chrome://browser/content/places/moveBookmarks.xul", "", "chrome, modal", this._view.selectedNodes); @@ -771,7 +771,7 @@ PlacesController.prototype = { /** * Sort the selected folder by name. */ - sortFolderByName: function () { + sortFolderByName: function() { var itemId = PlacesUtils.getConcreteItemId(this._view.selectedNode); var txn = new PlacesSortFolderByNameTransaction(itemId); PlacesUtils.transactionManager.doTransaction(txn); @@ -780,7 +780,7 @@ PlacesController.prototype = { /** * Open the parent folder for the selected bookmarks search result. */ - openParentFolder: function () { + openParentFolder: function() { var view; if (!document.popupNode) { view = document.commandDispatcher.focusedElement; @@ -796,7 +796,7 @@ PlacesController.prototype = { this.selectFolderByItemId(view, aFolderItemId, aItemId); }, - getParentFolderByItemId: function (aItemId) { + getParentFolderByItemId: function(aItemId) { var bmsvc = Components.classes["@mozilla.org/browser/nav-bookmarks-service;1"]. getService(Components.interfaces.nsINavBookmarksService); var parentFolderId = bmsvc.getFolderIdForItem(aItemId); @@ -804,7 +804,7 @@ PlacesController.prototype = { return parentFolderId; }, - selectItems2: function (view, aIDs) { + selectItems2: function(view, aIDs) { var ids = aIDs; // Don't manipulate the caller's array. // Array of nodes found by findNodes which are to be selected @@ -904,7 +904,7 @@ PlacesController.prototype = { selection.selectEventsSuppressed = false; }, - selectFolderByItemId: function (view, aFolderItemId, aItemId) { + selectFolderByItemId: function(view, aFolderItemId, aItemId) { // Library if (view.getAttribute("id") == "placeContent") { view = document.getElementById("placesList"); @@ -1062,7 +1062,7 @@ PlacesController.prototype = { * List of folders the calling function has already traversed * @returns true if the node should be skipped, false otherwise. */ - _shouldSkipNode: function (node, pastFolders) { + _shouldSkipNode: function(node, pastFolders) { /** * Determines if a node is contained by another node within a resultset. * @param node @@ -1098,7 +1098,7 @@ PlacesController.prototype = { * @param [optional] removedFolders * An array of folder nodes that have already been removed. */ - _removeRange: function (range, transactions, removedFolders) { + _removeRange: function(range, transactions, removedFolders) { NS_ASSERT(transactions instanceof Array, "Must pass a transactions array"); if (!removedFolders) removedFolders = []; @@ -1167,7 +1167,7 @@ PlacesController.prototype = { * @param txnName * See |remove|. */ - _removeRowsFromBookmarks: function (txnName) { + _removeRowsFromBookmarks: function(txnName) { var ranges = this._view.removableSelectionRanges; var transactions = []; var removedFolders = []; @@ -1186,7 +1186,7 @@ PlacesController.prototype = { * * @note history deletes are not undoable. */ - _removeRowsFromHistory: function () { + _removeRowsFromHistory: function() { let nodes = this._view.selectedNodes; let URIs = []; for (let i = 0; i < nodes.length; ++i) { @@ -1229,7 +1229,7 @@ PlacesController.prototype = { * * @note history deletes are not undoable. */ - _removeHistoryContainer: function (aContainerNode) { + _removeHistoryContainer: function(aContainerNode) { if (PlacesUtils.nodeIsHost(aContainerNode)) { // Site container. PlacesUtils.bhistory.removePagesFromHost(aContainerNode.title, true); @@ -1255,7 +1255,7 @@ PlacesController.prototype = { * A name for the transaction if this is being performed * as part of another operation. */ - remove: function (aTxnName) { + remove: function(aTxnName) { if (!this._hasRemovableSelection()) return; @@ -1284,7 +1284,7 @@ PlacesController.prototype = { * @param aEvent * The dragstart event. */ - setDataTransfer: function (aEvent) { + setDataTransfer: function(aEvent) { let dt = aEvent.dataTransfer; let doCopy = ["copyLink", "copy", "link"].indexOf(dt.effectAllowed) != -1; @@ -1355,14 +1355,14 @@ PlacesController.prototype = { return action; }, - _releaseClipboardOwnership: function () { + _releaseClipboardOwnership: function() { if (this.cutNodes.length > 0) { // This clears the logical clipboard, doesn't remove data. this.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard); } }, - _clearClipboard: function () { + _clearClipboard: function() { let xferable = Cc["@mozilla.org/widget/transferable;1"]. createInstance(Ci.nsITransferable); xferable.init(null); @@ -1373,7 +1373,7 @@ PlacesController.prototype = { this.clipboard.setData(xferable, null, Ci.nsIClipboard.kGlobalClipboard); }, - _populateClipboard: function (aNodes, aAction) { + _populateClipboard: function(aNodes, aAction) { // This order is _important_! It controls how this and other applications // select data to be inserted based on type. let contents = [ @@ -1386,7 +1386,7 @@ PlacesController.prototype = { // Avoid handling descendants of a copied node, the transactions take care // of them automatically. let copiedFolders = []; - aNodes.forEach(function (node) { + aNodes.forEach(function(node) { if (this._shouldSkipNode(node, copiedFolders)) return; if (PlacesUtils.nodeIsFolder(node)) @@ -1395,7 +1395,7 @@ PlacesController.prototype = { let livemarkInfo = this.getCachedLivemarkInfo(node); let feedURI = livemarkInfo && livemarkInfo.feedURI.spec; - contents.forEach(function (content) { + contents.forEach(function(content) { content.entries.push( PlacesUtils.wrapNode(node, content.type, feedURI) ); @@ -1414,7 +1414,7 @@ PlacesController.prototype = { let hasData = false; // This order matters here! It controls how this and other applications // select data to be inserted based on type. - contents.forEach(function (content) { + contents.forEach(function(content) { if (content.entries.length > 0) { hasData = true; let glue = @@ -1441,7 +1441,7 @@ PlacesController.prototype = { set cutNodes(aNodes) { let self = this; function updateCutNodes(aValue) { - self._cutNodes.forEach(function (aNode) { + self._cutNodes.forEach(function(aNode) { self._view.toggleCutNode(aNode, aValue); }); } @@ -1455,7 +1455,7 @@ PlacesController.prototype = { /** * Copy Bookmarks and Folders to the clipboard */ - copy: function () { + copy: function() { let result = this._view.result; let didSuppressNotifications = result.suppressNotifications; if (!didSuppressNotifications) @@ -1472,7 +1472,7 @@ PlacesController.prototype = { /** * Cut Bookmarks and Folders to the clipboard */ - cut: function () { + cut: function() { let result = this._view.result; let didSuppressNotifications = result.suppressNotifications; if (!didSuppressNotifications) @@ -1490,7 +1490,7 @@ PlacesController.prototype = { /** * Paste Bookmarks and Folders from the clipboard */ - paste: function () { + paste: function() { // No reason to proceed if there isn't a valid insertion point. let ip = this._view.insertionPoint; if (!ip) @@ -1506,7 +1506,7 @@ PlacesController.prototype = { [ PlacesUtils.TYPE_X_MOZ_PLACE, PlacesUtils.TYPE_X_MOZ_URL, PlacesUtils.TYPE_UNICODE, - ].forEach(function (type) xferable.addDataFlavor(type)); + ].forEach(function(type) xferable.addDataFlavor(type)); this.clipboard.getData(xferable, Ci.nsIClipboard.kGlobalClipboard); @@ -1572,7 +1572,7 @@ PlacesController.prototype = { * @param aLivemarkInfo * a mozILivemarkInfo object. */ - cacheLivemarkInfo: function (aNode, aLivemarkInfo) { + cacheLivemarkInfo: function(aNode, aLivemarkInfo) { this._cachedLivemarkInfoObjects.set(aNode, aLivemarkInfo); }, @@ -1583,7 +1583,7 @@ PlacesController.prototype = { * @return true if there's a cached mozILivemarkInfo object for * aNode, false otherwise. */ - hasCachedLivemarkInfo: function (aNode) + hasCachedLivemarkInfo: function(aNode) this._cachedLivemarkInfoObjects.has(aNode), /** @@ -1593,7 +1593,7 @@ PlacesController.prototype = { * a places result node. * @return the mozILivemarkInfo object for aNode, if set, null otherwise. */ - getCachedLivemarkInfo: function (aNode) + getCachedLivemarkInfo: function(aNode) this._cachedLivemarkInfoObjects.get(aNode, null) }; @@ -1618,7 +1618,7 @@ var PlacesControllerDragHelper = { * @returns true if the user is dragging over a node within the hierarchy of * the container, false otherwise. */ - draggingOverChildNode: function (node) { + draggingOverChildNode: function(node) { let currentNode = this.currentDropTarget; while (currentNode) { if (currentNode == node) @@ -1631,7 +1631,7 @@ var PlacesControllerDragHelper = { /** * @returns The current active drag session. Returns null if there is none. */ - getSession: function () { + getSession: function() { return this.dragService.getCurrentSession(); }, @@ -1640,7 +1640,7 @@ var PlacesControllerDragHelper = { * @param aFlavors * The flavors list of type nsIDOMDOMStringList. */ - getFirstValidFlavor: function (aFlavors) { + getFirstValidFlavor: function(aFlavors) { for (let i = 0; i < aFlavors.length; i++) { if (this.GENERIC_VIEW_DROP_TYPES.indexOf(aFlavors[i]) != -1) return aFlavors[i]; @@ -1662,7 +1662,7 @@ var PlacesControllerDragHelper = { * @param ip * The insertion point where the items should be dropped. */ - canDrop: function (ip, dt) { + canDrop: function(ip, dt) { let dropCount = dt.mozItemCount; // Check every dragged item. @@ -1724,7 +1724,7 @@ var PlacesControllerDragHelper = { * @returns True if the node can be moved, false otherwise. */ canMoveNode: - function (aNode) { + function(aNode) { // Only bookmark items are movable. if (aNode.itemId == -1) return false; @@ -1743,7 +1743,7 @@ var PlacesControllerDragHelper = { * @param insertionPoint * The insertion point where the items should be dropped */ - onDrop: function (insertionPoint, dt) { + onDrop: function(insertionPoint, dt) { let doCopy = ["copy", "link"].indexOf(dt.dropEffect) != -1; let transactions = []; diff --git a/application/palemoon/components/places/content/editBookmarkOverlay.js b/application/palemoon/components/places/content/editBookmarkOverlay.js index abfb83883c..fcc5f5cae0 100644 --- a/application/palemoon/components/places/content/editBookmarkOverlay.js +++ b/application/palemoon/components/places/content/editBookmarkOverlay.js @@ -42,7 +42,7 @@ var gEditItemOverlay = { /** * Determines the initial data for the item edited or added by this dialog */ - _determineInfo: function (aInfo) { + _determineInfo: function(aInfo) { // hidden rows if (aInfo && aInfo.hiddenRows) this._hiddenRows = aInfo.hiddenRows; @@ -55,7 +55,7 @@ var gEditItemOverlay = { this._onPanelReady = aInfo && aInfo.onPanelReady; }, - _showHideRows: function () { + _showHideRows: function() { var isBookmark = this._itemId != -1 && this._itemType == Ci.nsINavBookmarksService.TYPE_BOOKMARK; var isQuery = false; @@ -102,7 +102,7 @@ var gEditItemOverlay = { * * forceReadOnly - set this flag to initialize the panel to its * read-only (view) mode even if the given item is editable. */ - initPanel: function (aFor, aInfo) { + initPanel: function(aFor, aInfo) { // For sanity ensure that the implementer has uninited the panel before // trying to init it again, or we could end up leaking due to observers. if (this._initialized) @@ -241,8 +241,8 @@ var gEditItemOverlay = { */ _getCommonTags: function() { return this._tags[0].filter( - function (aTag) this._tags.every( - function (aTags) aTags.indexOf(aTag) != -1 + function(aTag) this._tags.every( + function(aTags) aTags.indexOf(aTag) != -1 ), this ); }, @@ -266,7 +266,7 @@ var gEditItemOverlay = { * @return the new menu item. */ _appendFolderItemToMenupopup: - function (aMenupopup, aFolderId) { + function(aMenupopup, aFolderId) { // First make sure the folders-separator is visible this._element("foldersSeparator").hidden = false; @@ -279,7 +279,7 @@ var gEditItemOverlay = { return folderMenuItem; }, - _initFolderMenuList: function (aSelectedFolder) { + _initFolderMenuList: function(aSelectedFolder) { // clean up first var menupopup = this._folderMenuList.menupopup; while (menupopup.childNodes.length > 6) @@ -345,7 +345,7 @@ var gEditItemOverlay = { this._folderMenuList.disabled = this._readOnly; }, - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Ci.nsIDOMEventListener) || aIID.equals(Ci.nsINavBookmarkObserver) || aIID.equals(Ci.nsISupports)) @@ -354,11 +354,11 @@ var gEditItemOverlay = { throw Cr.NS_ERROR_NO_INTERFACE; }, - _element: function (aID) { + _element: function(aID) { return document.getElementById("editBMPanel_" + aID); }, - _editorTransactionManagerClear: function (aItem) { + _editorTransactionManagerClear: function(aItem) { // Clear the editor's undo stack let transactionManager; try { @@ -378,7 +378,7 @@ var gEditItemOverlay = { } }, - _getItemStaticTitle: function () { + _getItemStaticTitle: function() { if (this._titleOverride) return this._titleOverride; @@ -392,14 +392,14 @@ var gEditItemOverlay = { return title; }, - _initNamePicker: function () { + _initNamePicker: function() { var namePicker = this._element("namePicker"); namePicker.value = this._getItemStaticTitle(); namePicker.readOnly = this._readOnly; this._editorTransactionManagerClear(namePicker); }, - uninitPanel: function (aHideCollapsibleElements) { + uninitPanel: function(aHideCollapsibleElements) { if (aHideCollapsibleElements) { // hide the folder tree if it was previously visible var folderTreeRow = this._element("folderTreeRow"); @@ -438,18 +438,18 @@ var gEditItemOverlay = { this._readOnly = false; }, - onTagsFieldBlur: function () { + onTagsFieldBlur: function() { if (this._updateTags()) // if anything has changed this._mayUpdateFirstEditField("tagsField"); }, - _updateTags: function () { + _updateTags: function() { if (this._multiEdit) return this._updateMultipleTagsForItems(); return this._updateSingleTagForItem(); }, - _updateSingleTagForItem: function () { + _updateSingleTagForItem: function() { var currentTags = PlacesUtils.tagging.getTagsForURI(this._uri); var tags = this._getTagsArrayFromTagField(); if (tags.length > 0 || currentTags.length > 0) { @@ -494,7 +494,7 @@ var gEditItemOverlay = { * the id of the field that may be set (without the "editBMPanel_" * prefix) */ - _mayUpdateFirstEditField: function (aNewField) { + _mayUpdateFirstEditField: function(aNewField) { // * The first-edit-field behavior is not applied in the multi-edit case // * if this._firstEditedField is already set, this is not the first field, // so there's nothing to do @@ -509,7 +509,7 @@ var gEditItemOverlay = { prefs.setCharPref("browser.bookmarks.editDialog.firstEditField", aNewField); }, - _updateMultipleTagsForItems: function () { + _updateMultipleTagsForItems: function() { var tags = this._getTagsArrayFromTagField(); if (tags.length > 0 || this._allTags.length > 0) { var tagsToRemove = []; @@ -562,7 +562,7 @@ var gEditItemOverlay = { return false; }, - onNamePickerBlur: function () { + onNamePickerBlur: function() { if (this._itemId == -1) return; @@ -582,7 +582,7 @@ var gEditItemOverlay = { } }, - onDescriptionFieldBlur: function () { + onDescriptionFieldBlur: function() { var description = this._element("descriptionField").value; if (description != PlacesUIUtils.getItemDescription(this._itemId)) { var annoObj = { name : PlacesUIUtils.DESCRIPTION_ANNO, @@ -595,7 +595,7 @@ var gEditItemOverlay = { } }, - onLocationFieldBlur: function () { + onLocationFieldBlur: function() { var uri; try { uri = PlacesUIUtils.createFixedURI(this._element("locationField").value); @@ -609,7 +609,7 @@ var gEditItemOverlay = { } }, - onKeywordFieldBlur: function () { + onKeywordFieldBlur: function() { let oldKeyword = this._keyword; let keyword = this._keyword = this._element("keywordField").value; if (keyword != oldKeyword) { @@ -622,7 +622,7 @@ var gEditItemOverlay = { }, onLoadInSidebarCheckboxCommand: - function () { + function() { let annoObj = { name : PlacesUIUtils.LOAD_IN_SIDEBAR_ANNO }; if (this._element("loadInSidebarCheckbox").checked) annoObj.value = true; @@ -630,7 +630,7 @@ var gEditItemOverlay = { PlacesUtils.transactionManager.doTransaction(txn); }, - toggleFolderTreeVisibility: function () { + toggleFolderTreeVisibility: function() { var expander = this._element("foldersExpander"); var folderTreeRow = this._element("folderTreeRow"); if (!folderTreeRow.collapsed) { @@ -664,7 +664,7 @@ var gEditItemOverlay = { }, _getFolderIdFromMenuList: - function () { + function() { var selectedItem = this._folderMenuList.selectedItem; NS_ASSERT("folderId" in selectedItem, "Invalid menuitem in the folders-menulist"); @@ -680,7 +680,7 @@ var gEditItemOverlay = { * The identifier of the bookmarks folder. */ _getFolderMenuItem: - function (aFolderId) { + function(aFolderId) { var menupopup = this._folderMenuList.menupopup; for (let i = 0; i < menupopup.childNodes.length; i++) { @@ -696,7 +696,7 @@ var gEditItemOverlay = { return this._appendFolderItemToMenupopup(menupopup, aFolderId); }, - onFolderMenuListCommand: function (aEvent) { + onFolderMenuListCommand: function(aEvent) { // Set a selectedIndex attribute to show special icons this._folderMenuList.setAttribute("selectedIndex", this._folderMenuList.selectedIndex); @@ -739,7 +739,7 @@ var gEditItemOverlay = { } }, - onFolderTreeSelect: function () { + onFolderTreeSelect: function() { var selectedNode = this._folderTree.selectedNode; // Disable the "New Folder" button if we cannot create a new folder @@ -759,7 +759,7 @@ var gEditItemOverlay = { }, _markFolderAsRecentlyUsed: - function (aFolderId) { + function(aFolderId) { var txns = []; // Expire old unused recent folders @@ -789,7 +789,7 @@ var gEditItemOverlay = { * with the transaction manager. */ _getLastUsedAnnotationObject: - function (aLastUsed) { + function(aLastUsed) { var anno = { name: LAST_USED_ANNO, type: Ci.nsIAnnotationService.TYPE_INT32, flags: 0, @@ -799,7 +799,7 @@ var gEditItemOverlay = { return anno; }, - _rebuildTagsSelectorList: function () { + _rebuildTagsSelectorList: function() { var tagsSelector = this._element("tagsSelector"); var tagsSelectorRow = this._element("tagsSelectorRow"); if (tagsSelectorRow.collapsed) @@ -842,7 +842,7 @@ var gEditItemOverlay = { } }, - toggleTagsSelector: function () { + toggleTagsSelector: function() { var tagsSelector = this._element("tagsSelector"); var tagsSelectorRow = this._element("tagsSelectorRow"); var expander = this._element("tagsSelectorExpander"); @@ -869,14 +869,14 @@ var gEditItemOverlay = { * * @return Array of tag strings found in the field value. */ - _getTagsArrayFromTagField: function () { + _getTagsArrayFromTagField: function() { let tags = this._element("tagsField").value; return tags.trim() .split(/\s*,\s*/) // Split on commas and remove spaces. - .filter(function (tag) tag.length > 0); // Kill empty tags. + .filter(function(tag) tag.length > 0); // Kill empty tags. }, - newFolder: function () { + newFolder: function() { var ip = this._folderTree.insertionPoint; // default to the bookmarks menu folder @@ -897,7 +897,7 @@ var gEditItemOverlay = { }, // nsIDOMEventListener - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "CheckboxStateChange": // Update the tags field when items are checked/unchecked in the listbox @@ -927,7 +927,7 @@ var gEditItemOverlay = { }, // nsINavBookmarkObserver - onItemChanged: function (aItemId, aProperty, + onItemChanged: function(aItemId, aProperty, aIsAnnotationProperty, aValue, aLastModified, aItemType) { if (aProperty == "tags") { @@ -940,7 +940,7 @@ var gEditItemOverlay = { // Check if the changed uri is part of the modified ones. let changedURI = PlacesUtils.bookmarks.getBookmarkURI(aItemId); let uris = this._multiEdit ? this._uris : [this._uri]; - uris.forEach(function (aURI, aIndex) { + uris.forEach(function(aURI, aIndex) { if (aURI.equals(changedURI)) { shouldUpdateTagsField = true; if (this._multiEdit) { @@ -1038,7 +1038,7 @@ var gEditItemOverlay = { } }, - onItemMoved: function (aItemId, aOldParent, aOldIndex, + onItemMoved: function(aItemId, aOldParent, aOldIndex, aNewParent, aNewIndex, aItemType) { if (aItemId != this._itemId || aNewParent == this._getFolderIdFromMenuList()) @@ -1051,7 +1051,7 @@ var gEditItemOverlay = { this._folderMenuList.selectedItem = folderItem; }, - onItemAdded: function (aItemId, aParentId, aIndex, aItemType, + onItemAdded: function(aItemId, aParentId, aIndex, aItemType, aURI) { this._lastNewItem = aItemId; }, diff --git a/application/palemoon/components/places/content/moveBookmarks.js b/application/palemoon/components/places/content/moveBookmarks.js index d019e06df2..6b1abd483f 100644 --- a/application/palemoon/components/places/content/moveBookmarks.js +++ b/application/palemoon/components/places/content/moveBookmarks.js @@ -22,7 +22,7 @@ var gMoveBookmarksDialog = { PlacesUIUtils.allBookmarksFolderId; }, - onOK: function (aEvent) { + onOK: function(aEvent) { var selectedNode = this.foldersTree.selectedNode; NS_ASSERT(selectedNode, "selectedNode must be set in a single-selection tree with initial selection set"); @@ -46,7 +46,7 @@ var gMoveBookmarksDialog = { } }, - newFolder: function () { + newFolder: function() { // The command is disabled when the tree is not focused this.foldersTree.focus(); goDoCommand("placesCmd_new:folder"); diff --git a/application/palemoon/components/places/content/places.js b/application/palemoon/components/places/content/places.js index 0cdc753bca..6111d1e3ef 100644 --- a/application/palemoon/components/places/content/places.js +++ b/application/palemoon/components/places/content/places.js @@ -30,7 +30,7 @@ var PlacesOrganizer = { this._places.place = "place:excludeItems=1&expandQueries=0&folder=" + leftPaneRoot; }, - selectLeftPaneQuery: function (aQueryName) { + selectLeftPaneQuery: function(aQueryName) { var itemId = PlacesUIUtils.leftPaneQueries[aQueryName]; this._places.selectItems([itemId]); // Forcefully expand all-bookmarks @@ -38,7 +38,7 @@ var PlacesOrganizer = { PlacesUtils.asContainer(this._places.selectedNode).containerOpen = true; }, - init: function () { + init: function() { ContentArea.init(); this._places = document.getElementById("placesList"); @@ -91,7 +91,7 @@ var PlacesOrganizer = { ContentArea.focus(); }, - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Components.interfaces.nsIDOMEventListener) || aIID.equals(Components.interfaces.nsISupports)) return this; @@ -99,7 +99,7 @@ var PlacesOrganizer = { throw new Components.Exception("", Components.results.NS_NOINTERFACE); }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { if (aEvent.type != "AppCommand") return; @@ -119,7 +119,7 @@ var PlacesOrganizer = { } }, - destroy: function () { + destroy: function() { }, _location: null, @@ -161,13 +161,13 @@ var PlacesOrganizer = { _backHistory: [], _forwardHistory: [], - back: function () { + back: function() { this._forwardHistory.unshift(this.location); var historyEntry = this._backHistory.shift(); this._location = null; this.location = historyEntry; }, - forward: function () { + forward: function() { this._backHistory.unshift(this.location); var historyEntry = this._forwardHistory.shift(); this._location = null; @@ -185,7 +185,7 @@ var PlacesOrganizer = { * deleting its text, this will be false. */ _cachedLeftPaneSelectedURI: null, - onPlaceSelected: function (resetSearchBox) { + onPlaceSelected: function(resetSearchBox) { // Don't change the right-hand pane contents when there's no selection. if (!this._places.hasSelection) return; @@ -243,7 +243,7 @@ var PlacesOrganizer = { * @param aNode * the node to set up scope from */ - _setSearchScopeForNode: function (aNode) { + _setSearchScopeForNode: function(aNode) { let itemId = aNode.itemId; // Set default buttons status. @@ -279,7 +279,7 @@ var PlacesOrganizer = { * @param aEvent * The mouse event. */ - onPlacesListClick: function (aEvent) { + onPlacesListClick: function(aEvent) { // Only handle clicks on tree children. if (aEvent.target.localName != "treechildren") return; @@ -299,7 +299,7 @@ var PlacesOrganizer = { /** * Handle focus changes on the places list and the current content view. */ - updateDetailsPane: function () { + updateDetailsPane: function() { if (!ContentArea.currentViewOptions.showDetailsPane) return; let view = PlacesUIUtils.getViewForNode(document.activeElement); @@ -310,7 +310,7 @@ var PlacesOrganizer = { } }, - openFlatContainer: function (aContainer) { + openFlatContainer: function(aContainer) { if (aContainer.itemId != -1) this._places.selectItems([aContainer.itemId]); else if (PlacesUtils.nodeIsQuery(aContainer)) @@ -321,7 +321,7 @@ var PlacesOrganizer = { * Returns the options associated with the query currently loaded in the * main places pane. */ - getCurrentOptions: function () { + getCurrentOptions: function() { return PlacesUtils.asQuery(ContentArea.currentView.result.root).queryOptions; }, @@ -329,14 +329,14 @@ var PlacesOrganizer = { * Returns the queries associated with the query currently loaded in the * main places pane. */ - getCurrentQueries: function () { + getCurrentQueries: function() { return PlacesUtils.asQuery(ContentArea.currentView.result.root).getQueries(); }, /** * Open a file-picker and import the selected file into the bookmarks store */ - importFromFile: function () { + importFromFile: function() { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { if (aResult != Ci.nsIFilePicker.returnCancel && fp.fileURL) { @@ -355,7 +355,7 @@ var PlacesOrganizer = { /** * Allows simple exporting of bookmarks. */ - exportBookmarks: function () { + exportBookmarks: function() { let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); let fpCallback = function fpCallback_done(aResult) { if (aResult != Ci.nsIFilePicker.returnCancel) { @@ -375,7 +375,7 @@ var PlacesOrganizer = { /** * Populates the restore menu with the dates of the backups available. */ - populateRestoreMenu: function () { + populateRestoreMenu: function() { let restorePopup = document.getElementById("fileRestorePopup"); let dateSvc = Cc["@mozilla.org/intl/scriptabledateformat;1"]. @@ -432,7 +432,7 @@ var PlacesOrganizer = { /** * Called when a menuitem is selected from the restore menu. */ - onRestoreMenuItemClick: function (aMenuItem) { + onRestoreMenuItemClick: function(aMenuItem) { Task.spawn(function() { let backupName = aMenuItem.getAttribute("value"); let backupFilePaths = yield PlacesBackups.getBackupFiles(); @@ -449,7 +449,7 @@ var PlacesOrganizer = { * Called when 'Choose File...' is selected from the restore menu. * Prompts for a file and restores bookmarks to those in the file. */ - onRestoreBookmarksFromFile: function () { + onRestoreBookmarksFromFile: function() { let dirSvc = Cc["@mozilla.org/file/directory_service;1"]. getService(Ci.nsIProperties); let backupsDir = dirSvc.get("Desk", Ci.nsILocalFile); @@ -472,7 +472,7 @@ var PlacesOrganizer = { /** * Restores bookmarks from a JSON file. */ - restoreBookmarksFromFile: function (aFile) { + restoreBookmarksFromFile: function(aFile) { // check file extension let filePath = aFile.path; if (!filePath.toLowerCase().endsWith("json") && @@ -498,7 +498,7 @@ var PlacesOrganizer = { }); }, - _showErrorAlert: function (aMsg) { + _showErrorAlert: function(aMsg) { var brandShortName = document.getElementById("brandStrings"). getString("brandShortName"); @@ -512,7 +512,7 @@ var PlacesOrganizer = { * The file is a JSON serialization of bookmarks, tags and any annotations * of those items. */ - backupBookmarks: function () { + backupBookmarks: function() { let dirSvc = Cc["@mozilla.org/file/directory_service;1"]. getService(Ci.nsIProperties); let backupsDir = dirSvc.get("Desk", Ci.nsILocalFile); @@ -534,7 +534,7 @@ var PlacesOrganizer = { _paneDisabled: false, _setDetailsFieldsDisabledState: - function (aDisabled) { + function(aDisabled) { if (aDisabled) { document.getElementById("paneElementsBroadcaster") .setAttribute("disabled", "true"); @@ -546,7 +546,7 @@ var PlacesOrganizer = { }, _detectAndSetDetailsPaneMinimalState: - function (aNode) { + function(aNode) { /** * The details of simple folder-items (as opposed to livemarks) or the * of livemark-children are not likely to fill the infoBox anyway, @@ -576,14 +576,14 @@ var PlacesOrganizer = { infoBox.setAttribute("minimal", "true"); infoBox.removeAttribute("wasminimal"); infoBoxExpanderWrapper.hidden = - this._additionalInfoFields.every(function (id) + this._additionalInfoFields.every(function(id) document.getElementById(id).collapsed); } additionalInfoBroadcaster.hidden = infoBox.getAttribute("minimal") == "true"; }, // NOT YET USED - updateThumbnailProportions: function () { + updateThumbnailProportions: function() { var previewBox = document.getElementById("previewBox"); var canvas = document.getElementById("itemThumbnail"); var height = previewBox.boxObject.height; @@ -592,7 +592,7 @@ var PlacesOrganizer = { canvas.height = height; }, - _fillDetailsPane: function (aNodeList) { + _fillDetailsPane: function(aNodeList) { var infoBox = document.getElementById("infoBox"); var detailsDeck = document.getElementById("detailsDeck"); @@ -716,7 +716,7 @@ var PlacesOrganizer = { }, // NOT YET USED - _updateThumbnail: function () { + _updateThumbnail: function() { var bo = document.getElementById("previewBox").boxObject; var width = bo.width; var height = bo.height; @@ -737,7 +737,7 @@ var PlacesOrganizer = { ctx.restore(); }, - toggleAdditionalInfoFields: function () { + toggleAdditionalInfoFields: function() { var infoBox = document.getElementById("infoBox"); var infoBoxExpander = document.getElementById("infoBoxExpander"); var infoBoxExpanderLabel = document.getElementById("infoBoxExpanderLabel"); @@ -762,7 +762,7 @@ var PlacesOrganizer = { /** * Save the current search (or advanced query) to the bookmarks root. */ - saveSearch: function () { + saveSearch: function() { // Get the place: uri for the query. // If the advanced query builder is showing, use that. var options = this.getCurrentOptions(); @@ -840,7 +840,7 @@ var PlacesSearchBox = { * @param filterString * The text to search for. */ - search: function (filterString) { + search: function(filterString) { var PO = PlacesOrganizer; // If the user empties the search box manually, reset it and load all // contents of the current scope. @@ -909,7 +909,7 @@ var PlacesSearchBox = { /** * Finds across all history, downloads or all bookmarks. */ - findAll: function () { + findAll: function() { switch (this.filterCollection) { case "history": PlacesQueryBuilder.setScope("history"); @@ -929,7 +929,7 @@ var PlacesSearchBox = { * @param aTitle * The title of the current collection. */ - updateCollectionTitle: function (aTitle) { + updateCollectionTitle: function(aTitle) { let title = ""; // This is needed when a user performs a folder-specific search // using the scope bar, removes the search-string, and unfocuses @@ -978,14 +978,14 @@ var PlacesSearchBox = { /** * Focus the search box */ - focus: function () { + focus: function() { this.searchFilter.focus(); }, /** * Set up the gray text in the search bar as the Places View loads. */ - init: function () { + init: function() { this.updateCollectionTitle(); }, @@ -999,13 +999,13 @@ var PlacesSearchBox = { return this.searchFilter.value = value; }, - showSearchUI: function () { + showSearchUI: function() { // Hide the advanced search controls when the user hasn't searched var searchModifiers = document.getElementById("searchModifiers"); searchModifiers.hidden = false; }, - hideSearchUI: function () { + hideSearchUI: function() { var searchModifiers = document.getElementById("searchModifiers"); searchModifiers.hidden = true; } @@ -1024,7 +1024,7 @@ var PlacesQueryBuilder = { * @param aButton * the scope button that was selected */ - onScopeSelected: function (aButton) { + onScopeSelected: function(aButton) { switch (aButton.id) { case "scopeBarHistory": this.setScope("history"); @@ -1054,7 +1054,7 @@ var PlacesQueryBuilder = { * The search scope: "bookmarks", "collection", "downloads" or * "history". */ - setScope: function (aScope) { + setScope: function(aScope) { // Determine filterCollection, folders, and scopeButtonId based on aScope. var filterCollection; var folders = []; @@ -1130,7 +1130,7 @@ var ViewMenu = { * @returns The element for the caller to insert new items before, * null if the caller should just append to the popup. */ - _clean: function (popup, startID, endID) { + _clean: function(popup, startID, endID) { if (endID) NS_ASSERT(startID, "meaningless to have valid endID and null startID"); if (startID) { @@ -1179,7 +1179,7 @@ var ViewMenu = { * If propertyPrefix is null, the column label is used as label and * no accesskey is assigned. */ - fillWithColumns: function (event, startID, endID, type, propertyPrefix) { + fillWithColumns: function(event, startID, endID, type, propertyPrefix) { var popup = event.target; var pivot = this._clean(popup, startID, endID); @@ -1242,7 +1242,7 @@ var ViewMenu = { /** * Set up the content of the view menu. */ - populateSortMenu: function (event) { + populateSortMenu: function(event) { this.fillWithColumns(event, "viewUnsorted", "directionSeparator", "radio", "view.sortBy."); var sortColumn = this._getSortColumn(); @@ -1273,7 +1273,7 @@ var ViewMenu = { * @param element * The menuitem element for the column */ - showHideColumn: function (element) { + showHideColumn: function(element) { var column = element.column; var splitter = column.nextSibling; @@ -1296,7 +1296,7 @@ var ViewMenu = { * Gets the last column that was sorted. * @returns the currently sorted column, null if there is no sorted column. */ - _getSortColumn: function () { + _getSortColumn: function() { var content = document.getElementById("placeContent"); var cols = content.columns; for (var i = 0; i < cols.count; ++i) { @@ -1319,7 +1319,7 @@ var ViewMenu = { * * If both aColumnID and aDirection are null, the view will be unsorted. */ - setSortColumn: function (aColumn, aDirection) { + setSortColumn: function(aColumn, aDirection) { var result = document.getElementById("placeContent").result; if (!aColumn && !aDirection) { result.sortingMode = Ci.nsINavHistoryQueryOptions.SORT_BY_NONE; @@ -1380,7 +1380,7 @@ var ViewMenu = { var ContentArea = { _specialViews: new Map(), - init: function () { + init: function() { this._deck = document.getElementById("placesViewsDeck"); this._toolbar = document.getElementById("placesToolbar"); ContentTree.init(); @@ -1397,7 +1397,7 @@ var ContentArea = { * @return the view to be used for loading aQueryString. */ getContentViewForQueryString: - function (aQueryString) { + function(aQueryString) { try { if (this._specialViews.has(aQueryString)) { let { view, options } = this._specialViews.get(aQueryString); @@ -1427,7 +1427,7 @@ var ContentArea = { * @see ContentTree.viewOptions for supported options and default values. */ setContentViewForQueryString: - function (aQueryString, aView, aOptions) { + function(aQueryString, aView, aOptions) { if (!aQueryString || typeof aView != "object" && typeof aView != "function") throw new Components.Exception("Invalid arguments", @@ -1468,7 +1468,7 @@ var ContentArea = { /** * Applies view options. */ - _setupView: function () { + _setupView: function() { let options = this.currentViewOptions; // showDetailsPane. @@ -1512,7 +1512,7 @@ var ContentArea = { }; var ContentTree = { - init: function () { + init: function() { this._view = document.getElementById("placeContent"); }, @@ -1523,12 +1523,12 @@ var ContentTree = { toolbarSet: "back-button, forward-button, organizeButton, viewMenu, maintenanceButton, libraryToolbarSpacer, searchFilter" }), - openSelectedNode: function (aEvent) { + openSelectedNode: function(aEvent) { let view = this.view; PlacesUIUtils.openNodeWithEvent(view.selectedNode, aEvent, view); }, - onClick: function (aEvent) { + onClick: function(aEvent) { let node = this.view.selectedNode; if (node) { let doubleClick = aEvent.button == 0 && aEvent.detail == 2; @@ -1546,7 +1546,7 @@ var ContentTree = { } }, - onKeyPress: function (aEvent) { + onKeyPress: function(aEvent) { if (aEvent.keyCode == KeyEvent.DOM_VK_RETURN) this.openSelectedNode(aEvent); } diff --git a/application/palemoon/components/places/content/sidebarUtils.js b/application/palemoon/components/places/content/sidebarUtils.js index bf6c465664..c111d01d8d 100644 --- a/application/palemoon/components/places/content/sidebarUtils.js +++ b/application/palemoon/components/places/content/sidebarUtils.js @@ -4,7 +4,7 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. var SidebarUtils = { - handleTreeClick: function (aTree, aEvent, aGutterSelect) { + handleTreeClick: function(aTree, aEvent, aGutterSelect) { // right-clicks are not handled here if (aEvent.button == 2) return; @@ -61,7 +61,7 @@ var SidebarUtils = { } }, - handleTreeKeyPress: function (aEvent) { + handleTreeKeyPress: function(aEvent) { // XXX Bug 627901: Post Fx4, this method should take a tree parameter. let tree = aEvent.target; let node = tree.selectedNode; @@ -75,7 +75,7 @@ var SidebarUtils = { * The following function displays the URL of a node that is being * hovered over. */ - handleTreeMouseMove: function (aEvent) { + handleTreeMouseMove: function(aEvent) { if (aEvent.target.localName != "treechildren") return; @@ -97,7 +97,7 @@ var SidebarUtils = { this.setMouseoverURL(""); }, - setMouseoverURL: function (aURL) { + setMouseoverURL: function(aURL) { // When the browser window is closed with an open sidebar, the sidebar // unload event happens after the browser's one. In this case // top.XULBrowserWindow has been nullified already. diff --git a/application/palemoon/components/places/content/treeView.js b/application/palemoon/components/places/content/treeView.js index 0d28e42953..db31ceebe0 100644 --- a/application/palemoon/components/places/content/treeView.js +++ b/application/palemoon/components/places/content/treeView.js @@ -47,7 +47,7 @@ PlacesTreeView.prototype = { /** * This is called once both the result and the tree are set. */ - _finishInit: function () { + _finishInit: function() { let selection = this.selection; if (selection) selection.selectEventsSuppressed = true; @@ -88,7 +88,7 @@ PlacesTreeView.prototype = { * * @return true if aContainer is a plain container, false otherwise. */ - _isPlainContainer: function (aContainer) { + _isPlainContainer: function(aContainer) { // Livemarks are always plain containers. if (this._controller.hasCachedLivemarkInfo(aContainer)) return true; @@ -137,7 +137,7 @@ PlacesTreeView.prototype = { * otherwise. */ _getRowForNode: - function (aNode, aForceBuild, aParentRow, aNodeIndex) { + function(aNode, aForceBuild, aParentRow, aNodeIndex) { if (aNode == this._rootNode) throw new Error("The root node is never visible"); @@ -206,7 +206,7 @@ PlacesTreeView.prototype = { * Row number. * @return [parentNode, parentRow] */ - _getParentByChildRow: function (aChildRow) { + _getParentByChildRow: function(aChildRow) { let node = this._getNodeForRow(aChildRow); let parent = (node === null) ? this._rootNode : node.parent; @@ -221,7 +221,7 @@ PlacesTreeView.prototype = { /** * Gets the node at a given row. */ - _getNodeForRow: function (aRow) { + _getNodeForRow: function(aRow) { if (aRow < 0) { return null; } @@ -267,7 +267,7 @@ PlacesTreeView.prototype = { * @return the number of rows which were inserted. */ _buildVisibleSection: - function (aContainer, aFirstChildRow, aToOpen) + function(aContainer, aFirstChildRow, aToOpen) { // There's nothing to do if the container is closed. if (!aContainer.containerOpen) @@ -333,7 +333,7 @@ PlacesTreeView.prototype = { * will count the node itself plus any child node following it. */ _countVisibleRowsForNodeAtRow: - function (aNodeRow) { + function(aNodeRow) { let node = this._rows[aNodeRow]; // If it's not listed yet, we know that it's a leaf node (instanceof also @@ -353,7 +353,7 @@ PlacesTreeView.prototype = { }, _getSelectedNodesInRange: - function (aFirstRow, aLastRow) { + function(aFirstRow, aLastRow) { let selection = this.selection; let rc = selection.getRangeCount(); if (rc == 0) @@ -404,7 +404,7 @@ PlacesTreeView.prototype = { * found, -1 otherwise. */ _getNewRowForRemovedNode: - function (aUpdatedContainer, aOldNode) { + function(aUpdatedContainer, aOldNode) { if (aOldNode == undefined) { return -1; } @@ -449,7 +449,7 @@ PlacesTreeView.prototype = { * The container which was updated. */ _restoreSelection: - function (aNodesInfo, aUpdatedContainer) { + function(aNodesInfo, aUpdatedContainer) { if (aNodesInfo.length == 0) return; @@ -485,7 +485,7 @@ PlacesTreeView.prototype = { this._tree.ensureRowIsVisible(scrollToRow); }, - _convertPRTimeToString: function (aTime) { + _convertPRTimeToString: function(aTime) { const MS_PER_MINUTE = 60000; const MS_PER_DAY = 86400000; let timeMs = aTime / 1000; // PRTime is in microseconds @@ -524,7 +524,7 @@ PlacesTreeView.prototype = { COLUMN_TYPE_PARENTFOLDER: 10, COLUMN_TYPE_PARENTFOLDERPATH: 11, - _getColumnType: function (aColumn) { + _getColumnType: function(aColumn) { let columnType = aColumn.element.getAttribute("anonid") || aColumn.id; switch (columnType) { @@ -554,7 +554,7 @@ PlacesTreeView.prototype = { return this.COLUMN_TYPE_UNKNOWN; }, - _sortTypeToColumnType: function (aSortType) { + _sortTypeToColumnType: function(aSortType) { switch (aSortType) { case Ci.nsINavHistoryQueryOptions.SORT_BY_TITLE_ASCENDING: return [this.COLUMN_TYPE_TITLE, false]; @@ -600,7 +600,7 @@ PlacesTreeView.prototype = { }, // nsINavHistoryResultObserver - nodeInserted: function (aParentNode, aNode, aNewIndex) { + nodeInserted: function(aParentNode, aNode, aNewIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -674,7 +674,7 @@ PlacesTreeView.prototype = { * However, we won't do this when sorted by date because dates will never * change for visits, and date sorting is the only time things are collapsed. */ - nodeRemoved: function (aParentNode, aNode, aOldIndex) { + nodeRemoved: function(aParentNode, aNode, aOldIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -727,7 +727,7 @@ PlacesTreeView.prototype = { }, nodeMoved: - function (aNode, aOldParent, aOldIndex, aNewParent, aNewIndex) { + function(aNode, aOldParent, aOldIndex, aNewParent, aNewIndex) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) return; @@ -773,7 +773,7 @@ PlacesTreeView.prototype = { } }, - _invalidateCellValue: function (aNode, + _invalidateCellValue: function(aNode, aColumnType) { NS_ASSERT(this._result, "Got a notification but have no result!"); if (!this._tree || !this._result) @@ -800,7 +800,7 @@ PlacesTreeView.prototype = { } }, - _populateLivemarkContainer: function (aNode) { + _populateLivemarkContainer: function(aNode) { PlacesUtils.livemarks.getLivemark({ id: aNode.itemId }) .then(aLivemark => { let placesNode = aNode; @@ -816,20 +816,20 @@ PlacesTreeView.prototype = { }, Components.utils.reportError); }, - nodeTitleChanged: function (aNode, aNewTitle) { + nodeTitleChanged: function(aNode, aNewTitle) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE); }, - nodeURIChanged: function (aNode, aNewURI) { + nodeURIChanged: function(aNode, aNewURI) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_URI); }, - nodeIconChanged: function (aNode) { + nodeIconChanged: function(aNode) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TITLE); }, nodeHistoryDetailsChanged: - function (aNode, aUpdatedVisitDate, + function(aNode, aUpdatedVisitDate, aUpdatedVisitCount) { if (aNode.parent && this._controller.hasCachedLivemarkInfo(aNode.parent)) { // Find the node in the parent. @@ -849,15 +849,15 @@ PlacesTreeView.prototype = { this._invalidateCellValue(aNode, this.COLUMN_TYPE_VISITCOUNT); }, - nodeTagsChanged: function (aNode) { + nodeTagsChanged: function(aNode) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_TAGS); }, - nodeKeywordChanged: function (aNode, aNewKeyword) { + nodeKeywordChanged: function(aNode, aNewKeyword) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_KEYWORD); }, - nodeAnnotationChanged: function (aNode, aAnno) { + nodeAnnotationChanged: function(aNode, aAnno) { if (aAnno == PlacesUIUtils.DESCRIPTION_ANNO) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_DESCRIPTION); } @@ -873,17 +873,17 @@ PlacesTreeView.prototype = { } }, - nodeDateAddedChanged: function (aNode, aNewValue) { + nodeDateAddedChanged: function(aNode, aNewValue) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_DATEADDED); }, nodeLastModifiedChanged: - function (aNode, aNewValue) { + function(aNode, aNewValue) { this._invalidateCellValue(aNode, this.COLUMN_TYPE_LASTMODIFIED); }, containerStateChanged: - function (aNode, aOldState, aNewState) { + function(aNode, aOldState, aNewState) { this.invalidateContainer(aNode); if (PlacesUtils.nodeIsFolder(aNode) || @@ -914,7 +914,7 @@ PlacesTreeView.prototype = { } }, - invalidateContainer: function (aContainer) { + invalidateContainer: function(aContainer) { NS_ASSERT(this._result, "Need to have a result to update"); if (!this._tree) return; @@ -1020,7 +1020,7 @@ PlacesTreeView.prototype = { }, _columns: [], - _findColumnByType: function (aColumnType) { + _findColumnByType: function(aColumnType) { if (this._columns[aColumnType]) return this._columns[aColumnType]; @@ -1039,7 +1039,7 @@ PlacesTreeView.prototype = { return null; }, - sortingChanged: function (aSortingMode) { + sortingChanged: function(aSortingMode) { if (!this._tree || !this._result) return; @@ -1068,7 +1068,7 @@ PlacesTreeView.prototype = { }, _inBatchMode: false, - batching: function (aToggleMode) { + batching: function(aToggleMode) { if (this._inBatchMode != aToggleMode) { this._inBatchMode = this.selection.selectEventsSuppressed = aToggleMode; if (this._inBatchMode) { @@ -1107,14 +1107,14 @@ PlacesTreeView.prototype = { return val; }, - nodeForTreeIndex: function (aIndex) { + nodeForTreeIndex: function(aIndex) { if (aIndex > this._rows.length) throw Cr.NS_ERROR_INVALID_ARG; return this._getNodeForRow(aIndex); }, - treeIndexForNode: function (aNode) { + treeIndexForNode: function(aNode) { // The API allows passing invisible nodes. try { return this._getRowForNode(aNode, true); @@ -1124,7 +1124,7 @@ PlacesTreeView.prototype = { return Ci.nsINavHistoryResultTreeViewer.INDEX_INVISIBLE; }, - _getResourceForNode: function (aNode) + _getResourceForNode: function(aNode) { let uri = aNode.uri; NS_ASSERT(uri, "if there is no uri, we can't persist the open state"); @@ -1139,7 +1139,7 @@ PlacesTreeView.prototype = { getRowProperties: function() { return ""; }, getCellProperties: - function (aRow, aColumn) { + function(aRow, aColumn) { // for anonid-trees, we need to add the column-type manually var props = ""; let columnType = aColumn.element.getAttribute("anonid"); @@ -1220,7 +1220,7 @@ PlacesTreeView.prototype = { getColumnProperties: function(aColumn) { return ""; }, - isContainer: function (aRow) { + isContainer: function(aRow) { // Only leaf nodes aren't listed in the rows array. let node = this._rows[aRow]; if (node === undefined) @@ -1245,7 +1245,7 @@ PlacesTreeView.prototype = { return false; }, - isContainerOpen: function (aRow) { + isContainerOpen: function(aRow) { if (this._flatList) return false; @@ -1253,7 +1253,7 @@ PlacesTreeView.prototype = { return this._rows[aRow].containerOpen; }, - isContainerEmpty: function (aRow) { + isContainerEmpty: function(aRow) { if (this._flatList) return true; @@ -1267,18 +1267,18 @@ PlacesTreeView.prototype = { return !node.hasChildren; }, - isSeparator: function (aRow) { + isSeparator: function(aRow) { // All separators are listed in the rows array. let node = this._rows[aRow]; return node && PlacesUtils.nodeIsSeparator(node); }, - isSorted: function () { + isSorted: function() { return this._result.sortingMode != Ci.nsINavHistoryQueryOptions.SORT_BY_NONE; }, - canDrop: function (aRow, aOrientation, aDataTransfer) { + canDrop: function(aRow, aOrientation, aDataTransfer) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1290,7 +1290,7 @@ PlacesTreeView.prototype = { return ip && PlacesControllerDragHelper.canDrop(ip, aDataTransfer); }, - _getInsertionPoint: function (index, orientation) { + _getInsertionPoint: function(index, orientation) { let container = this._result.root; let dropNearItemId = -1; // When there's no selection, assume the container is the container @@ -1361,7 +1361,7 @@ PlacesTreeView.prototype = { dropNearItemId); }, - drop: function (aRow, aOrientation, aDataTransfer) { + drop: function(aRow, aOrientation, aDataTransfer) { // We are responsible for translating the |index| and |orientation| // parameters into a container id and index within the container, // since this information is specific to the tree view. @@ -1372,12 +1372,12 @@ PlacesTreeView.prototype = { PlacesControllerDragHelper.currentDropTarget = null; }, - getParentIndex: function (aRow) { + getParentIndex: function(aRow) { let [parentNode, parentRow] = this._getParentByChildRow(aRow); return parentRow; }, - hasNextSibling: function (aRow, aAfterIndex) { + hasNextSibling: function(aRow, aAfterIndex) { if (aRow == this._rows.length - 1) { // The last row has no sibling. return false; @@ -1407,7 +1407,7 @@ PlacesTreeView.prototype = { getLevel: function(aRow) this._getNodeForRow(aRow).indentLevel, - getImageSrc: function (aRow, aColumn) { + getImageSrc: function(aRow, aColumn) { // Only the title column has an image. if (this._getColumnType(aColumn) != this.COLUMN_TYPE_TITLE) return ""; @@ -1418,7 +1418,7 @@ PlacesTreeView.prototype = { getProgressMode: function(aRow, aColumn) { }, getCellValue: function(aRow, aColumn) { }, - getCellText: function (aRow, aColumn) { + getCellText: function(aRow, aColumn) { let node = this._getNodeForRow(aRow); switch (this._getColumnType(aColumn)) { case this.COLUMN_TYPE_TITLE: @@ -1515,7 +1515,7 @@ PlacesTreeView.prototype = { return ""; }, - setTree: function (aTree) { + setTree: function(aTree) { // If we are replacing the tree during a batch, there is a concrete risk // that the treeView goes out of sync, thus it's safer to end the batch now. // This is a no-op if we are not batching. @@ -1538,7 +1538,7 @@ PlacesTreeView.prototype = { } }, - toggleOpenState: function (aRow) { + toggleOpenState: function(aRow) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1565,7 +1565,7 @@ PlacesTreeView.prototype = { node.containerOpen = !node.containerOpen; }, - cycleHeader: function (aColumn) { + cycleHeader: function(aColumn) { if (!this._result) throw Cr.NS_ERROR_UNEXPECTED; @@ -1697,7 +1697,7 @@ PlacesTreeView.prototype = { this._result.sortingMode = newSort; }, - isEditable: function (aRow, aColumn) { + isEditable: function(aRow, aColumn) { // At this point we only support editing the title field. if (aColumn.index != 0) return false; @@ -1740,7 +1740,7 @@ PlacesTreeView.prototype = { return true; }, - setCellText: function (aRow, aColumn, aText) { + setCellText: function(aRow, aColumn, aText) { // We may only get here if the cell is editable. let node = this._rows[aRow]; if (node.title != aText) { @@ -1749,7 +1749,7 @@ PlacesTreeView.prototype = { } }, - toggleCutNode: function (aNode, aValue) { + toggleCutNode: function(aNode, aValue) { let currentVal = this._cuttingNodes.has(aNode); if (currentVal != aValue) { if (aValue) diff --git a/application/palemoon/components/preferences/advanced.js b/application/palemoon/components/preferences/advanced.js index 654f9f32a6..7bcf2130ed 100644 --- a/application/palemoon/components/preferences/advanced.js +++ b/application/palemoon/components/preferences/advanced.js @@ -16,7 +16,7 @@ var gAdvancedPane = { /** * Brings the appropriate tab to the front and initializes various bits of UI. */ - init: function () + init: function() { this._inited = true; var advancedPrefs = document.getElementById("advancedPrefs"); @@ -61,7 +61,7 @@ var gAdvancedPane = { * Stores the identity of the current tab in preferences so that the selected * tab can be persisted between openings of the preferences window. */ - tabSelectionChanged: function () + tabSelectionChanged: function() { if (!this._inited) return; @@ -109,7 +109,7 @@ var gAdvancedPane = { * the current value to enable proper pref restoration if the checkbox is * never changed. */ - readCheckSpelling: function () + readCheckSpelling: function() { var pref = document.getElementById("layout.spellcheckDefault"); this._storedSpellCheck = pref.value; @@ -122,7 +122,7 @@ var gAdvancedPane = { * preserving the preference's "hidden" value if the preference is * unchanged and represents a value not strictly allowed in UI. */ - writeCheckSpelling: function () + writeCheckSpelling: function() { var checkbox = document.getElementById("checkSpelling"); return checkbox.checked ? (this._storedSpellCheck == 2 ? 2 : 1) : 0; @@ -132,7 +132,7 @@ var gAdvancedPane = { * security.OCSP.enabled is an integer value for legacy reasons. * A value of 1 means OCSP is enabled. Any other value means it is disabled. */ - readEnableOCSP: function () + readEnableOCSP: function() { var preference = document.getElementById("security.OCSP.enabled"); // This is the case if the preference is the default value. @@ -145,7 +145,7 @@ var gAdvancedPane = { /** * See documentation for readEnableOCSP. */ - writeEnableOCSP: function () + writeEnableOCSP: function() { var checkbox = document.getElementById("enableOCSP"); return checkbox.checked ? 1 : 0; @@ -178,7 +178,7 @@ var gAdvancedPane = { /** * opening links behind a modal dialog is poor form. Work around flawed text-link handling here. */ - openTextLink: function (evt) { + openTextLink: function(evt) { let where = Services.prefs.getBoolPref("browser.preferences.instantApply") ? "tab" : "window"; openUILinkIn(evt.target.getAttribute("href"), where); evt.preventDefault(); @@ -187,7 +187,7 @@ var gAdvancedPane = { /** * Set up or hide the Learn More links for various data collection options */ - _setupLearnMoreLink: function (pref, element) { + _setupLearnMoreLink: function(pref, element) { // set up the Learn More link with the correct URL let url = Services.prefs.getCharPref(pref); let el = document.getElementById(element); @@ -212,14 +212,14 @@ var gAdvancedPane = { /** * Displays a dialog in which proxy settings may be changed. */ - showConnections: function () + showConnections: function() { document.documentElement.openSubDialog("chrome://browser/content/preferences/connection.xul", "", null); }, // Retrieves the amount of space currently used by disk cache - updateActualCacheSize: function () + updateActualCacheSize: function() { var sum = 0; function updateUI(consumption) { @@ -233,7 +233,7 @@ var gAdvancedPane = { Visitor.prototype = { expected: 0, sum: 0, - QueryInterface: function (iid) { + QueryInterface: function(iid) { if (iid.equals(Components.interfaces.nsISupports) || iid.equals(Components.interfaces.nsICacheStorageVisitor)) { return this; @@ -266,10 +266,10 @@ var gAdvancedPane = { }, // Retrieves the amount of space currently used by offline cache - updateActualAppCacheSize: function () + updateActualAppCacheSize: function() { var visitor = { - onCacheStorageInfo: function (aEntryCount, aConsumption, aCapacity, aDiskDirectory) + onCacheStorageInfo: function(aEntryCount, aConsumption, aCapacity, aDiskDirectory) { var actualSizeLabel = document.getElementById("actualAppCacheSize"); var sizeStrings = DownloadUtils.convertByteUnits(aConsumption); @@ -286,14 +286,14 @@ var gAdvancedPane = { storage.asyncVisitStorage(visitor, false); }, - updateCacheSizeUI: function (smartSizeEnabled) + updateCacheSizeUI: function(smartSizeEnabled) { document.getElementById("useCacheBefore").disabled = smartSizeEnabled; document.getElementById("cacheSize").disabled = smartSizeEnabled; document.getElementById("useCacheAfter").disabled = smartSizeEnabled; }, - readSmartSizeEnabled: function () + readSmartSizeEnabled: function() { // The smart_size.enabled preference element is inverted="true", so its // value is the opposite of the actual pref value @@ -305,7 +305,7 @@ var gAdvancedPane = { * Converts the cache size from units of KB to units of MB and returns that * value. */ - readCacheSize: function () + readCacheSize: function() { var preference = document.getElementById("browser.cache.disk.capacity"); return preference.value / 1024; @@ -315,7 +315,7 @@ var gAdvancedPane = { * Converts the cache size as specified in UI (in MB) to KB and returns that * value. */ - writeCacheSize: function () + writeCacheSize: function() { var cacheSize = document.getElementById("cacheSize"); var intValue = parseInt(cacheSize.value, 10); @@ -325,7 +325,7 @@ var gAdvancedPane = { /** * Clears the cache. */ - clearCache: function () + clearCache: function() { var cache = Components.classes["@mozilla.org/netwerk/cache-storage-service;1"] .getService(Components.interfaces.nsICacheStorageService); @@ -338,7 +338,7 @@ var gAdvancedPane = { /** * Clears the application cache. */ - clearOfflineAppCache: function () + clearOfflineAppCache: function() { Components.utils.import("resource:///modules/offlineAppCache.jsm"); OfflineAppCacheHelper.clear(); @@ -389,7 +389,7 @@ var gAdvancedPane = { }, // XXX: duplicated in browser.js - _getOfflineAppUsage: function (perm, groups) + _getOfflineAppUsage: function(perm, groups) { var cacheService = Components.classes["@mozilla.org/network/application-cache-service;1"]. getService(Components.interfaces.nsIApplicationCacheService); @@ -414,7 +414,7 @@ var gAdvancedPane = { /** * Updates the list of offline applications */ - updateOfflineApps: function () + updateOfflineApps: function() { var pm = Components.classes["@mozilla.org/permissionmanager;1"] .getService(Components.interfaces.nsIPermissionManager); @@ -560,7 +560,7 @@ var gAdvancedPane = { * iii 0/1/2 f false * iii 0/1/2 *t* *true* */ - updateReadPrefs: function () + updateReadPrefs: function() { var enabledPref = document.getElementById("app.update.enabled"); var autoPref = document.getElementById("app.update.auto"); @@ -592,7 +592,7 @@ var gAdvancedPane = { * Sets the pref values based on the selected item of the radiogroup, * and sets the disabled state of the warnIncompatible checkbox accordingly. */ - updateWritePrefs: function () + updateWritePrefs: function() { var enabledPref = document.getElementById("app.update.enabled"); var autoPref = document.getElementById("app.update.auto"); @@ -641,7 +641,7 @@ var gAdvancedPane = { * 2 Checked Warn if there are incompatibilities, * or the update is major. */ - readAddonWarn: function () + readAddonWarn: function() { var preference = document.getElementById("app.update.mode"); var warn = preference.value != 0; @@ -654,7 +654,7 @@ var gAdvancedPane = { * themes" checkbox into the integer preference which represents it, * returning that value. */ - writeAddonWarn: function () + writeAddonWarn: function() { var warnIncompatible = document.getElementById("warnIncompatible"); return !warnIncompatible.checked ? 0 : gAdvancedPane._modePreference; @@ -663,7 +663,7 @@ var gAdvancedPane = { /** * Displays the history of installed updates. */ - showUpdates: function () + showUpdates: function() { var prompter = Components.classes["@mozilla.org/updates/update-prompt;1"] .createInstance(Components.interfaces.nsIUpdatePrompt); @@ -688,7 +688,7 @@ var gAdvancedPane = { /** * Displays the user's certificates and associated options. */ - showCertificates: function () + showCertificates: function() { document.documentElement.openWindow("mozilla:certmanager", "chrome://pippki/content/certManager.xul", @@ -698,7 +698,7 @@ var gAdvancedPane = { /** * Displays a dialog from which the user can manage his security devices. */ - showSecurityDevices: function () + showSecurityDevices: function() { document.documentElement.openWindow("mozilla:devicemanager", "chrome://pippki/content/device_manager.xul", diff --git a/application/palemoon/components/preferences/applicationManager.js b/application/palemoon/components/preferences/applicationManager.js index 6d36c693d0..7470a08399 100644 --- a/application/palemoon/components/preferences/applicationManager.js +++ b/application/palemoon/components/preferences/applicationManager.js @@ -10,7 +10,7 @@ var Ci = Components.interfaces; var gAppManagerDialog = { _removed: [], - init: function () { + init: function() { this.handlerInfo = window.arguments[0]; var bundle = document.getElementById("appManagerBundle"); @@ -44,7 +44,7 @@ var gAppManagerDialog = { list.selectedIndex = 0; }, - onOK: function () { + onOK: function() { if (!this._removed.length) { // return early to avoid calling the |store| method. return; @@ -56,11 +56,11 @@ var gAppManagerDialog = { this.handlerInfo.store(); }, - onCancel: function () { + onCancel: function() { // do nothing }, - remove: function () { + remove: function() { var list = document.getElementById("appList"); this._removed.push(list.selectedItem.app); var index = list.selectedIndex; @@ -78,7 +78,7 @@ var gAppManagerDialog = { } }, - onSelect: function () { + onSelect: function() { var list = document.getElementById("appList"); if (!list.selectedItem) { document.getElementById("remove").disabled = true; diff --git a/application/palemoon/components/preferences/cookies.js b/application/palemoon/components/preferences/cookies.js index d50b8c943e..37ab581e7d 100644 --- a/application/palemoon/components/preferences/cookies.js +++ b/application/palemoon/components/preferences/cookies.js @@ -17,7 +17,7 @@ var gCookiesWindow = { _tree : null, _bundle : null, - init: function () { + init: function() { var os = Components.classes["@mozilla.org/observer-service;1"] .getService(Components.interfaces.nsIObserverService); os.addObserver(this, "cookie-changed", false); @@ -36,14 +36,14 @@ var gCookiesWindow = { document.getElementById("filter").focus(); }, - uninit: function () { + uninit: function() { var os = Components.classes["@mozilla.org/observer-service;1"] .getService(Components.interfaces.nsIObserverService); os.removeObserver(this, "cookie-changed"); os.removeObserver(this, "perm-changed"); }, - _populateList: function (aInitialLoad) { + _populateList: function(aInitialLoad) { this._loadCookies(); this._tree.view = this._view; if (aInitialLoad) @@ -67,7 +67,7 @@ var gCookiesWindow = { this._saveState(); }, - _cookieEquals: function (aCookieA, aCookieB, aStrippedHost) { + _cookieEquals: function(aCookieA, aCookieB, aStrippedHost) { return aCookieA.rawHost == aStrippedHost && aCookieA.name == aCookieB.name && aCookieA.path == aCookieB.path && @@ -75,7 +75,7 @@ var gCookiesWindow = { aCookieB.originAttributes); }, - observe: function (aCookie, aTopic, aData) { + observe: function(aCookie, aTopic, aData) { if (aTopic != "cookie-changed") return; @@ -108,7 +108,7 @@ var gCookiesWindow = { // and is rather complicated as selection tracking is difficult }, - _handleCookieChanged: function (changedCookie, strippedHost) { + _handleCookieChanged: function(changedCookie, strippedHost) { var rowIndex = 0; var cookieItem = null; if (!this._view._filtered) { @@ -159,7 +159,7 @@ var gCookiesWindow = { this._updateCookieData(cookieItem); }, - _handleCookieAdded: function (changedCookie, strippedHost) { + _handleCookieAdded: function(changedCookie, strippedHost) { var rowCountImpact = 0; var addedHost = { value: 0 }; this._addCookie(strippedHost, changedCookie, addedHost); @@ -199,7 +199,7 @@ var gCookiesWindow = { return this._rowCount; }, - _getItemAtIndex: function (aIndex) { + _getItemAtIndex: function(aIndex) { if (this._filtered) return this._filterSet[aIndex]; @@ -255,7 +255,7 @@ var gCookiesWindow = { return null; }, - _removeItemAtIndex: function (aIndex, aCount) { + _removeItemAtIndex: function(aIndex, aCount) { var removeCount = aCount === undefined ? 1 : aCount; if (this._filtered) { // remove the cookies from the unfiltered set so that they @@ -294,11 +294,11 @@ var gCookiesWindow = { } }, - _invalidateCache: function (aIndex) { + _invalidateCache: function(aIndex) { this._cacheValid = Math.min(this._cacheValid, aIndex); }, - getCellText: function (aIndex, aColumn) { + getCellText: function(aIndex, aColumn) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) @@ -320,10 +320,10 @@ var gCookiesWindow = { _selection: null, get selection () { return this._selection; }, set selection (val) { this._selection = val; return val; }, - getRowProperties: function (aIndex) { return ""; }, - getCellProperties: function (aIndex, aColumn) { return ""; }, - getColumnProperties: function (aColumn) { return ""; }, - isContainer: function (aIndex) { + getRowProperties: function(aIndex) { return ""; }, + getCellProperties: function(aIndex, aColumn) { return ""; }, + getColumnProperties: function(aColumn) { return ""; }, + isContainer: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return false; @@ -331,7 +331,7 @@ var gCookiesWindow = { } return false; }, - isContainerOpen: function (aIndex) { + isContainerOpen: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return false; @@ -339,7 +339,7 @@ var gCookiesWindow = { } return false; }, - isContainerEmpty: function (aIndex) { + isContainerEmpty: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return false; @@ -347,11 +347,11 @@ var gCookiesWindow = { } return false; }, - isSeparator: function (aIndex) { return false; }, - isSorted: function (aIndex) { return false; }, - canDrop: function (aIndex, aOrientation) { return false; }, - drop: function (aIndex, aOrientation) {}, - getParentIndex: function (aIndex) { + isSeparator: function(aIndex) { return false; }, + isSorted: function(aIndex) { return false; }, + canDrop: function(aIndex, aOrientation) { return false; }, + drop: function(aIndex, aOrientation) {}, + getParentIndex: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); // If an item has no parent index (i.e. it is at the top level) this @@ -363,7 +363,7 @@ var gCookiesWindow = { } return -1; }, - hasNextSibling: function (aParentIndex, aIndex) { + hasNextSibling: function(aParentIndex, aIndex) { if (!this._filtered) { // |aParentIndex| appears to be bogus, but we can get the real // parent index by getting the entry for |aIndex| and reading the @@ -390,7 +390,7 @@ var gCookiesWindow = { } return aIndex < this.rowCount - 1; }, - hasPreviousSibling: function (aIndex) { + hasPreviousSibling: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return false; @@ -400,7 +400,7 @@ var gCookiesWindow = { } return aIndex > 0; }, - getLevel: function (aIndex) { + getLevel: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return 0; @@ -408,11 +408,11 @@ var gCookiesWindow = { } return 0; }, - getImageSrc: function (aIndex, aColumn) {}, - getProgressMode: function (aIndex, aColumn) {}, - getCellValue: function (aIndex, aColumn) {}, - setTree: function (aTree) {}, - toggleOpenState: function (aIndex) { + getImageSrc: function(aIndex, aColumn) {}, + getProgressMode: function(aIndex, aColumn) {}, + getCellValue: function(aIndex, aColumn) {}, + setTree: function(aTree) {}, + toggleOpenState: function(aIndex) { if (!this._filtered) { var item = this._getItemAtIndex(aIndex); if (!item) return; @@ -425,28 +425,28 @@ var gCookiesWindow = { gCookiesWindow._tree.treeBoxObject.invalidateRow(aIndex); } }, - cycleHeader: function (aColumn) {}, - selectionChanged: function () {}, - cycleCell: function (aIndex, aColumn) {}, - isEditable: function (aIndex, aColumn) { + cycleHeader: function(aColumn) {}, + selectionChanged: function() {}, + cycleCell: function(aIndex, aColumn) {}, + isEditable: function(aIndex, aColumn) { return false; }, - isSelectable: function (aIndex, aColumn) { + isSelectable: function(aIndex, aColumn) { return false; }, - setCellValue: function (aIndex, aColumn, aValue) {}, - setCellText: function (aIndex, aColumn, aValue) {}, - performAction: function (aAction) {}, - performActionOnRow: function (aAction, aIndex) {}, - performActionOnCell: function (aAction, aindex, aColumn) {} + setCellValue: function(aIndex, aColumn, aValue) {}, + setCellText: function(aIndex, aColumn, aValue) {}, + performAction: function(aAction) {}, + performActionOnRow: function(aAction, aIndex) {}, + performActionOnCell: function(aAction, aindex, aColumn) {} }, - _makeStrippedHost: function (aHost) { + _makeStrippedHost: function(aHost) { var formattedHost = aHost.charAt(0) == "." ? aHost.substring(1, aHost.length) : aHost; return formattedHost.substring(0, 4) == "www." ? formattedHost.substring(4, formattedHost.length) : formattedHost; }, - _addCookie: function (aStrippedHost, aCookie, aHostCount) { + _addCookie: function(aStrippedHost, aCookie, aHostCount) { if (!(aStrippedHost in this._hosts) || !this._hosts[aStrippedHost]) { this._hosts[aStrippedHost] = { cookies : [], rawHost : aStrippedHost, @@ -461,7 +461,7 @@ var gCookiesWindow = { this._hosts[aStrippedHost].cookies.push(c); }, - _makeCookieObject: function (aStrippedHost, aCookie) { + _makeCookieObject: function(aStrippedHost, aCookie) { var host = aCookie.host; var formattedHost = host.charAt(0) == "." ? host.substring(1, host.length) : host; var c = { name : aCookie.name, @@ -478,7 +478,7 @@ var gCookiesWindow = { return c; }, - _loadCookies: function () { + _loadCookies: function() { var e = this._cm.enumerator; var hostCount = { value: 0 }; this._hosts = {}; @@ -495,7 +495,7 @@ var gCookiesWindow = { this._view._rowCount = hostCount.value; }, - formatExpiresString: function (aExpires) { + formatExpiresString: function(aExpires) { if (aExpires) { var date = new Date(1000 * aExpires); return this._ds.FormatDateTime("", this._ds.dateFormatLong, @@ -510,7 +510,7 @@ var gCookiesWindow = { return this._bundle.getString("expireAtEndOfSession"); }, - _updateCookieData: function (aItem) { + _updateCookieData: function(aItem) { var seln = this._view.selection; var ids = ["name", "value", "host", "path", "isSecure", "expires"]; var properties; @@ -537,7 +537,7 @@ var gCookiesWindow = { document.getElementById(property).value = properties[property]; }, - onCookieSelected: function () { + onCookieSelected: function() { var properties, item; var seln = this._tree.view.selection; var hasRows = this._tree.view.rowCount > 0; @@ -575,7 +575,7 @@ var gCookiesWindow = { removeSelectedCookies.disabled = !hasRows || !hasSelection; }, - performDeletion: function (deleteItems) { + performDeletion: function(deleteItems) { var psvc = Components.classes["@mozilla.org/preferences-service;1"] .getService(Components.interfaces.nsIPrefBranch); var blockFutureCookies = false; @@ -588,7 +588,7 @@ var gCookiesWindow = { } }, - deleteCookie: function () { + deleteCookie: function() { // Selection Notes // - Selection always moves to *NEXT* adjacent item unless item // is last child at a given level in which case it moves to *PREVIOUS* @@ -714,7 +714,7 @@ var gCookiesWindow = { } }, - deleteAllCookies: function () { + deleteAllCookies: function() { if (this._view._filtered) { var rowCount = this._view.rowCount; var deleteItems = []; @@ -733,7 +733,7 @@ var gCookiesWindow = { this.focusFilterBox(); }, - onCookieKeyPress: function (aEvent) { + onCookieKeyPress: function(aEvent) { if (aEvent.keyCode == KeyEvent.DOM_VK_DELETE #ifdef XP_MACOSX || aEvent.keyCode == KeyEvent.DOM_VK_BACK_SPACE @@ -745,7 +745,7 @@ var gCookiesWindow = { _lastSortProperty : "", _lastSortAscending: false, - sort: function (aProperty) { + sort: function(aProperty) { var ascending = (aProperty == this._lastSortProperty) ? !this._lastSortAscending : true; // Sort the Non-Filtered Host Collections if (aProperty == "rawHost") { @@ -798,7 +798,7 @@ var gCookiesWindow = { this._lastSortProperty = aProperty; }, - clearFilter: function () { + clearFilter: function() { // Revert to single-select in the tree this._tree.setAttribute("seltype", "single"); @@ -840,13 +840,13 @@ var gCookiesWindow = { this._updateRemoveAllButton(); }, - _cookieMatchesFilter: function (aCookie) { + _cookieMatchesFilter: function(aCookie) { return aCookie.rawHost.indexOf(this._view._filterValue) != -1 || aCookie.name.indexOf(this._view._filterValue) != -1 || aCookie.value.indexOf(this._view._filterValue) != -1; }, - _filterCookies: function (aFilterValue) { + _filterCookies: function(aFilterValue) { this._view._filterValue = aFilterValue; var cookies = []; for (var i = 0; i < gCookiesWindow._hostOrder.length; ++i) { //var host in gCookiesWindow._hosts) { @@ -863,7 +863,7 @@ var gCookiesWindow = { _lastSelectedRanges: [], _openIndices: [], - _saveState: function () { + _saveState: function() { // Save selection var seln = this._view.selection; this._lastSelectedRanges = []; @@ -883,7 +883,7 @@ var gCookiesWindow = { } }, - _updateRemoveAllButton: function () { + _updateRemoveAllButton: function() { let removeAllCookies = document.getElementById("removeAllCookies"); removeAllCookies.disabled = this._view._rowCount == 0; @@ -897,7 +897,7 @@ var gCookiesWindow = { removeAllCookies.setAttribute("accesskey", this._bundle.getString(accessKeyStringID)); }, - filter: function () { + filter: function() { var filter = document.getElementById("filter").value; if (filter == "") { gCookiesWindow.clearFilter(); @@ -930,18 +930,18 @@ var gCookiesWindow = { this._updateRemoveAllButton(); }, - setFilter: function (aFilterString) { + setFilter: function(aFilterString) { document.getElementById("filter").value = aFilterString; this.filter(); }, - focusFilterBox: function () { + focusFilterBox: function() { var filter = document.getElementById("filter"); filter.focus(); filter.select(); }, - onWindowKeyPress: function (aEvent) { + onWindowKeyPress: function(aEvent) { if (aEvent.keyCode == KeyEvent.DOM_VK_ESCAPE) window.close(); } diff --git a/application/palemoon/components/preferences/privacy.js b/application/palemoon/components/preferences/privacy.js index c1256a5336..ab5c37ee2f 100644 --- a/application/palemoon/components/preferences/privacy.js +++ b/application/palemoon/components/preferences/privacy.js @@ -22,7 +22,7 @@ var gPrivacyPane = { * label of the "Clear Now..." button. * Also restores the previously selected tab or tab index passed as argument. */ - init: function () + init: function() { this._inited = true; var privacyPrefs = document.getElementById("privacyPrefs"); @@ -47,7 +47,7 @@ var gPrivacyPane = { * Stores the identity of the current tab in preferences so that the selected * tab can be persisted between openings of the preferences window. */ - tabSelectionChanged: function () + tabSelectionChanged: function() { if (!this._inited) return; @@ -112,10 +112,10 @@ var gPrivacyPane = { /** * Initialize the history mode menulist based on the privacy preferences */ - initializeHistoryMode: function () + initializeHistoryMode: function() { let mode; - let getVal = function (aPref) + let getVal = function(aPref) document.getElementById(aPref).value; if (this._checkDefaultValues(this.prefsForDefault)) { @@ -133,7 +133,7 @@ var gPrivacyPane = { /** * Update the selected pane based on the history mode menulist */ - updateHistoryModePane: function () + updateHistoryModePane: function() { let selectedIndex = -1; switch (document.getElementById("historyMode").value) { @@ -154,7 +154,7 @@ var gPrivacyPane = { * Update the private browsing auto-start pref and the history mode * micro-management prefs based on the history mode menulist */ - updateHistoryModePrefs: function () + updateHistoryModePrefs: function() { let pref = document.getElementById("browser.privatebrowsing.autostart"); switch (document.getElementById("historyMode").value) { @@ -187,13 +187,13 @@ var gPrivacyPane = { * Update the privacy micro-management controls based on the * value of the private browsing auto-start checkbox. */ - updatePrivacyMicroControls: function () + updatePrivacyMicroControls: function() { if (document.getElementById("historyMode").value == "custom") { let disabled = this._autoStartPrivateBrowsing = document.getElementById("privateBrowsingAutoStart").checked; this.dependentControls - .forEach(function (aElement) + .forEach(function(aElement) document.getElementById(aElement).disabled = disabled); const Ci = Components.interfaces; @@ -229,7 +229,7 @@ var gPrivacyPane = { /** * Initialize the starting state for the auto-start private browsing mode pref reverter. */ - initAutoStartPrivateBrowsingReverter: function () + initAutoStartPrivateBrowsingReverter: function() { let mode = document.getElementById("historyMode"); let autoStart = document.getElementById("privateBrowsingAutoStart"); @@ -239,7 +239,7 @@ var gPrivacyPane = { _lastMode: null, _lasCheckState: null, - updateAutostart: function () { + updateAutostart: function() { let mode = document.getElementById("historyMode"); let autoStart = document.getElementById("privateBrowsingAutoStart"); let pref = document.getElementById("browser.privatebrowsing.autostart"); @@ -331,7 +331,7 @@ var gPrivacyPane = { * enables/disables the rest of the cookie UI accordingly, returning true * if cookies are enabled. */ - readAcceptCookies: function () + readAcceptCookies: function() { var pref = document.getElementById("network.cookie.cookieBehavior"); var acceptThirdPartyLabel = document.getElementById("acceptThirdPartyLabel"); @@ -352,7 +352,7 @@ var gPrivacyPane = { * Enables/disables the "keep until" label and menulist in response to the * "accept cookies" checkbox being checked or unchecked. */ - writeAcceptCookies: function () + writeAcceptCookies: function() { var accept = document.getElementById("acceptCookies"); var acceptThirdPartyMenu = document.getElementById("acceptThirdPartyMenu"); @@ -367,7 +367,7 @@ var gPrivacyPane = { /** * Converts between network.cookie.cookieBehavior and the third-party cookie UI */ - readAcceptThirdPartyCookies: function () + readAcceptThirdPartyCookies: function() { var pref = document.getElementById("network.cookie.cookieBehavior"); switch (pref.value) @@ -385,7 +385,7 @@ var gPrivacyPane = { } }, - writeAcceptThirdPartyCookies: function () + writeAcceptThirdPartyCookies: function() { var accept = document.getElementById("acceptThirdPartyMenu").selectedItem; switch (accept.value) @@ -404,7 +404,7 @@ var gPrivacyPane = { /** * Displays fine-grained, per-site preferences for cookies. */ - showCookieExceptions: function () + showCookieExceptions: function() { var bundlePreferences = document.getElementById("bundlePreferences"); var params = { blockVisible : true, @@ -422,7 +422,7 @@ var gPrivacyPane = { /** * Displays all the user's cookies in a dialog. */ - showCookies: function (aCategory) + showCookies: function(aCategory) { document.documentElement.openWindow("Browser:Cookies", "chrome://browser/content/preferences/cookies.xul", @@ -442,7 +442,7 @@ var gPrivacyPane = { /** * Displays the Clear Private Data settings dialog. */ - showClearPrivateDataSettings: function () + showClearPrivateDataSettings: function() { document.documentElement.openSubDialog("chrome://browser/content/preferences/sanitize.xul", "", null); @@ -453,7 +453,7 @@ var gPrivacyPane = { * Displays a dialog from which individual parts of private data may be * cleared. */ - clearPrivateDataNow: function (aClearEverything) + clearPrivateDataNow: function(aClearEverything) { var ts = document.getElementById("privacy.sanitize.timeSpan"); var timeSpanOrig = ts.value; @@ -475,7 +475,7 @@ var gPrivacyPane = { * Enables or disables the "Settings..." button depending * on the privacy.sanitize.sanitizeOnShutdown preference value */ - _updateSanitizeSettingsButton: function () { + _updateSanitizeSettingsButton: function() { var settingsButton = document.getElementById("clearDataSettings"); var sanitizeOnShutdownPref = document.getElementById("privacy.sanitize.sanitizeOnShutdown"); diff --git a/application/palemoon/components/preferences/selectBookmark.js b/application/palemoon/components/preferences/selectBookmark.js index f2f1e50d38..dbbdb4ff6d 100644 --- a/application/palemoon/components/preferences/selectBookmark.js +++ b/application/palemoon/components/preferences/selectBookmark.js @@ -15,7 +15,7 @@ * closes. */ var SelectBookmarkDialog = { - init: function () { + init: function() { document.getElementById("bookmarks").place = "place:queryType=1&folder=" + PlacesUIUtils.allBookmarksFolderId; @@ -27,7 +27,7 @@ var SelectBookmarkDialog = { * Update the disabled state of the OK button as the user changes the * selection within the view. */ - selectionChanged: function () { + selectionChanged: function() { var accept = document.documentElement.getButton("accept"); var bookmarks = document.getElementById("bookmarks"); var disableAcceptButton = true; @@ -38,7 +38,7 @@ var SelectBookmarkDialog = { accept.disabled = disableAcceptButton; }, - onItemDblClick: function () { + onItemDblClick: function() { var bookmarks = document.getElementById("bookmarks"); var selectedNode = bookmarks.selectedNode; if (selectedNode && PlacesUtils.nodeIsURI(selectedNode)) { @@ -54,7 +54,7 @@ var SelectBookmarkDialog = { * User accepts their selection. Set all the selected URLs or the contents * of the selected folder as the list of homepages. */ - accept: function () { + accept: function() { var bookmarks = document.getElementById("bookmarks"); NS_ASSERT(bookmarks.hasSelection, "Should not be able to accept dialog if there is no selected URL!"); diff --git a/application/palemoon/components/search/content/engineManager.js b/application/palemoon/components/search/content/engineManager.js index 0e34b6d6f1..b9ed17cbc2 100644 --- a/application/palemoon/components/search/content/engineManager.js +++ b/application/palemoon/components/search/content/engineManager.js @@ -19,7 +19,7 @@ const BROWSER_SUGGEST_PREF = "browser.search.suggest.enabled"; var gEngineView = null; var gEngineManagerDialog = { - init: function () { + init: function() { gEngineView = new EngineView(new EngineStore()); var suggestEnabled = Services.prefs.getBoolPref(BROWSER_SUGGEST_PREF); @@ -31,12 +31,12 @@ var gEngineManagerDialog = { Services.obs.addObserver(this, "browser-search-engine-modified", false); }, - destroy: function () { + destroy: function() { // Remove the observer Services.obs.removeObserver(this, "browser-search-engine-modified"); }, - observe: function (aEngine, aTopic, aVerb) { + observe: function(aEngine, aTopic, aVerb) { if (aTopic == "browser-search-engine-modified") { aEngine.QueryInterface(Ci.nsISearchEngine); switch (aVerb) { @@ -57,7 +57,7 @@ var gEngineManagerDialog = { } }, - onOK: function () { + onOK: function() { // Set the preference var newSuggestEnabled = document.getElementById("enableSuggest").checked; Services.prefs.setBoolPref(BROWSER_SUGGEST_PREF, newSuggestEnabled); @@ -66,23 +66,23 @@ var gEngineManagerDialog = { gEngineView._engineStore.commit(); }, - onRestoreDefaults: function () { + onRestoreDefaults: function() { var num = gEngineView._engineStore.restoreDefaultEngines(); gEngineView.rowCountChanged(0, num); gEngineView.invalidate(); }, - showRestoreDefaults: function (val) { + showRestoreDefaults: function(val) { document.documentElement.getButton("extra2").disabled = !val; }, - loadAddEngines: function () { + loadAddEngines: function() { this.onOK(); window.opener.BrowserSearch.loadAddEngines(); window.close(); }, - remove: function () { + remove: function() { gEngineView._engineStore.removeEngine(gEngineView.selectedEngine); var index = gEngineView.selectedIndex; gEngineView.rowCountChanged(index, -1); @@ -97,7 +97,7 @@ var gEngineManagerDialog = { * @param aDir * -1 to move the selected engine down, +1 to move it up. */ - bump: function (aDir) { + bump: function(aDir) { var selectedEngine = gEngineView.selectedEngine; var newIndex = gEngineView.selectedIndex - aDir; @@ -157,7 +157,7 @@ var gEngineManagerDialog = { } }), - onSelect: function () { + onSelect: function() { // Buttons only work if an engine is selected and it's not the last engine, // the latter is true when the selected is first and last at the same time. var lastSelected = (gEngineView.selectedIndex == gEngineView.lastIndex); @@ -197,7 +197,7 @@ function EngineMoveOp(aEngineClone, aNewIndex) { EngineMoveOp.prototype = { _engine: null, _newIndex: null, - commit: function () { + commit: function() { Services.search.moveEngine(this._engine, this._newIndex); } } @@ -209,7 +209,7 @@ function EngineRemoveOp(aEngineClone) { } EngineRemoveOp.prototype = { _engine: null, - commit: function () { + commit: function() { Services.search.removeEngine(this._engine); } } @@ -223,7 +223,7 @@ function EngineUnhideOp(aEngineClone, aNewIndex) { EngineUnhideOp.prototype = { _engine: null, _newIndex: null, - commit: function () { + commit: function() { this._engine.hidden = false; Services.search.moveEngine(this._engine, this._newIndex); } @@ -241,7 +241,7 @@ EngineChangeOp.prototype = { _engine: null, _prop: null, _newValue: null, - commit: function () { + commit: function() { this._engine[this._prop] = this._newValue; } } @@ -253,7 +253,7 @@ function EngineStore() { this._ops = []; // check if we need to disable the restore defaults button - var someHidden = this._defaultEngines.some(function (e) e.hidden); + var someHidden = this._defaultEngines.some(function(e) e.hidden); gEngineManagerDialog.showRestoreDefaults(someHidden); } EngineStore.prototype = { @@ -269,11 +269,11 @@ EngineStore.prototype = { return val; }, - _getIndexForEngine: function (aEngine) { + _getIndexForEngine: function(aEngine) { return this._engines.indexOf(aEngine); }, - _getEngineByName: function (aName) { + _getEngineByName: function(aName) { for each (var engine in this._engines) if (engine.name == aName) return engine; @@ -281,7 +281,7 @@ EngineStore.prototype = { return null; }, - _cloneEngine: function (aEngine) { + _cloneEngine: function(aEngine) { var clonedObj={}; for (var i in aEngine) clonedObj[i] = aEngine[i]; @@ -290,11 +290,11 @@ EngineStore.prototype = { }, // Callback for Array's some(). A thisObj must be passed to some() - _isSameEngine: function (aEngineClone) { + _isSameEngine: function(aEngineClone) { return aEngineClone.originalEngine == this.originalEngine; }, - commit: function () { + commit: function() { var currentEngine = this._cloneEngine(Services.search.currentEngine); for (var i = 0; i < this._ops.length; i++) this._ops[i].commit(); @@ -306,11 +306,11 @@ EngineStore.prototype = { Services.search.currentEngine = currentEngine.originalEngine; }, - addEngine: function (aEngine) { + addEngine: function(aEngine) { this._engines.push(this._cloneEngine(aEngine)); }, - moveEngine: function (aEngine, aNewIndex) { + moveEngine: function(aEngine, aNewIndex) { if (aNewIndex < 0 || aNewIndex > this._engines.length - 1) throw new Error("ES_moveEngine: invalid aNewIndex!"); var index = this._getIndexForEngine(aEngine); @@ -327,7 +327,7 @@ EngineStore.prototype = { this._ops.push(new EngineMoveOp(aEngine, aNewIndex)); }, - removeEngine: function (aEngine) { + removeEngine: function(aEngine) { var index = this._getIndexForEngine(aEngine); if (index == -1) throw new Error("invalid engine?"); @@ -338,7 +338,7 @@ EngineStore.prototype = { gEngineManagerDialog.showRestoreDefaults(true); }, - restoreDefaultEngines: function () { + restoreDefaultEngines: function() { var added = 0; for (var i = 0; i < this._defaultEngines.length; ++i) { @@ -358,7 +358,7 @@ EngineStore.prototype = { return added; }, - changeEngine: function (aEngine, aProp, aNewValue) { + changeEngine: function(aEngine, aProp, aNewValue) { var index = this._getIndexForEngine(aEngine); if (index == -1) throw new Error("invalid engine?"); @@ -367,8 +367,8 @@ EngineStore.prototype = { this._ops.push(new EngineChangeOp(aEngine, aProp, aNewValue)); }, - reloadIcons: function () { - this._engines.forEach(function (e) { + reloadIcons: function() { + this._engines.forEach(function(e) { e.uri = e.originalEngine.uri; }); } @@ -398,19 +398,19 @@ EngineView.prototype = { }, // Helpers - rowCountChanged: function (index, count) { + rowCountChanged: function(index, count) { this.tree.rowCountChanged(index, count); }, - invalidate: function () { + invalidate: function() { this.tree.invalidate(); }, - ensureRowIsVisible: function (index) { + ensureRowIsVisible: function(index) { this.tree.ensureRowIsVisible(index); }, - getSourceIndexFromDrag: function (dataTransfer) { + getSourceIndexFromDrag: function(dataTransfer) { return parseInt(dataTransfer.getData(ENGINE_FLAVOR)); }, diff --git a/application/palemoon/components/sessionstore/DocumentUtils.jsm b/application/palemoon/components/sessionstore/DocumentUtils.jsm index 867a6744ba..2d40a08fc6 100644 --- a/application/palemoon/components/sessionstore/DocumentUtils.jsm +++ b/application/palemoon/components/sessionstore/DocumentUtils.jsm @@ -25,7 +25,7 @@ this.DocumentUtils = { * @return object * Form data encoded in an object. */ - getFormData: function (aDocument) { + getFormData: function(aDocument) { let formNodes = aDocument.evaluate( XPathGenerator.restorableFormNodes, aDocument, @@ -117,7 +117,7 @@ this.DocumentUtils = { * @param aData * Object defining form data. */ - mergeFormData: function (aDocument, aData) { + mergeFormData: function(aDocument, aData) { if ("xpath" in aData) { for each (let [xpath, value] in Iterator(aData.xpath)) { let node = XPathGenerator.resolve(aDocument, xpath); @@ -155,7 +155,7 @@ this.DocumentUtils = { * DOMDocument node belongs to. If not defined, node.ownerDocument * is used. */ - restoreFormValue: function (aNode, aValue, aDocument) { + restoreFormValue: function(aNode, aValue, aDocument) { aDocument = aDocument || aNode.ownerDocument; let eventType; diff --git a/application/palemoon/components/sessionstore/SessionStorage.jsm b/application/palemoon/components/sessionstore/SessionStorage.jsm index f1320df7ee..8016d34bc8 100644 --- a/application/palemoon/components/sessionstore/SessionStorage.jsm +++ b/application/palemoon/components/sessionstore/SessionStorage.jsm @@ -20,7 +20,7 @@ this.SessionStorage = { * @param aFullData * always return privacy sensitive data (use with care) */ - serialize: function (aDocShell, aFullData) { + serialize: function(aDocShell, aFullData) { return DomStorage.read(aDocShell, aFullData); }, @@ -31,7 +31,7 @@ this.SessionStorage = { * @param aStorageData * Storage data to be restored */ - deserialize: function (aDocShell, aStorageData) { + deserialize: function(aDocShell, aStorageData) { DomStorage.write(aDocShell, aStorageData); } }; @@ -46,7 +46,7 @@ var DomStorage = { * @param aFullData * Always return privacy sensitive data (use with care) */ - read: function (aDocShell, aFullData) { + read: function(aDocShell, aFullData) { let data = {}; let isPinned = aDocShell.isAppTab; let shistory = aDocShell.sessionHistory; @@ -81,7 +81,7 @@ var DomStorage = { * @param aStorageData * Storage data to be restored */ - write: function (aDocShell, aStorageData) { + write: function(aDocShell, aStorageData) { for (let [host, data] in Iterator(aStorageData)) { let uri = Services.io.newURI(host, null, null); let principal = Services.scriptSecurityManager.getDocShellCodebasePrincipal(uri, aDocShell); @@ -116,7 +116,7 @@ var DomStorage = { * @param aDocShell * A tab's docshell (containing the sessionStorage) */ - _readEntry: function (aPrincipal, aDocShell) { + _readEntry: function(aPrincipal, aDocShell) { let hostData = {}; let storage; @@ -152,7 +152,7 @@ var History = { * @param aDocShell * That tab's docshell */ - getPrincipalForEntry: function (aHistory, + getPrincipalForEntry: function(aHistory, aIndex, aDocShell) { try { diff --git a/application/palemoon/components/sessionstore/SessionStore.jsm b/application/palemoon/components/sessionstore/SessionStore.jsm index d7cd9ea6da..dae7789f75 100644 --- a/application/palemoon/components/sessionstore/SessionStore.jsm +++ b/application/palemoon/components/sessionstore/SessionStore.jsm @@ -88,7 +88,7 @@ XPCOMUtils.defineLazyServiceGetter(this, "gScreenManager", // retrieved from a given docShell if not already collected before. // This is made so they're automatically in sync with all nsIDocShell.allow* // properties. -var gDocShellCapabilities = (function () { +var gDocShellCapabilities = (function() { let caps; return docShell => { @@ -109,7 +109,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "ScratchpadManager", "resource://devtools/client/scratchpad/scratchpad-manager.jsm"); Object.defineProperty(this, "HUDService", { - get: function () { + get: function() { let devtools = Cu.import("resource://devtools/shared/Loader.jsm", {}).devtools; return devtools.require("devtools/client/webconsole/hudservice").HUDService; }, @@ -143,103 +143,103 @@ this.SessionStore = { SessionStoreInternal.canRestoreLastSession = val; }, - init: function (aWindow) { + init: function(aWindow) { return SessionStoreInternal.init(aWindow); }, - getBrowserState: function () { + getBrowserState: function() { return SessionStoreInternal.getBrowserState(); }, - setBrowserState: function (aState) { + setBrowserState: function(aState) { SessionStoreInternal.setBrowserState(aState); }, - getWindowState: function (aWindow) { + getWindowState: function(aWindow) { return SessionStoreInternal.getWindowState(aWindow); }, - setWindowState: function (aWindow, aState, aOverwrite) { + setWindowState: function(aWindow, aState, aOverwrite) { SessionStoreInternal.setWindowState(aWindow, aState, aOverwrite); }, - getTabState: function (aTab) { + getTabState: function(aTab) { return SessionStoreInternal.getTabState(aTab); }, - setTabState: function (aTab, aState) { + setTabState: function(aTab, aState) { SessionStoreInternal.setTabState(aTab, aState); }, - duplicateTab: function (aWindow, aTab, aDelta) { + duplicateTab: function(aWindow, aTab, aDelta) { return SessionStoreInternal.duplicateTab(aWindow, aTab, aDelta); }, - getClosedTabCount: function (aWindow) { + getClosedTabCount: function(aWindow) { return SessionStoreInternal.getClosedTabCount(aWindow); }, - getClosedTabData: function (aWindow) { + getClosedTabData: function(aWindow) { return SessionStoreInternal.getClosedTabData(aWindow); }, - undoCloseTab: function (aWindow, aIndex) { + undoCloseTab: function(aWindow, aIndex) { return SessionStoreInternal.undoCloseTab(aWindow, aIndex); }, - forgetClosedTab: function (aWindow, aIndex) { + forgetClosedTab: function(aWindow, aIndex) { return SessionStoreInternal.forgetClosedTab(aWindow, aIndex); }, - getClosedWindowCount: function () { + getClosedWindowCount: function() { return SessionStoreInternal.getClosedWindowCount(); }, - getClosedWindowData: function () { + getClosedWindowData: function() { return SessionStoreInternal.getClosedWindowData(); }, - undoCloseWindow: function (aIndex) { + undoCloseWindow: function(aIndex) { return SessionStoreInternal.undoCloseWindow(aIndex); }, - forgetClosedWindow: function (aIndex) { + forgetClosedWindow: function(aIndex) { return SessionStoreInternal.forgetClosedWindow(aIndex); }, - getWindowValue: function (aWindow, aKey) { + getWindowValue: function(aWindow, aKey) { return SessionStoreInternal.getWindowValue(aWindow, aKey); }, - setWindowValue: function (aWindow, aKey, aStringValue) { + setWindowValue: function(aWindow, aKey, aStringValue) { SessionStoreInternal.setWindowValue(aWindow, aKey, aStringValue); }, - deleteWindowValue: function (aWindow, aKey) { + deleteWindowValue: function(aWindow, aKey) { SessionStoreInternal.deleteWindowValue(aWindow, aKey); }, - getTabValue: function (aTab, aKey) { + getTabValue: function(aTab, aKey) { return SessionStoreInternal.getTabValue(aTab, aKey); }, - setTabValue: function (aTab, aKey, aStringValue) { + setTabValue: function(aTab, aKey, aStringValue) { SessionStoreInternal.setTabValue(aTab, aKey, aStringValue); }, - deleteTabValue: function (aTab, aKey) { + deleteTabValue: function(aTab, aKey) { SessionStoreInternal.deleteTabValue(aTab, aKey); }, - persistTabAttribute: function (aName) { + persistTabAttribute: function(aName) { SessionStoreInternal.persistTabAttribute(aName); }, - restoreLastSession: function () { + restoreLastSession: function() { SessionStoreInternal.restoreLastSession(); }, - checkPrivacyLevel: function (aIsHTTPS, aUseDefaultPref) { + checkPrivacyLevel: function(aIsHTTPS, aUseDefaultPref) { return SessionStoreInternal.checkPrivacyLevel(aIsHTTPS, aUseDefaultPref); } }; @@ -354,7 +354,7 @@ var SessionStoreInternal = { /** * Initialize the component */ - initService: function () { + initService: function() { if (this._sessionInitialized) { return; } @@ -375,7 +375,7 @@ var SessionStoreInternal = { ); }, - initSession: function () { + initSession: function() { let ss = gSessionStartup; try { if (ss.doRestore() || @@ -447,7 +447,7 @@ var SessionStoreInternal = { } // A Lazy getter for the sessionstore.js backup promise. - XPCOMUtils.defineLazyGetter(this, "_backupSessionFileOnce", function () { + XPCOMUtils.defineLazyGetter(this, "_backupSessionFileOnce", function() { return _SessionFile.createBackupCopy(); }); @@ -464,27 +464,27 @@ var SessionStoreInternal = { this._promiseInitialization.resolve(); }, - _initEncoding : function () { + _initEncoding : function() { // The (UTF-8) encoder used to write to files. - XPCOMUtils.defineLazyGetter(this, "_writeFileEncoder", function () { + XPCOMUtils.defineLazyGetter(this, "_writeFileEncoder", function() { return new TextEncoder(); }); }, _initPrefs : function() { - XPCOMUtils.defineLazyGetter(this, "_prefBranch", function () { + XPCOMUtils.defineLazyGetter(this, "_prefBranch", function() { return Services.prefs.getBranch("browser."); }); // minimal interval between two save operations (in milliseconds) - XPCOMUtils.defineLazyGetter(this, "_interval", function () { + XPCOMUtils.defineLazyGetter(this, "_interval", function() { // used often, so caching/observing instead of fetching on-demand this._prefBranch.addObserver("sessionstore.interval", this, true); return this._prefBranch.getIntPref("sessionstore.interval"); }); // when crash recovery is disabled, session data is not written to disk - XPCOMUtils.defineLazyGetter(this, "_resume_from_crash", function () { + XPCOMUtils.defineLazyGetter(this, "_resume_from_crash", function() { // get crash recovery state from prefs and allow for proper reaction to state changes this._prefBranch.addObserver("sessionstore.resume_from_crash", this, true); return this._prefBranch.getBoolPref("sessionstore.resume_from_crash"); @@ -508,7 +508,7 @@ var SessionStoreInternal = { }, - _initWindow: function (aWindow) { + _initWindow: function(aWindow) { if (aWindow) { this.onLoad(aWindow); } else if (this._loadState == STATE_STOPPED) { @@ -527,7 +527,7 @@ var SessionStoreInternal = { * This function also initializes the component if it is not * initialized yet. */ - init: function (aWindow) { + init: function(aWindow) { let self = this; this.initService(); return this._promiseInitialization.promise.then( @@ -541,7 +541,7 @@ var SessionStoreInternal = { * Called on application shutdown, after notifications: * quit-application-granted, quit-application */ - _uninit: function () { + _uninit: function() { // save all data for session resuming if (this._sessionInitialized) this.saveState(true); @@ -559,7 +559,7 @@ var SessionStoreInternal = { /** * Handle notifications */ - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { if (this._disabledForMultiProcess) return; @@ -601,7 +601,7 @@ var SessionStoreInternal = { * This method handles incoming messages sent by the session store content * script and thus enables communication with OOP tabs. */ - receiveMessage: function (aMessage) { + receiveMessage: function(aMessage) { var browser = aMessage.target; var win = browser.ownerDocument.defaultView; @@ -625,7 +625,7 @@ var SessionStoreInternal = { /** * Implement nsIDOMEventListener for handling various window and tab events */ - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { if (this._disabledForMultiProcess) return; @@ -676,7 +676,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onLoad: function (aWindow) { + onLoad: function(aWindow) { // return if window has already been initialized if (aWindow && aWindow.__SSi && this._windows[aWindow.__SSi]) return; @@ -845,7 +845,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onOpen: function (aWindow) { + onOpen: function(aWindow) { var _this = this; aWindow.addEventListener("load", function(aEvent) { aEvent.currentTarget.removeEventListener("load", arguments.callee, false); @@ -861,7 +861,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onClose: function (aWindow) { + onClose: function(aWindow) { // this window was about to be restored - conserve its original data, if any let isFullyLoaded = this._isWindowLoaded(aWindow); if (!isFullyLoaded) { @@ -949,7 +949,7 @@ var SessionStoreInternal = { /** * On quit application requested */ - onQuitApplicationRequested: function () { + onQuitApplicationRequested: function() { // get a current snapshot of all windows this._forEachBrowserWindow(function(aWindow) { this._collectWindowData(aWindow); @@ -965,7 +965,7 @@ var SessionStoreInternal = { /** * On quit application granted */ - onQuitApplicationGranted: function () { + onQuitApplicationGranted: function() { // freeze the data at what we've got (ignoring closing windows) this._loadState = STATE_QUITTING; }, @@ -973,7 +973,7 @@ var SessionStoreInternal = { /** * On last browser window close */ - onLastWindowCloseGranted: function () { + onLastWindowCloseGranted: function() { // last browser window is quitting. // remember to restore the last window when another browser window is opened // do not account for pref(resume_session_once) at this point, as it might be @@ -986,7 +986,7 @@ var SessionStoreInternal = { * @param aData * String type of quitting */ - onQuitApplication: function (aData) { + onQuitApplication: function(aData) { if (aData == "restart") { this._prefBranch.setBoolPref("sessionstore.resume_session_once", true); // The browser:purge-session-history notification fires after the @@ -1019,7 +1019,7 @@ var SessionStoreInternal = { /** * On purge of session history */ - onPurgeSessionHistory: function () { + onPurgeSessionHistory: function() { var _this = this; _SessionFile.wipe(); // If the browser is shutting down, simply return after clearing the @@ -1070,7 +1070,7 @@ var SessionStoreInternal = { * @param aData * String domain data */ - onPurgeDomainData: function (aData) { + onPurgeDomainData: function(aData) { // does a session history entry contain a url for the given domain? function containsDomain(aEntry) { try { @@ -1128,7 +1128,7 @@ var SessionStoreInternal = { * @param aData * String preference changed */ - onPrefChange: function (aData) { + onPrefChange: function(aData) { switch (aData) { // if the user decreases the max number of closed tabs they want // preserved update our internal states to match that max @@ -1171,7 +1171,7 @@ var SessionStoreInternal = { /** * On timer callback */ - onTimerCallback: function () { + onTimerCallback: function() { this._saveTimer = null; this.saveState(); }, @@ -1185,7 +1185,7 @@ var SessionStoreInternal = { * @param aNoNotification * bool Do not save state if we're updating an existing tab */ - onTabAdd: function (aWindow, aTab, aNoNotification) { + onTabAdd: function(aWindow, aTab, aNoNotification) { let browser = aTab.linkedBrowser; browser.addEventListener("load", this, true); @@ -1206,7 +1206,7 @@ var SessionStoreInternal = { * @param aNoNotification * bool Do not save state if we're updating an existing tab */ - onTabRemove: function (aWindow, aTab, aNoNotification) { + onTabRemove: function(aWindow, aTab, aNoNotification) { let browser = aTab.linkedBrowser; browser.removeEventListener("load", this, true); @@ -1240,7 +1240,7 @@ var SessionStoreInternal = { * @param aTab * Tab reference */ - onTabClose: function (aWindow, aTab) { + onTabClose: function(aWindow, aTab) { // notify the tabbrowser that the tab state will be retrieved for the last time // (so that extension authors can easily set data on soon-to-be-closed tabs) var event = aWindow.document.createEvent("Events"); @@ -1281,7 +1281,7 @@ var SessionStoreInternal = { * @param aBrowser * Browser reference */ - onTabLoad: function (aWindow, aBrowser) { + onTabLoad: function(aWindow, aBrowser) { // react on "load" and solitary "pageshow" events (the first "pageshow" // following "load" is too late for deleting the data caches) // It's possible to get a load event after calling stop on a browser (when @@ -1305,7 +1305,7 @@ var SessionStoreInternal = { * @param aBrowser * Browser reference */ - onTabInput: function (aWindow, aBrowser) { + onTabInput: function(aWindow, aBrowser) { // deleting __SS_formDataSaved will cause us to recollect form data delete aBrowser.__SS_formDataSaved; @@ -1317,7 +1317,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - onTabSelect: function (aWindow) { + onTabSelect: function(aWindow) { if (this._loadState == STATE_RUNNING) { this._windows[aWindow.__SSi].selected = aWindow.gBrowser.tabContainer.selectedIndex; @@ -1332,7 +1332,7 @@ var SessionStoreInternal = { } }, - onTabShow: function (aWindow, aTab) { + onTabShow: function(aWindow, aTab) { // If the tab hasn't been restored yet, move it into the right bucket if (aTab.linkedBrowser.__SS_restoreState && aTab.linkedBrowser.__SS_restoreState == TAB_STATE_NEEDS_RESTORE) { @@ -1348,7 +1348,7 @@ var SessionStoreInternal = { this.saveStateDelayed(aWindow); }, - onTabHide: function (aWindow, aTab) { + onTabHide: function(aWindow, aTab) { // If the tab hasn't been restored yet, move it into the right bucket if (aTab.linkedBrowser.__SS_restoreState && aTab.linkedBrowser.__SS_restoreState == TAB_STATE_NEEDS_RESTORE) { @@ -1362,11 +1362,11 @@ var SessionStoreInternal = { /* ........ nsISessionStore API .............. */ - getBrowserState: function () { + getBrowserState: function() { return this._toJSONString(this._getCurrentState()); }, - setBrowserState: function (aState) { + setBrowserState: function(aState) { this._handleClosedWindows(); try { @@ -1406,7 +1406,7 @@ var SessionStoreInternal = { this.restoreWindow(window, state, true); }, - getWindowState: function (aWindow) { + getWindowState: function(aWindow) { if ("__SSi" in aWindow) { return this._toJSONString(this._getWindowState(aWindow)); } @@ -1419,14 +1419,14 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - setWindowState: function (aWindow, aState, aOverwrite) { + setWindowState: function(aWindow, aState, aOverwrite) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); this.restoreWindow(aWindow, aState, aOverwrite); }, - getTabState: function (aTab) { + getTabState: function(aTab) { if (!aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1438,7 +1438,7 @@ var SessionStoreInternal = { return this._toJSONString(tabState); }, - setTabState: function (aTab, aState) { + setTabState: function(aTab, aState) { var tabState = JSON.parse(aState); if (!tabState.entries || !aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1448,7 +1448,7 @@ var SessionStoreInternal = { this.restoreHistoryPrecursor(window, [aTab], [tabState], 0, 0, 0); }, - duplicateTab: function (aWindow, aTab, aDelta) { + duplicateTab: function(aWindow, aTab, aDelta) { if (!aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi || !aWindow.getBrowser) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1471,7 +1471,7 @@ var SessionStoreInternal = { return newTab; }, - getClosedTabCount: function (aWindow) { + getClosedTabCount: function(aWindow) { if ("__SSi" in aWindow) { return this._windows[aWindow.__SSi]._closedTabs.length; } @@ -1483,7 +1483,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - getClosedTabData: function (aWindow) { + getClosedTabData: function(aWindow) { if ("__SSi" in aWindow) { return this._toJSONString(this._windows[aWindow.__SSi]._closedTabs); } @@ -1496,7 +1496,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - undoCloseTab: function (aWindow, aIndex) { + undoCloseTab: function(aWindow, aIndex) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1528,7 +1528,7 @@ var SessionStoreInternal = { return tab; }, - forgetClosedTab: function (aWindow, aIndex) { + forgetClosedTab: function(aWindow, aIndex) { if (!aWindow.__SSi) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1543,15 +1543,15 @@ var SessionStoreInternal = { closedTabs.splice(aIndex, 1); }, - getClosedWindowCount: function () { + getClosedWindowCount: function() { return this._closedWindows.length; }, - getClosedWindowData: function () { + getClosedWindowData: function() { return this._toJSONString(this._closedWindows); }, - undoCloseWindow: function (aIndex) { + undoCloseWindow: function(aIndex) { if (!(aIndex in this._closedWindows)) throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); @@ -1562,7 +1562,7 @@ var SessionStoreInternal = { return window; }, - forgetClosedWindow: function (aIndex) { + forgetClosedWindow: function(aIndex) { // default to the most-recently closed window aIndex = aIndex || 0; if (!(aIndex in this._closedWindows)) @@ -1572,7 +1572,7 @@ var SessionStoreInternal = { this._closedWindows.splice(aIndex, 1); }, - getWindowValue: function (aWindow, aKey) { + getWindowValue: function(aWindow, aKey) { if ("__SSi" in aWindow) { var data = this._windows[aWindow.__SSi].extData || {}; return data[aKey] || ""; @@ -1586,7 +1586,7 @@ var SessionStoreInternal = { throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG); }, - setWindowValue: function (aWindow, aKey, aStringValue) { + setWindowValue: function(aWindow, aKey, aStringValue) { if (aWindow.__SSi) { if (!this._windows[aWindow.__SSi].extData) { this._windows[aWindow.__SSi].extData = {}; @@ -1599,13 +1599,13 @@ var SessionStoreInternal = { } }, - deleteWindowValue: function (aWindow, aKey) { + deleteWindowValue: function(aWindow, aKey) { if (aWindow.__SSi && this._windows[aWindow.__SSi].extData && this._windows[aWindow.__SSi].extData[aKey]) delete this._windows[aWindow.__SSi].extData[aKey]; }, - getTabValue: function (aTab, aKey) { + getTabValue: function(aTab, aKey) { let data = {}; if (aTab.__SS_extdata) { data = aTab.__SS_extdata; @@ -1617,7 +1617,7 @@ var SessionStoreInternal = { return data[aKey] || ""; }, - setTabValue: function (aTab, aKey, aStringValue) { + setTabValue: function(aTab, aKey, aStringValue) { // If the tab hasn't been restored, then set the data there, otherwise we // could lose newly added data. let saveTo; @@ -1635,7 +1635,7 @@ var SessionStoreInternal = { this.saveStateDelayed(aTab.ownerDocument.defaultView); }, - deleteTabValue: function (aTab, aKey) { + deleteTabValue: function(aTab, aKey) { // We want to make sure that if data is accessed early, we attempt to delete // that data from __SS_data as well. Otherwise we'll throw in cases where // data can be set or read. @@ -1651,7 +1651,7 @@ var SessionStoreInternal = { delete deleteFrom[aKey]; }, - persistTabAttribute: function (aName) { + persistTabAttribute: function(aName) { if (TabAttributes.persist(aName)) { this.saveStateDelayed(); } @@ -1664,7 +1664,7 @@ var SessionStoreInternal = { * that window will be opened into that winddow. Otherwise new windows will * be opened. */ - restoreLastSession: function () { + restoreLastSession: function() { // Use the public getter since it also checks PB mode if (!this.canRestoreLastSession) throw (Components.returnCode = Cr.NS_ERROR_FAILURE); @@ -1776,7 +1776,7 @@ var SessionStoreInternal = { * canOverwriteTabs: all of the current tabs are home pages and we * can overwrite them */ - _prepWindowToRestoreInto: function (aWindow) { + _prepWindowToRestoreInto: function(aWindow) { if (!aWindow) return [false, false]; @@ -1830,7 +1830,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _saveWindowHistory: function (aWindow) { + _saveWindowHistory: function(aWindow) { var tabbrowser = aWindow.gBrowser; var tabs = tabbrowser.tabs; var tabsData = this._windows[aWindow.__SSi].tabs = []; @@ -1849,7 +1849,7 @@ var SessionStoreInternal = { * always return privacy sensitive data (use with care) * @returns object */ - _collectTabData: function (aTab, aFullData) { + _collectTabData: function(aTab, aFullData) { var tabData = { entries: [], lastAccessed: aTab.lastAccessed }; var browser = aTab.linkedBrowser; @@ -2013,7 +2013,7 @@ var SessionStoreInternal = { * @returns object */ _serializeHistoryEntry: - function (aEntry, aFullData, aIsPinned, aHostSchemeData) { + function(aEntry, aFullData, aIsPinned, aHostSchemeData) { var entry = { url: aEntry.URI.spec }; try { @@ -2152,9 +2152,9 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateTextAndScrollData: function (aWindow) { + _updateTextAndScrollData: function(aWindow) { var browsers = aWindow.gBrowser.browsers; - this._windows[aWindow.__SSi].tabs.forEach(function (tabData, i) { + this._windows[aWindow.__SSi].tabs.forEach(function(tabData, i) { try { this._updateTextAndScrollDataForTab(aWindow, browsers[i], tabData); } @@ -2175,7 +2175,7 @@ var SessionStoreInternal = { * always return privacy sensitive data (use with care) */ _updateTextAndScrollDataForTab: - function (aWindow, aBrowser, aTabData, aFullData) { + function(aWindow, aBrowser, aTabData, aFullData) { // we shouldn't update data for incompletely initialized tabs if (aBrowser.__SS_data && aBrowser.__SS_tabStillLoading) return; @@ -2223,7 +2223,7 @@ var SessionStoreInternal = { * the tab is pinned and should be treated differently for privacy */ _updateTextAndScrollDataForFrame: - function (aWindow, aContent, aData, + function(aWindow, aContent, aData, aUpdateFormData, aFullData, aIsPinned) { for (var i = 0; i < aContent.frames.length; i++) { if (aData.children && aData.children[i]) @@ -2273,7 +2273,7 @@ var SessionStoreInternal = { * @param aContent is a frame reference * @returns the title style sheet determined to be enabled (empty string if none) */ - _getSelectedPageStyle: function (aContent) { + _getSelectedPageStyle: function(aContent) { const forScreen = /(?:^|,)\s*(?:all|screen)\s*(?:,|$)/i; for (let i = 0; i < aContent.document.styleSheets.length; i++) { let ss = aContent.document.styleSheets[i]; @@ -2302,7 +2302,7 @@ var SessionStoreInternal = { * aCheckPrivacy */ _extractHostsForCookiesFromEntry: - function (aEntry, aHosts, aCheckPrivacy, aIsPinned) { + function(aEntry, aHosts, aCheckPrivacy, aIsPinned) { let host = aEntry._host, scheme = aEntry._scheme; @@ -2343,7 +2343,7 @@ var SessionStoreInternal = { * aCheckPrivacy */ _extractHostsForCookiesFromHostScheme: - function (aHost, aScheme, aHosts, aCheckPrivacy, aIsPinned) { + function(aHost, aScheme, aHosts, aCheckPrivacy, aIsPinned) { // host and scheme may not be set (for about: urls for example), in which // case testing scheme will be sufficient. if (/https?/.test(aScheme) && !aHosts[aHost] && @@ -2363,7 +2363,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateCookieHosts: function (aWindow) { + _updateCookieHosts: function(aWindow) { var hosts = this._internalWindows[aWindow.__SSi].hosts = {}; // Since _updateCookiesHosts is only ever called for open windows during a @@ -2386,7 +2386,7 @@ var SessionStoreInternal = { * JS object containing window data references * { id: winData, etc. } */ - _updateCookies: function (aWindows) { + _updateCookies: function(aWindows) { function addCookieToHash(aHash, aHost, aPath, aName, aCookie) { // lazily build up a 3-dimensional hash, with // aHost, aPath, and aName as keys @@ -2452,7 +2452,7 @@ var SessionStoreInternal = { * @param aWindow * Window reference */ - _updateWindowFeatures: function (aWindow) { + _updateWindowFeatures: function(aWindow) { var winData = this._windows[aWindow.__SSi]; WINDOW_ATTRIBUTES.forEach(function(aAttr) { @@ -2482,7 +2482,7 @@ var SessionStoreInternal = { * Bool collect pinned tabs only * @returns object */ - _getCurrentState: function (aUpdateAll, aPinnedOnly) { + _getCurrentState: function(aUpdateAll, aPinnedOnly) { this._handleClosedWindows(); var activeWindow = this._getMostRecentBrowserWindow(); @@ -2548,8 +2548,8 @@ var SessionStoreInternal = { if (aPinnedOnly) { // perform a deep copy so that existing session variables are not changed. total = JSON.parse(this._toJSONString(total)); - total = total.filter(function (win) { - win.tabs = win.tabs.filter(function (tab) tab.pinned); + total = total.filter(function(win) { + win.tabs = win.tabs.filter(function(tab) tab.pinned); // remove closed tabs win._closedTabs = []; // correct selected tab index if it was stripped out @@ -2610,7 +2610,7 @@ var SessionStoreInternal = { * Window reference * @returns string */ - _getWindowState: function (aWindow) { + _getWindowState: function(aWindow) { if (!this._isWindowLoaded(aWindow)) return this._statesToRestore[aWindow.__SS_restoreID]; @@ -2626,7 +2626,7 @@ var SessionStoreInternal = { return { windows: [winData] }; }, - _collectWindowData: function (aWindow) { + _collectWindowData: function(aWindow) { if (!this._isWindowLoaded(aWindow)) return; @@ -2658,7 +2658,7 @@ var SessionStoreInternal = { * @param aFollowUp * bool this isn't the restoration of the first window */ - restoreWindow: function (aWindow, aState, aOverwriteTabs, aFollowUp) { + restoreWindow: function(aWindow, aState, aOverwriteTabs, aFollowUp) { if (!aFollowUp) { this.windowToFocus = aWindow; } @@ -2853,7 +2853,7 @@ var SessionStoreInternal = { * @param aSelectedTab * Index of selected tab (1 is first tab, 0 no selected tab) */ - _setTabsRestoringOrder : function ( + _setTabsRestoringOrder : function( aTabBrowser, aTabs, aTabData, aSelectedTab) { // Store the selected tab. Need to substract one to get the index in aTabs. @@ -2939,7 +2939,7 @@ var SessionStoreInternal = { * restored/loaded immediately even if restore_on_demand = true */ restoreHistoryPrecursor: - function (aWindow, aTabs, aTabData, aSelectTab, + function(aWindow, aTabs, aTabData, aSelectTab, aIx, aCount, aRestoreImmediately = false) { var tabbrowser = aWindow.gBrowser; @@ -3079,7 +3079,7 @@ var SessionStoreInternal = { * restored/loaded immediately even if restore_on_demand = true */ restoreHistory: - function (aWindow, aTabs, aTabData, aIdMap, aDocIdentMap, + function(aWindow, aTabs, aTabData, aIdMap, aDocIdentMap, aRestoreImmediately) { var _this = this; // if the tab got removed before being completely restored, then skip it @@ -3188,7 +3188,7 @@ var SessionStoreInternal = { * * @returns true/false indicating whether or not a load actually happened */ - restoreTab: function (aTab) { + restoreTab: function(aTab) { let window = aTab.ownerDocument.defaultView; let browser = aTab.linkedBrowser; let tabData = browser.__SS_data; @@ -3295,7 +3295,7 @@ var SessionStoreInternal = { * if there are no tabs to restore * if we have already reached the limit for number of tabs to restore */ - restoreNextTab: function () { + restoreNextTab: function() { // If we call in here while quitting, we don't actually want to do anything if (this._loadState == STATE_QUITTING) return; @@ -3323,7 +3323,7 @@ var SessionStoreInternal = { * @returns nsISHEntry */ _deserializeHistoryEntry: - function (aEntry, aIdMap, aDocIdentMap) { + function(aEntry, aIdMap, aDocIdentMap) { var shEntry = Cc["@mozilla.org/browser/session-history-entry;1"]. createInstance(Ci.nsISHEntry); @@ -3455,7 +3455,7 @@ var SessionStoreInternal = { /** * Restore properties to a loaded document */ - restoreDocument: function (aWindow, aBrowser, aEvent) { + restoreDocument: function(aWindow, aBrowser, aEvent) { // wait for the top frame to be loaded completely if (!aEvent || !aEvent.originalTarget || !aEvent.originalTarget.defaultView || aEvent.originalTarget.defaultView != aEvent.originalTarget.defaultView.top) { @@ -3548,7 +3548,7 @@ var SessionStoreInternal = { * @param aWinData * Object containing session data for the window */ - restoreWindowFeatures: function (aWindow, aWinData) { + restoreWindowFeatures: function(aWindow, aWinData) { var hidden = (aWinData.hidden)?aWinData.hidden.split(","):[]; WINDOW_HIDEABLE_FEATURES.forEach(function(aItem) { aWindow[aItem].visible = hidden.indexOf(aItem) == -1; @@ -3595,7 +3595,7 @@ var SessionStoreInternal = { * @param aSidebar * Sidebar command */ - restoreDimensions: function (aWindow, aWidth, aHeight, aLeft, aTop, aSizeMode, aSidebar) { + restoreDimensions: function(aWindow, aWidth, aHeight, aLeft, aTop, aSizeMode, aSidebar) { var win = aWindow; var _this = this; function win_(aName) { return _this._getWindowDimension(win, aName); } @@ -3695,7 +3695,7 @@ var SessionStoreInternal = { * @param aCookies * Array of cookie objects */ - restoreCookies: function (aCookies) { + restoreCookies: function(aCookies) { // MAX_EXPIRY should be 2^63-1, but JavaScript can't handle that precision var MAX_EXPIRY = Math.pow(2, 62); for (let i = 0; i < aCookies.length; i++) { @@ -3719,7 +3719,7 @@ var SessionStoreInternal = { * @param aDelay * Milliseconds to delay */ - saveStateDelayed: function (aWindow, aDelay) { + saveStateDelayed: function(aWindow, aDelay) { if (aWindow) { this._dirtyWindows[aWindow.__SSi] = true; } @@ -3745,7 +3745,7 @@ var SessionStoreInternal = { * @param aUpdateAll * Bool update all windows */ - saveState: function (aUpdateAll) { + saveState: function(aUpdateAll) { // If crash recovery is disabled, we only want to resume with pinned tabs // if we crash. let pinnedOnly = this._loadState == STATE_RUNNING && !this._resume_from_crash; @@ -3817,7 +3817,7 @@ var SessionStoreInternal = { /** * write a state object to disk */ - _saveStateObject: function (aStateObj) { + _saveStateObject: function(aStateObj) { let data = this._toJSONString(aStateObj); let stateString = this._createSupportsString(data); @@ -3861,7 +3861,7 @@ var SessionStoreInternal = { /* ........ Auxiliary Functions .............. */ // Wrap a string as a nsISupports - _createSupportsString: function (aData) { + _createSupportsString: function(aData) { let string = Cc["@mozilla.org/supports-string;1"] .createInstance(Ci.nsISupportsString); string.data = aData; @@ -3874,7 +3874,7 @@ var SessionStoreInternal = { * @param aFunc * Callback each window is passed to */ - _forEachBrowserWindow: function (aFunc) { + _forEachBrowserWindow: function(aFunc) { var windowsEnum = Services.wm.getEnumerator("navigator:browser"); while (windowsEnum.hasMoreElements()) { @@ -3889,7 +3889,7 @@ var SessionStoreInternal = { * Returns most recent window * @returns Window reference */ - _getMostRecentBrowserWindow: function () { + _getMostRecentBrowserWindow: function() { var win = Services.wm.getMostRecentWindow("navigator:browser"); if (!win) return null; @@ -3923,7 +3923,7 @@ var SessionStoreInternal = { * destroyed yet, which would otherwise cause getBrowserState and * setBrowserState to treat them as open windows. */ - _handleClosedWindows: function () { + _handleClosedWindows: function() { var windowsEnum = Services.wm.getEnumerator("navigator:browser"); while (windowsEnum.hasMoreElements()) { @@ -3940,7 +3940,7 @@ var SessionStoreInternal = { * @param aState * Object containing session data */ - _openWindowWithState: function (aState) { + _openWindowWithState: function(aState) { var argString = Cc["@mozilla.org/supports-string;1"]. createInstance(Ci.nsISupportsString); argString.data = ""; @@ -3974,7 +3974,7 @@ var SessionStoreInternal = { * Whether or not to resume session, if not recovering from a crash. * @returns bool */ - _doResumeSession: function () { + _doResumeSession: function() { return this._prefBranch.getIntPref("startup.page") == 3 || this._prefBranch.getBoolPref("sessionstore.resume_session_once"); }, @@ -3985,10 +3985,10 @@ var SessionStoreInternal = { * C.f.: nsBrowserContentHandler's defaultArgs implementation. * @returns bool */ - _isCmdLineEmpty: function (aWindow, aState) { + _isCmdLineEmpty: function(aWindow, aState) { var pinnedOnly = aState.windows && - aState.windows.every(function (win) - win.tabs.every(function (tab) tab.pinned)); + aState.windows.every(function(win) + win.tabs.every(function(tab) tab.pinned)); let hasFirstArgument = aWindow.arguments && aWindow.arguments[0]; if (!pinnedOnly) { @@ -4012,7 +4012,7 @@ var SessionStoreInternal = { * don't do normal check for deferred * @returns bool */ - checkPrivacyLevel: function (aIsHTTPS, aUseDefaultPref) { + checkPrivacyLevel: function(aIsHTTPS, aUseDefaultPref) { let pref = "sessionstore.privacy_level"; // If we're in the process of quitting and we're not autoresuming the session // then we should treat it as a deferred session. We have a different privacy @@ -4033,7 +4033,7 @@ var SessionStoreInternal = { * String sizemode | width | height | other window attribute * @returns string */ - _getWindowDimension: function (aWindow, aAttribute) { + _getWindowDimension: function(aWindow, aAttribute) { if (aAttribute == "sizemode") { switch (aWindow.windowState) { case aWindow.STATE_FULLSCREEN: @@ -4070,7 +4070,7 @@ var SessionStoreInternal = { * @param string * @returns nsIURI */ - _getURIFromString: function (aString) { + _getURIFromString: function(aString) { return Services.io.newURI(aString, null, null); }, @@ -4079,7 +4079,7 @@ var SessionStoreInternal = { * @param aRecentCrashes is the number of consecutive crashes * @returns whether a restore page will be needed for the session state */ - _needsRestorePage: function (aState, aRecentCrashes) { + _needsRestorePage: function(aState, aRecentCrashes) { const SIX_HOURS_IN_MS = 6 * 60 * 60 * 1000; // don't display the page when there's nothing to restore @@ -4116,7 +4116,7 @@ var SessionStoreInternal = { * The current tab state * @returns boolean */ - _shouldSaveTabState: function (aTabState) { + _shouldSaveTabState: function(aTabState) { // If the tab has only a transient about: history entry, no other // session history, and no userTypedValue, then we don't actually want to // store this tab's data. @@ -4136,7 +4136,7 @@ var SessionStoreInternal = { * @param aTab * @returns boolean */ - _canRestoreTabHistory: function (aTab) { + _canRestoreTabHistory: function(aTab) { return aTab.parentNode && aTab.linkedBrowser && aTab.linkedBrowser.__SS_tabStillLoading; }, @@ -4158,7 +4158,7 @@ var SessionStoreInternal = { * The state, presumably from nsISessionStartup.state * @returns [defaultState, state] */ - _prepDataForDeferredRestore: function (state) { + _prepDataForDeferredRestore: function(state) { // Make sure that we don't modify the global state as provided by // nsSessionStartup.state. Converting the object to a JSON string and // parsing it again is the easiest way to do that, although not the most @@ -4249,7 +4249,7 @@ var SessionStoreInternal = { * This alters the state of aWinState and aTargetWinState. */ _splitCookiesFromWindow: - function (aWinState, aTargetWinState) { + function(aWinState, aTargetWinState) { if (!aWinState.cookies || !aWinState.cookies.length) return; @@ -4287,11 +4287,11 @@ var SessionStoreInternal = { * @param aJSObject is the object to be converted * @returns the object's JSON representation */ - _toJSONString: function (aJSObject) { + _toJSONString: function(aJSObject) { return JSON.stringify(aJSObject); }, - _sendRestoreCompletedNotifications: function () { + _sendRestoreCompletedNotifications: function() { // not all windows restored, yet if (this._restoreCount > 1) { this._restoreCount--; @@ -4317,7 +4317,7 @@ var SessionStoreInternal = { * @param aValue the window's busy state */ _setWindowStateBusyValue: - function (aWindow, aValue) { + function(aWindow, aValue) { this._windows[aWindow.__SSi].busy = aValue; @@ -4333,7 +4333,7 @@ var SessionStoreInternal = { * Set the given window's state to 'not busy'. * @param aWindow the window */ - _setWindowStateReady: function (aWindow) { + _setWindowStateReady: function(aWindow) { this._setWindowStateBusyValue(aWindow, false); this._sendWindowStateEvent(aWindow, "Ready"); }, @@ -4342,7 +4342,7 @@ var SessionStoreInternal = { * Set the given window's state to 'busy'. * @param aWindow the window */ - _setWindowStateBusy: function (aWindow) { + _setWindowStateBusy: function(aWindow) { this._setWindowStateBusyValue(aWindow, true); this._sendWindowStateEvent(aWindow, "Busy"); }, @@ -4352,7 +4352,7 @@ var SessionStoreInternal = { * @param aWindow the window * @param aType the type of event, SSWindowState will be prepended to this string */ - _sendWindowStateEvent: function (aWindow, aType) { + _sendWindowStateEvent: function(aWindow, aType) { let event = aWindow.document.createEvent("Events"); event.initEvent("SSWindowState" + aType, true, false); aWindow.dispatchEvent(event); @@ -4362,7 +4362,7 @@ var SessionStoreInternal = { * Dispatch the SSTabRestored event for the given tab. * @param aTab the which has been restored */ - _sendTabRestoredNotification: function (aTab) { + _sendTabRestoredNotification: function(aTab) { let event = aTab.ownerDocument.createEvent("Events"); event.initEvent("SSTabRestored", true, false); aTab.dispatchEvent(event); @@ -4374,7 +4374,7 @@ var SessionStoreInternal = { * @returns whether this window's data is still cached in _statesToRestore * because it's not fully loaded yet */ - _isWindowLoaded: function (aWindow) { + _isWindowLoaded: function(aWindow) { return !aWindow.__SS_restoreID; }, @@ -4386,7 +4386,7 @@ var SessionStoreInternal = { * * @returns aString that has been updated with the new title */ - _replaceLoadingTitle : function (aString, aTabbrowser, aTab) { + _replaceLoadingTitle : function(aString, aTabbrowser, aTab) { if (aString == aTabbrowser.mStringBundle.getString("tabs.connecting")) { aTabbrowser.setTabTitle(aTab); [aString, aTab.label] = [aTab.label, aString]; @@ -4399,7 +4399,7 @@ var SessionStoreInternal = { * where we don't have any non-popup windows on Windows and Linux. Then we must * resize such that we have at least one non-popup window. */ - _capClosedWindows : function () { + _capClosedWindows : function() { if (this._closedWindows.length <= this._max_windows_undo) return; let spliceTo = this._max_windows_undo; @@ -4415,7 +4415,7 @@ var SessionStoreInternal = { this._closedWindows.splice(spliceTo, this._closedWindows.length); }, - _clearRestoringWindows: function () { + _clearRestoringWindows: function() { for (let i = 0; i < this._closedWindows.length; i++) { delete this._closedWindows[i]._shouldRestore; } @@ -4424,7 +4424,7 @@ var SessionStoreInternal = { /** * Reset state to prepare for a new session state to be restored. */ - _resetRestoringState: function () { + _resetRestoringState: function() { TabRestoreQueue.reset(); this._tabsRestoringCount = 0; }, @@ -4436,7 +4436,7 @@ var SessionStoreInternal = { * @param aTab * The tab that will be "reset" */ - _resetTabRestoringState: function (aTab) { + _resetTabRestoringState: function(aTab) { let window = aTab.ownerDocument.defaultView; let browser = aTab.linkedBrowser; @@ -4478,7 +4478,7 @@ var SessionStoreInternal = { * @param aWindow * The window to add our progress listener to */ - _ensureTabsProgressListener: function (aWindow) { + _ensureTabsProgressListener: function(aWindow) { let tabbrowser = aWindow.gBrowser; if (tabbrowser.mTabsProgressListeners.indexOf(gRestoreTabsProgressListener) == -1) tabbrowser.addTabsProgressListener(gRestoreTabsProgressListener); @@ -4490,7 +4490,7 @@ var SessionStoreInternal = { * @param aWindow * The window from which to remove our progress listener from */ - _removeTabsProgressListener: function (aWindow) { + _removeTabsProgressListener: function(aWindow) { // If there are no tabs left to restore (or restoring) in this window, then // we can safely remove the progress listener from this window. if (!aWindow.__SS_tabsToRestore) @@ -4503,7 +4503,7 @@ var SessionStoreInternal = { * @param aTab * The tab who's browser to remove the listener */ - _removeSHistoryListener: function (aTab) { + _removeSHistoryListener: function(aTab) { let browser = aTab.linkedBrowser; if (browser.__SS_shistoryListener) { browser.webNavigation.sessionHistory. @@ -4570,12 +4570,12 @@ var TabRestoreQueue = { }, // Resets the queue and removes all tabs. - reset: function () { + reset: function() { this.tabs = {priority: [], visible: [], hidden: []}; }, // Adds a tab to the queue and determines its priority bucket. - add: function (tab) { + add: function(tab) { let {priority, hidden, visible} = this.tabs; if (tab.pinned) { @@ -4588,7 +4588,7 @@ var TabRestoreQueue = { }, // Removes a given tab from the queue, if it's in there. - remove: function (tab) { + remove: function(tab) { let {priority, hidden, visible} = this.tabs; // We'll always check priority first since we don't @@ -4607,7 +4607,7 @@ var TabRestoreQueue = { }, // Returns and removes the tab with the highest priority. - shift: function () { + shift: function() { let set; let {priority, hidden, visible} = this.tabs; @@ -4627,7 +4627,7 @@ var TabRestoreQueue = { }, // Moves a given tab from the 'hidden' to the 'visible' bucket. - hiddenToVisible: function (tab) { + hiddenToVisible: function(tab) { let {hidden, visible} = this.tabs; let index = hidden.indexOf(tab); @@ -4640,7 +4640,7 @@ var TabRestoreQueue = { }, // Moves a given tab from the 'visible' to the 'hidden' bucket. - visibleToHidden: function (tab) { + visibleToHidden: function(tab) { let {visible, hidden} = this.tabs; let index = visible.indexOf(tab); @@ -4659,19 +4659,19 @@ var TabRestoreQueue = { var DyingWindowCache = { _data: new WeakMap(), - has: function (window) { + has: function(window) { return this._data.has(window); }, - get: function (window) { + get: function(window) { return this._data.get(window); }, - set: function (window, data) { + set: function(window, data) { this._data.set(window, data); }, - remove: function (window) { + remove: function(window) { this._data.delete(window); } }; @@ -4689,7 +4689,7 @@ var TabAttributes = { // 'skipbackgroundnotify' is used internal by tabbrowser.xml. _skipAttrs: new Set(["image", "pending", "skipbackgroundnotify"]), - persist: function (name) { + persist: function(name) { if (this._attrs.has(name) || this._skipAttrs.has(name)) { return false; } @@ -4698,7 +4698,7 @@ var TabAttributes = { return true; }, - get: function (tab) { + get: function(tab) { let data = {}; for (let name of this._attrs) { @@ -4710,7 +4710,7 @@ var TabAttributes = { return data; }, - set: function (tab, data = {}) { + set: function(tab, data = {}) { // Clear attributes. for (let name of this._attrs) { tab.removeAttribute(name); diff --git a/application/palemoon/components/sessionstore/XPathGenerator.jsm b/application/palemoon/components/sessionstore/XPathGenerator.jsm index 2189ece25b..d0639ebb49 100644 --- a/application/palemoon/components/sessionstore/XPathGenerator.jsm +++ b/application/palemoon/components/sessionstore/XPathGenerator.jsm @@ -12,7 +12,7 @@ this.XPathGenerator = { /** * Generates an approximate XPath query to an (X)HTML node */ - generate: function (aNode) { + generate: function(aNode) { // have we reached the document node already? if (!aNode.parentNode) return ""; @@ -46,7 +46,7 @@ this.XPathGenerator = { /** * Resolves an XPath query generated by XPathGenerator.generate */ - resolve: function (aDocument, aQuery) { + resolve: function(aDocument, aQuery) { let xptype = Components.interfaces.nsIDOMXPathResult.FIRST_ORDERED_NODE_TYPE; return aDocument.evaluate(aQuery, aDocument, this.resolveNS, xptype, null).singleNodeValue; }, @@ -54,14 +54,14 @@ this.XPathGenerator = { /** * Namespace resolver for the above XPath resolver */ - resolveNS: function (aPrefix) { + resolveNS: function(aPrefix) { return XPathGenerator.namespaceURIs[aPrefix] || null; }, /** * @returns valid XPath for the given node (usually just the local name itself) */ - escapeName: function (aName) { + escapeName: function(aName) { // we can't just use the node's local name, if it contains // special characters (cf. bug 485482) return /^\w+$/.test(aName) ? aName : @@ -71,7 +71,7 @@ this.XPathGenerator = { /** * @returns a properly quoted string to insert into an XPath query */ - quoteArgument: function (aArg) { + quoteArgument: function(aArg) { return !/'/.test(aArg) ? "'" + aArg + "'" : !/"/.test(aArg) ? '"' + aArg + '"' : "concat('" + aArg.replace(/'+/g, "',\"$&\",'") + "')"; diff --git a/application/palemoon/components/sessionstore/_SessionFile.jsm b/application/palemoon/components/sessionstore/_SessionFile.jsm index 52c0b526e1..173f6035d1 100644 --- a/application/palemoon/components/sessionstore/_SessionFile.jsm +++ b/application/palemoon/components/sessionstore/_SessionFile.jsm @@ -44,11 +44,11 @@ XPCOMUtils.defineLazyModuleGetter(this, "console", "resource://gre/modules/Console.jsm"); // An encoder to UTF-8. -XPCOMUtils.defineLazyGetter(this, "gEncoder", function () { +XPCOMUtils.defineLazyGetter(this, "gEncoder", function() { return new TextEncoder(); }); // A decoder. -XPCOMUtils.defineLazyGetter(this, "gDecoder", function () { +XPCOMUtils.defineLazyGetter(this, "gDecoder", function() { return new TextDecoder(); }); @@ -57,37 +57,37 @@ this._SessionFile = { * A promise fulfilled once initialization (either synchronous or * asynchronous) is complete. */ - promiseInitialized: function () { + promiseInitialized: function() { return SessionFileInternal.promiseInitialized; }, /** * Read the contents of the session file, asynchronously. */ - read: function () { + read: function() { return SessionFileInternal.read(); }, /** * Read the contents of the session file, synchronously. */ - syncRead: function () { + syncRead: function() { return SessionFileInternal.syncRead(); }, /** * Write the contents of the session file, asynchronously. */ - write: function (aData) { + write: function(aData) { return SessionFileInternal.write(aData); }, /** * Create a backup copy, asynchronously. */ - createBackupCopy: function () { + createBackupCopy: function() { return SessionFileInternal.createBackupCopy(); }, /** * Wipe the contents of the session file, asynchronously. */ - wipe: function () { + wipe: function() { return SessionFileInternal.wipe(); } }; @@ -105,7 +105,7 @@ const TaskUtils = { * @return {Promise} A promise behaving as |promise|, but with additional * logging in case of uncaught error. */ - captureErrors: function (promise) { + captureErrors: function(promise) { return promise.then( null, function onError(reason) { @@ -152,7 +152,7 @@ var SessionFileInternal = { * A path to read the file from. * @returns string if successful, undefined otherwise. */ - readAuxSync: function (aPath) { + readAuxSync: function(aPath) { let text; try { let file = new FileUtils.File(aPath); @@ -184,7 +184,7 @@ var SessionFileInternal = { * happened between backup and write), attempt to read the sessionstore.bak * instead. */ - syncRead: function () { + syncRead: function() { // First read the sessionstore.js. let text = this.readAuxSync(this.path); if (typeof text === "undefined") { @@ -204,9 +204,9 @@ var SessionFileInternal = { * incrementally updated by the worker process. * @returns string if successful, undefined otherwise. */ - readAux: function (aPath, aReadOptions) { + readAux: function(aPath, aReadOptions) { let self = this; - return TaskUtils.spawn(function () { + return TaskUtils.spawn(function() { let text; try { let bytes = yield OS.File.read(aPath, undefined, aReadOptions); @@ -228,7 +228,7 @@ var SessionFileInternal = { * happened between backup and write), attempt to read the sessionstore.bak * instead. */ - read: function () { + read: function() { let self = this; return TaskUtils.spawn(function task() { // Specify |outExecutionDuration| option to hold the combined duration of @@ -253,7 +253,7 @@ var SessionFileInternal = { }); }, - write: function (aData) { + write: function(aData) { let refObj = {}; let self = this; return TaskUtils.spawn(function task() { @@ -268,7 +268,7 @@ var SessionFileInternal = { }); }, - createBackupCopy: function () { + createBackupCopy: function() { let backupCopyOptions = { outExecutionDuration: null }; @@ -285,7 +285,7 @@ var SessionFileInternal = { }); }, - wipe: function () { + wipe: function() { let self = this; return TaskUtils.spawn(function task() { try { @@ -308,7 +308,7 @@ var SessionFileInternal = { }); }, - _isNoSuchFile: function (aReason) { + _isNoSuchFile: function(aReason) { return aReason instanceof OS.File.Error && aReason.becauseNoSuchFile; } }; diff --git a/application/palemoon/components/sessionstore/nsSessionStartup.js b/application/palemoon/components/sessionstore/nsSessionStartup.js index 0c9051e004..13e13ecdb6 100644 --- a/application/palemoon/components/sessionstore/nsSessionStartup.js +++ b/application/palemoon/components/sessionstore/nsSessionStartup.js @@ -69,7 +69,7 @@ SessionStartup.prototype = { /** * Initialize the component */ - init: function () { + init: function() { // do not need to initialize anything in auto-started private browsing sessions if (PrivateBrowsingUtils.permanentPrivateBrowsing) { this._initialized = true; @@ -88,14 +88,14 @@ SessionStartup.prototype = { }, // Wrap a string as a nsISupports - _createSupportsString: function (aData) { + _createSupportsString: function(aData) { let string = Cc["@mozilla.org/supports-string;1"] .createInstance(Ci.nsISupportsString); string.data = aData; return string; }, - _onSessionFileRead: function (aStateString) { + _onSessionFileRead: function(aStateString) { if (this._initialized) { // Initialization is complete, nothing else to do return; @@ -174,7 +174,7 @@ SessionStartup.prototype = { /** * Handle notifications */ - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "app-startup": Services.obs.addObserver(this, "final-ui-startup", true); @@ -225,7 +225,7 @@ SessionStartup.prototype = { * session file synchronously. * @returns bool */ - doRestore: function () { + doRestore: function() { this._ensureInitialized(); return this._willRestore(); }, @@ -234,7 +234,7 @@ SessionStartup.prototype = { * Determines whether there is a pending session restore. * @returns bool */ - _willRestore: function () { + _willRestore: function() { return this._sessionType == Ci.nsISessionStartup.RECOVER_SESSION || this._sessionType == Ci.nsISessionStartup.RESUME_SESSION; }, @@ -272,7 +272,7 @@ SessionStartup.prototype = { // Ensure that initialization is complete. // If initialization is not complete yet, fall back to a synchronous // initialization and kill ongoing asynchronous initialization - _ensureInitialized: function () { + _ensureInitialized: function() { try { if (this._initialized) { // Initialization is complete, nothing else to do diff --git a/application/palemoon/components/shell/nsSetDefaultBrowser.js b/application/palemoon/components/shell/nsSetDefaultBrowser.js index 4c6e1a0034..853d8d860d 100644 --- a/application/palemoon/components/shell/nsSetDefaultBrowser.js +++ b/application/palemoon/components/shell/nsSetDefaultBrowser.js @@ -15,7 +15,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); function nsSetDefaultBrowser() {} nsSetDefaultBrowser.prototype = { - handle: function (aCmdline) { + handle: function(aCmdline) { if (aCmdline.handleFlag("setDefaultBrowser", false)) { ShellService.setDefaultBrowser(true, true); } diff --git a/application/palemoon/components/sync/addDevice.js b/application/palemoon/components/sync/addDevice.js index edc36c7b92..98ac74d7da 100644 --- a/application/palemoon/components/sync/addDevice.js +++ b/application/palemoon/components/sync/addDevice.js @@ -17,7 +17,7 @@ const DEVICE_CONNECTED_PAGE = 2; var gSyncAddDevice = { - init: function () { + init: function() { this.pin1.setAttribute("maxlength", PIN_PART_LENGTH); this.pin2.setAttribute("maxlength", PIN_PART_LENGTH); this.pin3.setAttribute("maxlength", PIN_PART_LENGTH); @@ -34,7 +34,7 @@ var gSyncAddDevice = { Weave.Service.scheduler.scheduleNextSync(0); }, - onPageShow: function () { + onPageShow: function() { this.wizard.getButton("back").hidden = true; switch (this.wizard.pageIndex) { @@ -60,7 +60,7 @@ var gSyncAddDevice = { } }, - onWizardAdvance: function () { + onWizardAdvance: function() { switch (this.wizard.pageIndex) { case ADD_DEVICE_PAGE: this.startTransfer(); @@ -72,21 +72,21 @@ var gSyncAddDevice = { return true; }, - startTransfer: function () { + startTransfer: function() { this.errorRow.hidden = true; // When onAbort is called, Weave may already be gone. const JPAKE_ERROR_USERABORT = Weave.JPAKE_ERROR_USERABORT; let self = this; let jpakeclient = this._jpakeclient = new Weave.JPAKEClient({ - onPaired: function () { + onPaired: function() { let credentials = {account: Weave.Service.identity.account, password: Weave.Service.identity.basicPassword, synckey: Weave.Service.identity.syncKey, serverURL: Weave.Service.serverURL}; jpakeclient.sendAndComplete(credentials); }, - onComplete: function () { + onComplete: function() { delete self._jpakeclient; self.wizard.pageIndex = DEVICE_CONNECTED_PAGE; @@ -94,7 +94,7 @@ var gSyncAddDevice = { // device with which we just paired. Weave.Service.scheduler.scheduleNextSync(Weave.Service.scheduler.activeInterval); }, - onAbort: function (error) { + onAbort: function(error) { delete self._jpakeclient; // Aborted by user, ignore. @@ -118,7 +118,7 @@ var gSyncAddDevice = { jpakeclient.pairWithPIN(pin, expectDelay); }, - onWizardBack: function () { + onWizardBack: function() { if (this.wizard.pageIndex != SYNC_KEY_PAGE) return true; @@ -126,7 +126,7 @@ var gSyncAddDevice = { return false; }, - onWizardCancel: function () { + onWizardCancel: function() { if (this._jpakeclient) { this._jpakeclient.abort(); delete this._jpakeclient; @@ -134,7 +134,7 @@ var gSyncAddDevice = { return true; }, - onTextBoxInput: function (textbox) { + onTextBoxInput: function(textbox) { if (textbox && textbox.value.length == PIN_PART_LENGTH) this.nextFocusEl[textbox.id].focus(); @@ -143,14 +143,14 @@ var gSyncAddDevice = { && this.pin3.value.length == PIN_PART_LENGTH); }, - goToSyncKeyPage: function () { + goToSyncKeyPage: function() { this.wizard.pageIndex = SYNC_KEY_PAGE; } }; // onWizardAdvance() and onPageShow() are run before init() so we'll set // these up as lazy getters. -["wizard", "pin1", "pin2", "pin3"].forEach(function (id) { +["wizard", "pin1", "pin2", "pin3"].forEach(function(id) { XPCOMUtils.defineLazyGetter(gSyncAddDevice, id, function() { return document.getElementById(id); }); diff --git a/application/palemoon/components/sync/genericChange.js b/application/palemoon/components/sync/genericChange.js index 776fbf5d6e..7ab5c6b8fd 100644 --- a/application/palemoon/components/sync/genericChange.js +++ b/application/palemoon/components/sync/genericChange.js @@ -29,7 +29,7 @@ var Change = { return this._dialogType == "UpdatePassphrase"; }, - onLoad: function () { + onLoad: function() { /* Load labels */ let introText = document.getElementById("introText"); let introText2 = document.getElementById("introText2"); @@ -112,16 +112,16 @@ var Change = { .setAttribute("label", document.title); }, - _clearStatus: function () { + _clearStatus: function() { this._status.value = ""; this._statusIcon.removeAttribute("status"); }, - _updateStatus: function (str, state) { + _updateStatus: function(str, state) { this._updateStatusWithString(this._str(str), state); }, - _updateStatusWithString: function (string, state) { + _updateStatusWithString: function(string, state) { this._statusRow.hidden = false; this._status.value = string; this._statusIcon.setAttribute("status", state); @@ -148,13 +148,13 @@ var Change = { } }, - doGeneratePassphrase: function () { + doGeneratePassphrase: function() { let passphrase = Weave.Utils.generatePassphrase(); this._passphraseBox.value = Weave.Utils.hyphenatePassphrase(passphrase); this._dialog.getButton("finish").disabled = false; }, - doChangePassphrase: function () { + doChangePassphrase: function() { let pp = Weave.Utils.normalizePassphrase(this._passphraseBox.value); if (this._updatingPassphrase) { Weave.Service.identity.syncKey = pp; @@ -179,7 +179,7 @@ var Change = { return false; }, - doChangePassword: function () { + doChangePassword: function() { if (this._currentPasswordInvalid) { Weave.Service.identity.basicPassword = this._firstBox.value; if (Weave.Service.login()) { @@ -202,7 +202,7 @@ var Change = { return false; }, - validate: function (event) { + validate: function(event) { let valid = false; let errorString = ""; @@ -228,7 +228,7 @@ var Change = { this._dialog.getButton("finish").disabled = !valid; }, - _str: function (str) { + _str: function(str) { return this._stringBundle.GetStringFromName(str); } }; diff --git a/application/palemoon/components/sync/quota.js b/application/palemoon/components/sync/quota.js index 4733f9fb4f..90b16f9092 100644 --- a/application/palemoon/components/sync/quota.js +++ b/application/palemoon/components/sync/quota.js @@ -12,7 +12,7 @@ Cu.import("resource://gre/modules/DownloadUtils.jsm"); var gSyncQuota = { - init: function () { + init: function() { this.bundle = document.getElementById("quotaStrings"); let caption = document.getElementById("treeCaption"); caption.firstChild.nodeValue = this.bundle.getString("quota.treeCaption.label"); @@ -24,9 +24,9 @@ var gSyncQuota = { this.loadData(); }, - loadData: function () { + loadData: function() { this._usage_req = Weave.Service.getStorageInfo(Weave.INFO_COLLECTION_USAGE, - function (error, usage) { + function(error, usage) { delete gSyncQuota._usage_req; // displayUsageData handles null values, so no need to check 'error'. gUsageTreeView.displayUsageData(usage); @@ -36,7 +36,7 @@ var gSyncQuota = { let bundle = this.bundle; this._quota_req = Weave.Service.getStorageInfo(Weave.INFO_QUOTA, - function (error, quota) { + function(error, quota) { delete gSyncQuota._quota_req; if (error) { @@ -57,7 +57,7 @@ var gSyncQuota = { }); }, - onCancel: function () { + onCancel: function() { if (this._usage_req) { this._usage_req.abort(); } @@ -67,7 +67,7 @@ var gSyncQuota = { return true; }, - onAccept: function () { + onAccept: function() { let engines = gUsageTreeView.getEnginesToDisable(); for each (let engine in engines) { Weave.Service.engineManager.get(engine).enabled = false; @@ -80,7 +80,7 @@ var gSyncQuota = { return this.onCancel(); }, - convertKB: function (value) { + convertKB: function(value) { return DownloadUtils.convertByteUnits(value * 1024); } @@ -98,7 +98,7 @@ var gUsageTreeView = { _collections: [], _byname: {}, - init: function () { + init: function() { let retrievingLabel = gSyncQuota.bundle.getString("quota.retrieving.label"); for each (let engine in Weave.Service.engineManager.getEnabled()) { if (this._ignored[engine.name]) @@ -122,7 +122,7 @@ var gUsageTreeView = { } }, - _collectionTitle: function (engine) { + _collectionTitle: function(engine) { try { return gSyncQuota.bundle.getString( "collection." + engine.prefName + ".label"); @@ -134,7 +134,7 @@ var gUsageTreeView = { /* * Process the quota information as returned by info/collection_usage. */ - displayUsageData: function (data) { + displayUsageData: function(data) { for each (let coll in this._collections) { coll.size = 0; // If we couldn't retrieve any data, just blank out the label. @@ -157,7 +157,7 @@ var gUsageTreeView = { /* * Handle click events on the tree. */ - onTreeClick: function (event) { + onTreeClick: function(event) { if (event.button == 2) return; @@ -169,7 +169,7 @@ var gUsageTreeView = { /* * Toggle enabled state of an engine. */ - toggle: function (row) { + toggle: function(row) { // Update the tree let collection = this._collections[row]; collection.enabled = !collection.enabled; @@ -180,7 +180,7 @@ var gUsageTreeView = { * Return a list of engines (or rather their pref names) that should be * disabled. */ - getEnginesToDisable: function () { + getEnginesToDisable: function() { // Tycho: return [coll.name for each (coll in this._collections) if (!coll.enabled)]; let engines = []; for each (let coll in this._collections) { @@ -216,7 +216,7 @@ var gUsageTreeView = { return this._collections[row].enabled; }, - getCellText: function (row, col) { + getCellText: function(row, col) { let collection = this._collections[row]; switch (col.id) { case "collection": @@ -228,7 +228,7 @@ var gUsageTreeView = { } }, - setTree: function (tree) { + setTree: function(tree) { this.treeBox = tree; }, @@ -237,7 +237,7 @@ var gUsageTreeView = { selectionChanged: function() {}, cycleCell: function(row, col) {}, isEditable: function(row, col) { return false; }, - isSelectable: function (row, col) { return false; }, + isSelectable: function(row, col) { return false; }, setCellValue: function(row, col, value) {}, setCellText: function(row, col, value) {}, performAction: function(action) {}, diff --git a/application/palemoon/components/sync/setup.js b/application/palemoon/components/sync/setup.js index 8bf0ecc34c..9ff70d471b 100644 --- a/application/palemoon/components/sync/setup.js +++ b/application/palemoon/components/sync/setup.js @@ -58,7 +58,7 @@ var gSyncSetup = { return document.getElementById("existingServer").selectedIndex == 0; }, - init: function () { + init: function() { let obs = [ ["weave:service:change-passphrase", "onResetPassphrase"], ["weave:service:login:start", "onLoginStart"], @@ -80,7 +80,7 @@ var gSyncSetup = { addRem(true); window.addEventListener("unload", function() addRem(false), false); - window.setTimeout(function () { + window.setTimeout(function() { // Force Service to be loaded so that engines are registered. // See Bug 670082. Weave.Service; @@ -118,14 +118,14 @@ var gSyncSetup = { .getAttribute("accesskey"); }, - startNewAccountSetup: function () { + startNewAccountSetup: function() { if (!Weave.Utils.ensureMPUnlocked()) return false; this._settingUpNew = true; this.wizard.pageIndex = NEW_ACCOUNT_START_PAGE; }, - useExistingAccount: function () { + useExistingAccount: function() { if (!Weave.Utils.ensureMPUnlocked()) return false; this._settingUpNew = false; @@ -138,7 +138,7 @@ var gSyncSetup = { } }, - resetPassphrase: function () { + resetPassphrase: function() { // Apply the existing form fields so that // Weave.Service.changePassphrase() has the necessary credentials. Weave.Service.identity.account = document.getElementById("existingAccountName").value; @@ -170,22 +170,22 @@ var gSyncSetup = { gSyncUtils.resetPassphrase(true); }, - onResetPassphrase: function () { + onResetPassphrase: function() { document.getElementById("existingPassphrase").value = Weave.Utils.hyphenatePassphrase(Weave.Service.identity.syncKey); this.checkFields(); this.wizard.advance(); }, - onLoginStart: function () { + onLoginStart: function() { this.toggleLoginFeedback(false); }, - onLoginEnd: function () { + onLoginEnd: function() { this.toggleLoginFeedback(true); }, - sendCredentialsAfterSync: function () { + sendCredentialsAfterSync: function() { let send = function() { Services.obs.removeObserver("weave:service:sync:finish", send); Services.obs.removeObserver("weave:service:sync:error", send); @@ -199,7 +199,7 @@ var gSyncSetup = { Services.obs.addObserver("weave:service:sync:error", send, false); }, - toggleLoginFeedback: function (stop) { + toggleLoginFeedback: function(stop) { document.getElementById("login-throbber").hidden = stop; let password = document.getElementById("existingPasswordFeedbackRow"); let server = document.getElementById("existingServerFeedbackRow"); @@ -228,7 +228,7 @@ var gSyncSetup = { this._setFeedbackMessage(feedback, false, Weave.Status.login); }, - setupInitialSync: function () { + setupInitialSync: function() { let action = document.getElementById("mergeChoiceRadio").selectedItem.id; switch (action) { case "resetClient": @@ -245,11 +245,11 @@ var gSyncSetup = { }, // fun with validation! - checkFields: function () { + checkFields: function() { this.wizard.canAdvance = this.readyToAdvance(); }, - readyToAdvance: function () { + readyToAdvance: function() { switch (this.wizard.pageIndex) { case INTRO_PAGE: return false; @@ -290,11 +290,11 @@ var gSyncSetup = { this.pin3.value.length == PIN_PART_LENGTH); }, - onEmailInput: function () { + onEmailInput: function() { // Check account validity when the user stops typing for 1 second. if (this._checkAccountTimer) window.clearTimeout(this._checkAccountTimer); - this._checkAccountTimer = window.setTimeout(function () { + this._checkAccountTimer = window.setTimeout(function() { gSyncSetup.checkAccount(); }, 1000); }, @@ -334,7 +334,7 @@ var gSyncSetup = { this.checkFields(); }, - onPasswordChange: function () { + onPasswordChange: function() { let password = document.getElementById("weavePassword"); let pwconfirm = document.getElementById("weavePasswordConfirm"); let [valid, errorString] = gSyncUtils.validatePassword(password, pwconfirm); @@ -417,7 +417,7 @@ var gSyncSetup = { } }, - onWizardAdvance: function () { + onWizardAdvance: function() { // Check pageIndex so we don't prompt before the Sync setup wizard appears. // This is a fallback in case the Master Password gets locked mid-wizard. if ((this.wizard.pageIndex >= 0) && @@ -506,7 +506,7 @@ var gSyncSetup = { return true; }, - onWizardBack: function () { + onWizardBack: function() { switch (this.wizard.pageIndex) { case NEW_ACCOUNT_START_PAGE: case EXISTING_ACCOUNT_LOGIN_PAGE: @@ -533,7 +533,7 @@ var gSyncSetup = { return true; }, - wizardFinish: function () { + wizardFinish: function() { this.setupInitialSync(); if (this.wizardType == "pair") { @@ -568,7 +568,7 @@ var gSyncSetup = { window.close(); }, - onWizardCancel: function () { + onWizardCancel: function() { if (this._resettingSync) return; @@ -577,7 +577,7 @@ var gSyncSetup = { Weave.Service.startOver(); }, - onSyncOptions: function () { + onSyncOptions: function() { this._beforeOptionsPage = this.wizard.pageIndex; this.wizard.pageIndex = OPTIONS_PAGE; }, @@ -595,7 +595,7 @@ var gSyncSetup = { return false; }, - startPairing: function () { + startPairing: function() { this.pairDeviceErrorRow.hidden = true; // When onAbort is called, Weave may already be gone. const JPAKE_ERROR_USERABORT = Weave.JPAKE_ERROR_USERABORT; @@ -605,11 +605,11 @@ var gSyncSetup = { onPaired: function onPaired() { self.wizard.pageIndex = INTRO_PAGE; }, - onComplete: function () { + onComplete: function() { // This method will never be called since SendCredentialsController // will take over after the wizard completes. }, - onAbort: function (error) { + onAbort: function(error) { delete self._jpakeclient; // Aborted by user, ignore. The window is almost certainly going to close @@ -636,7 +636,7 @@ var gSyncSetup = { jpakeclient.pairWithPIN(pin, expectDelay); }, - completePairing: function () { + completePairing: function() { if (!this._jpakeclient) { // The channel was aborted while we were setting up the account // locally. XXX TODO should we do anything here, e.g. tell @@ -649,7 +649,7 @@ var gSyncSetup = { this._jpakeclient.controller = controller; }, - startEasySetup: function () { + startEasySetup: function() { // Don't do anything if we have a client already (e.g. we went to // Sync Options and just came back). if (this._jpakeclient) @@ -660,15 +660,15 @@ var gSyncSetup = { let self = this; this._jpakeclient = new Weave.JPAKEClient({ - displayPIN: function (pin) { + displayPIN: function(pin) { document.getElementById("easySetupPIN1").value = pin.slice(0, 4); document.getElementById("easySetupPIN2").value = pin.slice(4, 8); document.getElementById("easySetupPIN3").value = pin.slice(8); }, - onPairingStart: function () {}, + onPairingStart: function() {}, - onComplete: function (credentials) { + onComplete: function(credentials) { Weave.Service.identity.account = credentials.account; Weave.Service.identity.basicPassword = credentials.password; Weave.Service.identity.syncKey = credentials.synckey; @@ -676,7 +676,7 @@ var gSyncSetup = { gSyncSetup.wizardFinish(); }, - onAbort: function (error) { + onAbort: function(error) { delete self._jpakeclient; // Ignore if wizard is aborted. @@ -696,7 +696,7 @@ var gSyncSetup = { this._jpakeclient.receiveNoPIN(); }, - abortEasySetup: function () { + abortEasySetup: function() { document.getElementById("easySetupPIN1").value = ""; document.getElementById("easySetupPIN2").value = ""; document.getElementById("easySetupPIN3").value = ""; @@ -707,7 +707,7 @@ var gSyncSetup = { delete this._jpakeclient; }, - manualSetup: function () { + manualSetup: function() { this.abortEasySetup(); this.wizard.pageIndex = EXISTING_ACCOUNT_LOGIN_PAGE; }, @@ -715,7 +715,7 @@ var gSyncSetup = { // _handleNoScript is needed because it blocks the captcha. So we temporarily // allow the necessary sites so that we can verify the user is in fact a human. // This was done with the help of Giorgio (NoScript author). See bug 508112. - _handleNoScript: function (addExceptions) { + _handleNoScript: function(addExceptions) { // if NoScript isn't installed, or is disabled, bail out. let ns = Cc["@maone.net/noscript-service;1"]; if (ns == null) @@ -739,7 +739,7 @@ var gSyncSetup = { } }, - onExistingServerCommand: function () { + onExistingServerCommand: function() { let control = document.getElementById("existingServer"); if (control.selectedIndex == 0) { control.removeAttribute("editable"); @@ -755,16 +755,16 @@ var gSyncSetup = { this.checkFields(); }, - onExistingServerInput: function () { + onExistingServerInput: function() { // Check custom server validity when the user stops typing for 1 second. if (this._existingServerTimer) window.clearTimeout(this._existingServerTimer); - this._existingServerTimer = window.setTimeout(function () { + this._existingServerTimer = window.setTimeout(function() { gSyncSetup.checkFields(); }, 1000); }, - onServerCommand: function () { + onServerCommand: function() { setVisibility(document.getElementById("TOSRow"), this._usingMainServers); let control = document.getElementById("server"); if (!this._usingMainServers) { @@ -788,16 +788,16 @@ var gSyncSetup = { this.checkFields(); }, - onServerInput: function () { + onServerInput: function() { // Check custom server validity when the user stops typing for 1 second. if (this._checkServerTimer) window.clearTimeout(this._checkServerTimer); - this._checkServerTimer = window.setTimeout(function () { + this._checkServerTimer = window.setTimeout(function() { gSyncSetup.checkServer(); }, 1000); }, - checkServer: function () { + checkServer: function() { delete this._checkServerTimer; let el = document.getElementById("server"); let valid = false; @@ -819,7 +819,7 @@ var gSyncSetup = { this.checkFields(); }, - _validateServer: function (element) { + _validateServer: function(element) { let valid = false; let val = element.value; if (!val) @@ -865,7 +865,7 @@ var gSyncSetup = { return valid; }, - _handleChoice: function () { + _handleChoice: function() { let desc = document.getElementById("mergeChoiceRadio").selectedIndex; document.getElementById("chosenActionDeck").selectedIndex = desc; switch (desc) { @@ -994,7 +994,7 @@ var gSyncSetup = { // sets class and string on a feedback element // if no property string is passed in, we clear label/style - _setFeedback: function (element, success, string) { + _setFeedback: function(element, success, string) { element.hidden = success || !string; let classname = success ? "success" : "error"; let image = element.getElementsByAttribute("class", "statusIcon")[0]; @@ -1004,7 +1004,7 @@ var gSyncSetup = { }, // shim - _setFeedbackMessage: function (element, success, string) { + _setFeedbackMessage: function(element, success, string) { let str = ""; if (string) { try { @@ -1017,7 +1017,7 @@ var gSyncSetup = { this._setFeedback(element, success, str); }, - loadCaptcha: function () { + loadCaptcha: function() { let captchaURI = Weave.Service.miscAPI + "captcha_html"; // First check for NoScript and whitelist the right sites. this._handleNoScript(true); @@ -1043,7 +1043,7 @@ var gSyncSetup = { onProgressChange: function() {}, onStatusChange: function() {}, onSecurityChange: function() {}, - onLocationChange: function () {} + onLocationChange: function() {} }; // Define lazy getters for various XUL elements. @@ -1056,12 +1056,12 @@ var gSyncSetup = { "pin2", "pin3", "pairDeviceErrorRow", - "pairDeviceThrobber"].forEach(function (id) { + "pairDeviceThrobber"].forEach(function(id) { XPCOMUtils.defineLazyGetter(gSyncSetup, id, function() { return document.getElementById(id); }); }); -XPCOMUtils.defineLazyGetter(gSyncSetup, "nextFocusEl", function () { +XPCOMUtils.defineLazyGetter(gSyncSetup, "nextFocusEl", function() { return {pin1: this.pin2, pin2: this.pin3, pin3: this.wizard.getButton("next")}; diff --git a/application/palemoon/components/sync/utils.js b/application/palemoon/components/sync/utils.js index f2735f42b1..ccdc20f08d 100644 --- a/application/palemoon/components/sync/utils.js +++ b/application/palemoon/components/sync/utils.js @@ -15,7 +15,7 @@ var gSyncUtils = { }, // opens in a new window if we're in a modal prefwindow world, in a new tab otherwise - _openLink: function (url) { + _openLink: function(url) { let thisDocEl = document.documentElement, openerDocEl = window.opener && window.opener.document.documentElement; if (thisDocEl.id == "accountSetup" && window.opener && @@ -30,13 +30,13 @@ var gSyncUtils = { openUILinkIn(url, "tab"); }, - changeName: function (input) { + changeName: function(input) { // Make sure to update to a modified name, e.g., empty-string -> default Weave.Service.clientsEngine.localName = input.value; input.value = Weave.Service.clientsEngine.localName; }, - openChange: function (type, duringSetup) { + openChange: function(type, duringSetup) { // Just re-show the dialog if it's already open let openedDialog = Services.wm.getMostRecentWindow("Sync:" + type); if (openedDialog != null) { @@ -51,34 +51,34 @@ var gSyncUtils = { type, duringSetup); }, - changePassword: function () { + changePassword: function() { if (Weave.Utils.ensureMPUnlocked()) this.openChange("ChangePassword"); }, - resetPassphrase: function (duringSetup) { + resetPassphrase: function(duringSetup) { if (Weave.Utils.ensureMPUnlocked()) this.openChange("ResetPassphrase", duringSetup); }, - updatePassphrase: function () { + updatePassphrase: function() { if (Weave.Utils.ensureMPUnlocked()) this.openChange("UpdatePassphrase"); }, - resetPassword: function () { + resetPassword: function() { this._openLink(Weave.Service.pwResetURL); }, - openToS: function () { + openToS: function() { this._openLink(Weave.Svc.Prefs.get("termsURL")); }, - openPrivacyPolicy: function () { + openPrivacyPolicy: function() { this._openLink(Weave.Svc.Prefs.get("privacyURL")); }, - openFirstSyncProgressPage: function () { + openFirstSyncProgressPage: function() { this._openLink("about:sync-progress"); }, @@ -190,7 +190,7 @@ var gSyncUtils = { * * returns [valid, errorString] */ - validatePassword: function (el1, el2) { + validatePassword: function(el1, el2) { let valid = false; let val1 = el1.value; let val2 = el2 ? el2.value : ""; diff --git a/application/palemoon/modules/BrowserNewTabPreloader.jsm b/application/palemoon/modules/BrowserNewTabPreloader.jsm index 30bc846ae3..15d7ee2865 100644 --- a/application/palemoon/modules/BrowserNewTabPreloader.jsm +++ b/application/palemoon/modules/BrowserNewTabPreloader.jsm @@ -49,18 +49,18 @@ function clearTimer(timer) { } this.BrowserNewTabPreloader = { - init: function () { + init: function() { Initializer.start(); }, - uninit: function () { + uninit: function() { Initializer.stop(); HostFrame.destroy(); Preferences.uninit(); HiddenBrowsers.uninit(); }, - newTab: function (aTab) { + newTab: function(aTab) { let win = aTab.ownerDocument.defaultView; if (win.gBrowser) { let utils = win.QueryInterface(Ci.nsIInterfaceRequestor) @@ -83,12 +83,12 @@ var Initializer = { _timer: null, _observing: false, - start: function () { + start: function() { Services.obs.addObserver(this, TOPIC_DELAYED_STARTUP, false); this._observing = true; }, - stop: function () { + stop: function() { this._timer = clearTimer(this._timer); if (this._observing) { @@ -97,7 +97,7 @@ var Initializer = { } }, - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { if (aTopic == TOPIC_DELAYED_STARTUP) { Services.obs.removeObserver(this, TOPIC_DELAYED_STARTUP); this._observing = false; @@ -108,11 +108,11 @@ var Initializer = { } }, - _startTimer: function () { + _startTimer: function() { this._timer = createTimer(this, PRELOADER_INIT_DELAY_MS); }, - _startPreloader: function () { + _startPreloader: function() { Preferences.init(); if (Preferences.enabled) { HiddenBrowsers.init(); @@ -133,19 +133,19 @@ var Preferences = { return this._enabled; }, - init: function () { + init: function() { this._branch = Services.prefs.getBranch(PREF_BRANCH); this._branch.addObserver("", this, false); }, - uninit: function () { + uninit: function() { if (this._branch) { this._branch.removeObserver("", this); this._branch = null; } }, - observe: function () { + observe: function() { let prevEnabled = this._enabled; this._enabled = null; @@ -166,13 +166,13 @@ var HiddenBrowsers = { TOPIC_XUL_WINDOW_CLOSED ], - init: function () { + init: function() { this._browsers = new Map(); this._updateBrowserSizes(); this._topics.forEach(t => Services.obs.addObserver(this, t, false)); }, - uninit: function () { + uninit: function() { if (this._browsers) { this._topics.forEach(t => Services.obs.removeObserver(this, t, false)); this._updateTimer = clearTimer(this._updateTimer); @@ -184,7 +184,7 @@ var HiddenBrowsers = { } }, - get: function (width, height) { + get: function(width, height) { // We haven't been initialized, yet. if (!this._browsers) { return null; @@ -212,7 +212,7 @@ var HiddenBrowsers = { return null; }, - observe: function (subject, topic, data) { + observe: function(subject, topic, data) { if (topic === TOPIC_TIMER_CALLBACK) { this._updateTimer = null; this._updateBrowserSizes(); @@ -222,7 +222,7 @@ var HiddenBrowsers = { } }, - _updateBrowserSizes: function () { + _updateBrowserSizes: function() { let sizes = this._collectTabBrowserSizes(); let toRemove = []; @@ -259,7 +259,7 @@ var HiddenBrowsers = { toRemove.forEach(b => b.destroy()); }, - _collectTabBrowserSizes: function () { + _collectTabBrowserSizes: function() { let sizes = new Map(); function tabBrowserBounds() { @@ -314,7 +314,7 @@ HiddenBrowser.prototype = { this._browser.currentURI.spec === NEWTAB_URL; }, - swapWithNewTab: function (aTab) { + swapWithNewTab: function(aTab) { if (!this.isPreloaded || this._timer) { return false; } @@ -349,27 +349,27 @@ HiddenBrowser.prototype = { return true; }, - observe: function () { + observe: function() { this._timer = null; // Start pre-loading the new tab page. this._browser.loadURI(NEWTAB_URL); }, - resize: function (width, height) { + resize: function(width, height) { this._width = width; this._height = height; this._applySize(); }, - _applySize: function () { + _applySize: function() { if (this._browser) { this._browser.style.width = this._width + "px"; this._browser.style.height = this._height + "px"; } }, - destroy: function () { + destroy: function() { if (this._browser) { this._browser.remove(); this._browser = null; @@ -391,7 +391,7 @@ var HostFrame = { return this.hiddenDOMDocument.readyState === "complete"; }, - get: function () { + get: function() { if (!this._deferred) { this._deferred = Promise.defer(); this._create(); @@ -400,7 +400,7 @@ var HostFrame = { return this._deferred.promise; }, - destroy: function () { + destroy: function() { if (this._frame) { if (!Cu.isDeadWrapper(this._frame)) { this._frame.removeEventListener("load", this, true); @@ -412,7 +412,7 @@ var HostFrame = { } }, - handleEvent: function () { + handleEvent: function() { let contentWindow = this._frame.contentWindow; if (contentWindow.location.href === XUL_PAGE) { this._frame.removeEventListener("load", this, true); @@ -422,7 +422,7 @@ var HostFrame = { } }, - _create: function () { + _create: function() { if (this.isReady) { let doc = this.hiddenDOMDocument; this._frame = doc.createElementNS(HTML_NS, "iframe"); diff --git a/application/palemoon/modules/NetworkPrioritizer.jsm b/application/palemoon/modules/NetworkPrioritizer.jsm index 698775ef08..859068baaa 100644 --- a/application/palemoon/modules/NetworkPrioritizer.jsm +++ b/application/palemoon/modules/NetworkPrioritizer.jsm @@ -65,13 +65,13 @@ function _handleEvent(aEvent) { // Methods that impact a browser. Put into single object for organization. var BrowserHelper = { - onOpen: function (aBrowser) { + onOpen: function(aBrowser) { // If the tab is in the focused window, leave priority as it is if (aBrowser.ownerDocument.defaultView != _lastFocusedWindow) this.decreasePriority(aBrowser); }, - onSelect: function (aBrowser) { + onSelect: function(aBrowser) { let windowEntry = WindowHelper.getEntry(aBrowser.ownerDocument.defaultView); if (windowEntry.lastSelectedBrowser) this.decreasePriority(windowEntry.lastSelectedBrowser); @@ -80,11 +80,11 @@ var BrowserHelper = { windowEntry.lastSelectedBrowser = aBrowser; }, - increasePriority: function (aBrowser) { + increasePriority: function(aBrowser) { aBrowser.adjustPriority(PRIORITY_DELTA); }, - decreasePriority: function (aBrowser) { + decreasePriority: function(aBrowser) { aBrowser.adjustPriority(PRIORITY_DELTA * -1); } }; @@ -92,7 +92,7 @@ var BrowserHelper = { // Methods that impact a window. Put into single object for organization. var WindowHelper = { - addWindow: function (aWindow) { + addWindow: function(aWindow) { // Build internal data object _windows.push({ window: aWindow, lastSelectedBrowser: null }); @@ -115,7 +115,7 @@ var WindowHelper = { BrowserHelper.onSelect(aWindow.gBrowser.selectedBrowser); }, - removeWindow: function (aWindow) { + removeWindow: function(aWindow) { if (aWindow == _lastFocusedWindow) _lastFocusedWindow = null; @@ -131,7 +131,7 @@ var WindowHelper = { }); }, - onActivate: function (aWindow, aHasFocus) { + onActivate: function(aWindow, aHasFocus) { // If this window was the last focused window, we don't need to do anything if (aWindow == _lastFocusedWindow) return; @@ -143,7 +143,7 @@ var WindowHelper = { this.increasePriority(aWindow); }, - handleFocusedWindow: function (aWindow) { + handleFocusedWindow: function(aWindow) { // If we have a last focused window, we need to deprioritize it first if (_lastFocusedWindow) this.decreasePriority(_lastFocusedWindow); @@ -153,23 +153,23 @@ var WindowHelper = { }, // Auxiliary methods - increasePriority: function (aWindow) { + increasePriority: function(aWindow) { aWindow.gBrowser.browsers.forEach(function(aBrowser) { BrowserHelper.increasePriority(aBrowser); }); }, - decreasePriority: function (aWindow) { + decreasePriority: function(aWindow) { aWindow.gBrowser.browsers.forEach(function(aBrowser) { BrowserHelper.decreasePriority(aBrowser); }); }, - getEntry: function (aWindow) { + getEntry: function(aWindow) { return _windows[this.getEntryIndex(aWindow)]; }, - getEntryIndex: function (aWindow) { + getEntryIndex: function(aWindow) { // Assumes that every object has a unique window & it's in the array for (let i = 0; i < _windows.length; i++) if (_windows[i].window == aWindow) diff --git a/application/palemoon/modules/PopupNotifications.jsm b/application/palemoon/modules/PopupNotifications.jsm index 953df8cb2e..743ef45628 100644 --- a/application/palemoon/modules/PopupNotifications.jsm +++ b/application/palemoon/modules/PopupNotifications.jsm @@ -78,7 +78,7 @@ Notification.prototype = { /** * Removes the notification and updates the popup accordingly if needed. */ - remove: function () { + remove: function() { this.owner.remove(this); }, @@ -178,7 +178,7 @@ PopupNotifications.prototype = { * @returns the corresponding Notification object, or null if no such * notification exists. */ - getNotification: function (id, browser) { + getNotification: function(id, browser) { let n = null; let notifications = this._getNotificationsForBrowser(browser || this.tabbrowser.selectedBrowser); notifications.some(function(x) x.id == id && (n = x)); @@ -292,7 +292,7 @@ PopupNotifications.prototype = { * opens the URL in a new tab. * @returns the Notification object corresponding to the added notification. */ - show: function (browser, id, message, anchorID, + show: function(browser, id, message, anchorID, mainAction, secondaryActions, options) { function isInvalidAction(a) { return !a || !(typeof(a.callback) == "function") || !a.label || !a.accessKey; @@ -362,13 +362,13 @@ PopupNotifications.prototype = { * Called by the consumer to indicate that a browser's location has changed, * so that we can update the active notifications accordingly. */ - locationChange: function (aBrowser) { + locationChange: function(aBrowser) { if (!aBrowser) throw "PopupNotifications_locationChange: invalid browser"; let notifications = this._getNotificationsForBrowser(aBrowser); - notifications = notifications.filter(function (notification) { + notifications = notifications.filter(function(notification) { // The persistWhileVisible option allows an open notification to persist // across location changes if (notification.options.persistWhileVisible && @@ -415,7 +415,7 @@ PopupNotifications.prototype = { * @param notification * The Notification object to remove. */ - remove: function (notification) { + remove: function(notification) { this._remove(notification); if (notification.browser.docShell.isActive) { @@ -424,7 +424,7 @@ PopupNotifications.prototype = { } }, - handleEvent: function (aEvent) { + handleEvent: function(aEvent) { switch (aEvent.type) { case "popuphidden": this._onPopupHidden(aEvent); @@ -434,7 +434,7 @@ PopupNotifications.prototype = { let self = this; // setTimeout(..., 0) needed, otherwise openPopup from "activate" event // handler results in the popup being hidden again for some reason... - this.window.setTimeout(function () { + this.window.setTimeout(function() { self._update(); }, 0); break; @@ -459,7 +459,7 @@ PopupNotifications.prototype = { return this.tabbrowser.selectedBrowser ? this._getNotificationsForBrowser(this.tabbrowser.selectedBrowser) : []; }, - _remove: function (notification) { + _remove: function(notification) { // This notification may already be removed, in which case let's just fail // silently. let notifications = this._getNotificationsForBrowser(notification.browser); @@ -481,7 +481,7 @@ PopupNotifications.prototype = { /** * Dismisses the notification without removing it. */ - _dismiss: function () { + _dismiss: function() { let browser = this.panel.firstChild && this.panel.firstChild.notification.browser; if (typeof this.panel.hidePopup === "function") { @@ -494,7 +494,7 @@ PopupNotifications.prototype = { /** * Hides the notification popup. */ - _hidePanel: function () { + _hidePanel: function() { this._ignoreDismissal = true; if (typeof this.panel.hidePopup === "function") { this.panel.hidePopup(); @@ -505,7 +505,7 @@ PopupNotifications.prototype = { /** * Removes all notifications from the notification popup. */ - _clearPanel: function () { + _clearPanel: function() { let popupnotification; while ((popupnotification = this.panel.lastChild)) { this.panel.removeChild(popupnotification); @@ -536,12 +536,12 @@ PopupNotifications.prototype = { } }, - _refreshPanel: function (notificationsToShow) { + _refreshPanel: function(notificationsToShow) { this._clearPanel(); const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"; - notificationsToShow.forEach(function (n) { + notificationsToShow.forEach(function(n) { let doc = this.window.document; // Append "-notification" to the ID to try to avoid ID conflicts with other stuff @@ -584,7 +584,7 @@ PopupNotifications.prototype = { popupnotification.notification = n; if (n.secondaryActions) { - n.secondaryActions.forEach(function (a) { + n.secondaryActions.forEach(function(a) { let item = doc.createElementNS(XUL_NS, "menuitem"); item.setAttribute("label", a.label); item.setAttribute("accesskey", a.accessKey); @@ -653,10 +653,10 @@ PopupNotifications.prototype = { } }, - _showPanel: function (notificationsToShow, anchorElement) { + _showPanel: function(notificationsToShow, anchorElement) { this.panel.hidden = false; - notificationsToShow.forEach(function (n) { + notificationsToShow.forEach(function(n) { this._fireCallback(n, NOTIFICATION_EVENT_SHOWING); }, this); this._refreshPanel(notificationsToShow); @@ -686,12 +686,12 @@ PopupNotifications.prototype = { // On OS X and Linux we need a different panel arrow color for // click-to-play plugins, so copy the popupid and use css. this.panel.setAttribute("popupid", this.panel.firstChild.getAttribute("popupid")); - notificationsToShow.forEach(function (n) { + notificationsToShow.forEach(function(n) { // Remember the time the notification was shown for the security delay. n.timeShown = this.window.performance.now(); }, this); this.panel.openPopup(anchorElement, "bottomcenter topleft"); - notificationsToShow.forEach(function (n) { + notificationsToShow.forEach(function(n) { this._fireCallback(n, NOTIFICATION_EVENT_SHOWN); }, this); }, @@ -709,7 +709,7 @@ PopupNotifications.prototype = { * if there are no notifications to show. Otherwise, * currently displayed notifications will be left alone. */ - _update: function (notifications, anchor, dismissShowing = false) { + _update: function(notifications, anchor, dismissShowing = false) { let useIconBox = this.iconBox && (!anchor || anchor.parentNode == this.iconBox); if (useIconBox) { // hide icons of the previous tab. @@ -747,7 +747,7 @@ PopupNotifications.prototype = { } // Also filter out notifications that have been dismissed. - notificationsToShow = notifications.filter(function (n) { + notificationsToShow = notifications.filter(function(n) { return !n.dismissed && n.anchorElement == anchorElement && !n.options.neverShow; }); @@ -777,7 +777,7 @@ PopupNotifications.prototype = { } }, - _showIcons: function (aCurrentNotifications) { + _showIcons: function(aCurrentNotifications) { for (let notification of aCurrentNotifications) { let anchorElm = notification.anchorElement; if (anchorElm) { @@ -786,7 +786,7 @@ PopupNotifications.prototype = { } }, - _hideIcons: function () { + _hideIcons: function() { let icons = this.iconBox.querySelectorAll(ICON_SELECTOR); for (let icon of icons) { icon.removeAttribute(ICON_ATTRIBUTE_SHOWING); @@ -796,7 +796,7 @@ PopupNotifications.prototype = { /** * Gets and sets notifications for the browser. */ - _getNotificationsForBrowser: function (browser) { + _getNotificationsForBrowser: function(browser) { let notifications = popupNotificationsMap.get(browser); if (!notifications) { // Initialize the WeakMap for the browser so callers can reference/manipulate the array. @@ -805,12 +805,12 @@ PopupNotifications.prototype = { } return notifications; }, - _setNotificationsForBrowser: function (browser, notifications) { + _setNotificationsForBrowser: function(browser, notifications) { popupNotificationsMap.set(browser, notifications); return notifications; }, - _onIconBoxCommand: function (event) { + _onIconBoxCommand: function(event) { // Left click, space or enter only let type = event.type; if (type == "click" && event.button != 0) @@ -832,10 +832,10 @@ PopupNotifications.prototype = { this._reshowNotifications(anchor); }, - _reshowNotifications: function (anchor, browser) { + _reshowNotifications: function(anchor, browser) { // Mark notifications anchored to this anchor as un-dismissed let notifications = this._getNotificationsForBrowser(browser || this.tabbrowser.selectedBrowser); - notifications.forEach(function (n) { + notifications.forEach(function(n) { if (n.anchorElement == anchor) n.dismissed = false; }); @@ -844,7 +844,7 @@ PopupNotifications.prototype = { this._update(notifications, anchor); }, - _swapBrowserNotifications: function (ourBrowser, otherBrowser) { + _swapBrowserNotifications: function(ourBrowser, otherBrowser) { // When swaping browser docshells (e.g. dragging tab to new window) we need // to update our notification map. @@ -890,7 +890,7 @@ PopupNotifications.prototype = { other._update(ourNotifications, ourNotifications[0].anchorElement); }, - _fireCallback: function (n, event, ...args) { + _fireCallback: function(n, event, ...args) { try { if (n.options.eventCallback) return n.options.eventCallback.call(n, event, ...args); @@ -900,7 +900,7 @@ PopupNotifications.prototype = { return undefined; }, - _onPopupHidden: function (event) { + _onPopupHidden: function(event) { if (event.target != this.panel || this._ignoreDismissal) return; @@ -911,7 +911,7 @@ PopupNotifications.prototype = { let notifications = this._getNotificationsForBrowser(browser); // Mark notifications as dismissed and call dismissal callbacks - Array.forEach(this.panel.childNodes, function (nEl) { + Array.forEach(this.panel.childNodes, function(nEl) { let notificationObj = nEl.notification; // Never call a dismissal handler on a notification that's been removed. if (notifications.indexOf(notificationObj) == -1) @@ -932,7 +932,7 @@ PopupNotifications.prototype = { this._update(); }, - _onButtonCommand: function (event) { + _onButtonCommand: function(event) { let notificationEl = getNotificationFromElement(event.originalTarget); if (!notificationEl) @@ -968,7 +968,7 @@ PopupNotifications.prototype = { this._update(); }, - _onMenuCommand: function (event) { + _onMenuCommand: function(event) { let target = event.originalTarget; if (!target.action || !target.notification) throw "menucommand target has no associated action/notification"; @@ -988,7 +988,7 @@ PopupNotifications.prototype = { this._update(); }, - _notify: function (topic) { + _notify: function(topic) { Services.obs.notifyObservers(null, "PopupNotifications-" + topic, ""); }, }; diff --git a/application/palemoon/modules/RecentWindow.jsm b/application/palemoon/modules/RecentWindow.jsm index 242e9f9246..bfcce17e0d 100644 --- a/application/palemoon/modules/RecentWindow.jsm +++ b/application/palemoon/modules/RecentWindow.jsm @@ -25,7 +25,7 @@ this.RecentWindow = { * Omit the property to search in both groups. * * allowPopups: true if popup windows are permissable. */ - getMostRecentBrowserWindow: function (aOptions) { + getMostRecentBrowserWindow: function(aOptions) { let checkPrivacy = typeof aOptions == "object" && "private" in aOptions; diff --git a/application/palemoon/modules/WindowsJumpLists.jsm b/application/palemoon/modules/WindowsJumpLists.jsm index 6827e269a9..39f5c33f0a 100644 --- a/application/palemoon/modules/WindowsJumpLists.jsm +++ b/application/palemoon/modules/WindowsJumpLists.jsm @@ -148,7 +148,7 @@ this.WinTaskbarJumpList = * Startup, shutdown, and update */ - startup: function () { + startup: function() { // exit if this isn't win7 or higher. if (!this._initTaskbar()) return; @@ -175,7 +175,7 @@ this.WinTaskbarJumpList = this._updateTimer(); }, - update: function () { + update: function() { // are we disabled via prefs? don't do anything! if (!this._enabled) return; @@ -184,7 +184,7 @@ this.WinTaskbarJumpList = this._buildList(); }, - _shutdown: function () { + _shutdown: function() { this._shuttingDown = true; // Correctly handle a clear history on shutdown. If there are no @@ -197,7 +197,7 @@ this.WinTaskbarJumpList = this._free(); }, - _shortcutMaintenance: function () { + _shortcutMaintenance: function() { _winShellService.shortcutMaintenance(); }, @@ -212,11 +212,11 @@ this.WinTaskbarJumpList = */ _pendingStatements: {}, - _hasPendingStatements: function () { + _hasPendingStatements: function() { return Object.keys(this._pendingStatements).length > 0; }, - _buildList: function () { + _buildList: function() { if (this._hasPendingStatements()) { // We were requested to update the list while another update was in // progress, this could happen at shutdown, idle or privatebrowsing. @@ -255,7 +255,7 @@ this.WinTaskbarJumpList = * Taskbar api wrappers */ - _startBuild: function () { + _startBuild: function() { var removedItems = Cc["@mozilla.org/array;1"]. createInstance(Ci.nsIMutableArray); this._builder.abortListBuild(); @@ -267,16 +267,16 @@ this.WinTaskbarJumpList = return false; }, - _commitBuild: function () { + _commitBuild: function() { if (!this._hasPendingStatements() && !this._builder.commitListBuild()) { this._builder.abortListBuild(); } }, - _buildTasks: function () { + _buildTasks: function() { var items = Cc["@mozilla.org/array;1"]. createInstance(Ci.nsIMutableArray); - this._tasks.forEach(function (task) { + this._tasks.forEach(function(task) { if ((this._shuttingDown && !task.close) || (!this._shuttingDown && !task.open)) return; var item = this._getHandlerAppItem(task.title, task.description, @@ -288,12 +288,12 @@ this.WinTaskbarJumpList = this._builder.addListToBuild(this._builder.JUMPLIST_CATEGORY_TASKS, items); }, - _buildCustom: function (title, items) { + _buildCustom: function(title, items) { if (items.length > 0) this._builder.addListToBuild(this._builder.JUMPLIST_CATEGORY_CUSTOMLIST, items, title); }, - _buildFrequent: function () { + _buildFrequent: function() { // If history is empty, just bail out. if (!PlacesUtils.history.hasHistoryEntries) { return; @@ -313,7 +313,7 @@ this.WinTaskbarJumpList = this._pendingStatements[LIST_TYPE.FREQUENT] = this._getHistoryResults( Ci.nsINavHistoryQueryOptions.SORT_BY_VISITCOUNT_DESCENDING, this._maxItemCount, - function (aResult) { + function(aResult) { if (!aResult) { delete this._pendingStatements[LIST_TYPE.FREQUENT]; // The are no more results, build the list. @@ -333,7 +333,7 @@ this.WinTaskbarJumpList = ); }, - _buildRecent: function () { + _buildRecent: function() { // If history is empty, just bail out. if (!PlacesUtils.history.hasHistoryEntries) { return; @@ -348,7 +348,7 @@ this.WinTaskbarJumpList = this._pendingStatements[LIST_TYPE.RECENT] = this._getHistoryResults( Ci.nsINavHistoryQueryOptions.SORT_BY_DATE_DESCENDING, this._maxItemCount * 2, - function (aResult) { + function(aResult) { if (!aResult) { // The are no more results, build the list. this._buildCustom(_getString("taskbar.recent.label"), items); @@ -378,7 +378,7 @@ this.WinTaskbarJumpList = ); }, - _deleteActiveJumpList: function () { + _deleteActiveJumpList: function() { this._builder.deleteActiveList(); }, @@ -386,7 +386,7 @@ this.WinTaskbarJumpList = * Jump list item creation helpers */ - _getHandlerAppItem: function (name, description, + _getHandlerAppItem: function(name, description, args, iconIndex, faviconPageUri) { var file = Services.dirsvc.get("XREExeF", Ci.nsILocalFile); @@ -408,7 +408,7 @@ this.WinTaskbarJumpList = return item; }, - _getSeparatorItem: function () { + _getSeparatorItem: function() { var item = Cc["@mozilla.org/windows-jumplistseparator;1"]. createInstance(Ci.nsIJumpListSeparator); return item; @@ -419,7 +419,7 @@ this.WinTaskbarJumpList = */ _getHistoryResults: - function (aSortingMode, aLimit, aCallback, aScope) { + function(aSortingMode, aLimit, aCallback, aScope) { var options = PlacesUtils.history.getNewQueryOptions(); options.maxResults = aLimit; options.sortingMode = aSortingMode; @@ -428,7 +428,7 @@ this.WinTaskbarJumpList = // Return the pending statement to the caller, to allow cancelation. return PlacesUtils.history.QueryInterface(Ci.nsPIPlacesDatabase) .asyncExecuteLegacyQueries([query], 1, options, { - handleResult: function (aResultSet) { + handleResult: function(aResultSet) { for (let row; (row = aResultSet.getNextRow());) { try { aCallback.call(aScope, @@ -438,17 +438,17 @@ this.WinTaskbarJumpList = } catch (e) {} } }, - handleError: function (aError) { + handleError: function(aError) { Components.utils.reportError( "Async execution error (" + aError.result + "): " + aError.message); }, - handleCompletion: function (aReason) { + handleCompletion: function(aReason) { aCallback.call(WinTaskbarJumpList, null); }, }); }, - _clearHistory: function (items) { + _clearHistory: function(items) { if (!items) return; var URIsToRemove = []; @@ -471,7 +471,7 @@ this.WinTaskbarJumpList = * Prefs utilities */ - _refreshPrefs: function () { + _refreshPrefs: function() { this._enabled = _prefs.getBoolPref(PREF_TASKBAR_ENABLED); this._showFrequent = _prefs.getBoolPref(PREF_TASKBAR_FREQUENT); this._showRecent = _prefs.getBoolPref(PREF_TASKBAR_RECENT); @@ -483,7 +483,7 @@ this.WinTaskbarJumpList = * Init and shutdown utilities */ - _initTaskbar: function () { + _initTaskbar: function() { this._builder = _taskbarService.createJumpListBuilder(); if (!this._builder || !this._builder.available) return false; @@ -491,7 +491,7 @@ this.WinTaskbarJumpList = return true; }, - _initObs: function () { + _initObs: function() { // If the browser is closed while in private browsing mode, the "exit" // notification is fired on quit-application-granted. // History cleanup can happen at profile-change-teardown. @@ -500,13 +500,13 @@ this.WinTaskbarJumpList = _prefs.addObserver("", this, false); }, - _freeObs: function () { + _freeObs: function() { Services.obs.removeObserver(this, "profile-before-change"); Services.obs.removeObserver(this, "browser:purge-session-history"); _prefs.removeObserver("", this); }, - _updateTimer: function () { + _updateTimer: function() { if (this._enabled && !this._shuttingDown && !this._timer) { this._timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer); this._timer.initWithCallback(this, @@ -520,7 +520,7 @@ this.WinTaskbarJumpList = }, _hasIdleObserver: false, - _updateIdleObserver: function () { + _updateIdleObserver: function() { if (this._enabled && !this._shuttingDown && !this._hasIdleObserver) { _idle.addIdleObserver(this, IDLE_TIMEOUT_SECONDS); this._hasIdleObserver = true; @@ -531,7 +531,7 @@ this.WinTaskbarJumpList = } }, - _free: function () { + _free: function() { this._freeObs(); this._updateTimer(); this._updateIdleObserver(); @@ -542,13 +542,13 @@ this.WinTaskbarJumpList = * Notification handlers */ - notify: function (aTimer) { + notify: function(aTimer) { // Add idle observer on the first notification so it doesn't hit startup. this._updateIdleObserver(); this.update(); }, - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "nsPref:changed": if (this._enabled == true && !_prefs.getBoolPref(PREF_TASKBAR_ENABLED)) diff --git a/application/palemoon/modules/openLocationLastURL.jsm b/application/palemoon/modules/openLocationLastURL.jsm index ad2781c462..f63b99c037 100644 --- a/application/palemoon/modules/openLocationLastURL.jsm +++ b/application/palemoon/modules/openLocationLastURL.jsm @@ -15,14 +15,14 @@ var prefSvc = Components.classes["@mozilla.org/preferences-service;1"] var gOpenLocationLastURLData = ""; var observer = { - QueryInterface: function (aIID) { + QueryInterface: function(aIID) { if (aIID.equals(Components.interfaces.nsIObserver) || aIID.equals(Components.interfaces.nsISupports) || aIID.equals(Components.interfaces.nsISupportsWeakReference)) return this; throw Components.results.NS_NOINTERFACE; }, - observe: function (aSubject, aTopic, aData) { + observe: function(aSubject, aTopic, aData) { switch (aTopic) { case "last-pb-context-exited": gOpenLocationLastURLData = ""; @@ -46,7 +46,7 @@ this.OpenLocationLastURL = function OpenLocationLastURL(aWindow) { } OpenLocationLastURL.prototype = { - isPrivate: function () { + isPrivate: function() { // Assume not in private browsing mode, unless the browser window is // in private mode. if (!this.window) From f5acafc727075333c179fe2f56c6acaa653765a8 Mon Sep 17 00:00:00 2001 From: athenian200 Date: Thu, 13 Feb 2020 10:15:41 -0600 Subject: [PATCH 19/20] [Pale-Moon] Issue MoonchildProductions/UXP#516 - Fix obsolete self-reference in palemoon/components/places/PlacesUIUtils.jsm. --- application/palemoon/components/places/PlacesUIUtils.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/palemoon/components/places/PlacesUIUtils.jsm b/application/palemoon/components/places/PlacesUIUtils.jsm index b32bb364ff..f15886c639 100644 --- a/application/palemoon/components/places/PlacesUIUtils.jsm +++ b/application/palemoon/components/places/PlacesUIUtils.jsm @@ -295,7 +295,7 @@ this.PlacesUIUtils = { { // Since this check may be done on each dragover event, it's worth maintaining // a cache. - let self = PUIU__isLivemark; + let self = this._isLivemark; if (!("ids" in self)) { const LIVEMARK_ANNO = PlacesUtils.LMANNO_FEEDURI; From bcbf8e89839b4c207ded799fc0f7bd8417b4c39a Mon Sep 17 00:00:00 2001 From: Pale Moon Date: Fri, 14 Feb 2020 19:31:04 +0100 Subject: [PATCH 20/20] [Pale-Moon] Make getCellProperties a bit more robust. --- application/palemoon/modules/AutoCompletePopup.jsm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/application/palemoon/modules/AutoCompletePopup.jsm b/application/palemoon/modules/AutoCompletePopup.jsm index c3698f9051..2fe5e70bb5 100644 --- a/application/palemoon/modules/AutoCompletePopup.jsm +++ b/application/palemoon/modules/AutoCompletePopup.jsm @@ -42,7 +42,13 @@ var AutoCompleteTreeView = { getParentIndex: function(idx) { return -1; }, hasNextSibling: function(idx, after) { return idx < this.results.length - 1 }, toggleOpenState: function(idx) { }, - getCellProperties: function(idx, column) { return this.results[idx].style || ""; }, + getCellProperties: function(idx, column) { + if (this.results && this.results[idx]) { + return this.results[idx].style || ""; + } else { + return ""; + } + }, getRowProperties: function(idx) { return ""; }, getImageSrc: function(idx, column) { return null; }, getProgressMode : function(idx, column) { },