[Pkg-mozext-commits] [requestpolicy] 01/09: [ref] all files: remove trailing whitespace

David Prévot taffit at moszumanska.debian.org
Thu Jan 28 03:20:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to annotated tag v0.5.30
in repository requestpolicy.

commit 579ae1fb394c04ac7d01d84964af1bcf178aeca0
Author: Martin Kimmerle <dev at 256k.de>
Date:   Wed Sep 2 17:27:04 2015 +0200

    [ref] all files: remove trailing whitespace
---
 src/components/requestpolicyService.js | 24 +++++++-------
 src/content/initialSetup.js            | 10 +++---
 src/content/menu.js                    | 10 +++---
 src/content/overlay.js                 | 60 +++++++++++++++++-----------------
 src/content/prefWindow.js              | 14 ++++----
 src/content/requestLog.js              | 10 +++---
 src/content/requestLogTreeView.js      | 10 +++---
 src/modules/DomainUtil.jsm             | 34 +++++++++----------
 src/modules/FileUtil.jsm               | 14 ++++----
 src/modules/Logger.jsm                 | 10 +++---
 src/modules/Prompter.jsm               | 10 +++---
 src/modules/RequestUtil.jsm            | 12 +++----
 tests/js_1.html                        |  2 +-
 13 files changed, 110 insertions(+), 110 deletions(-)

diff --git a/src/components/requestpolicyService.js b/src/components/requestpolicyService.js
index 21410b9..cb8c823 100644
--- a/src/components/requestpolicyService.js
+++ b/src/components/requestpolicyService.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008-2009 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -121,7 +121,7 @@ RequestPolicyService.prototype = {
   /**
    * Number of elapsed milliseconds from the time of the last shouldLoad() call
    * at which the cached results of the last shouldLoad() call are discarded.
-   * 
+   *
    * @type Number
    */
   _lastShouldLoadCheckTimeout : 200,
@@ -645,7 +645,7 @@ RequestPolicyService.prototype = {
 
   /**
    * Take necessary actions when preferences are updated.
-   * 
+   *
    * @paramString{} prefName NAme of the preference that was updated.
    */
   _updatePref : function(prefName) {
@@ -1494,7 +1494,7 @@ RequestPolicyService.prototype = {
   /**
    * Determines whether the user has granted any temporary permissions. This
    * does not include temporarily disabling all blocking.
-   * 
+   *
    * @return {Boolean} true if any temporary permissions have been granted,
    *         false otherwise.
    */
@@ -1601,7 +1601,7 @@ RequestPolicyService.prototype = {
   /**
    * Add an observer to be notified of all blocked and allowed requests. TODO:
    * This should be made to accept instances of a defined interface.
-   * 
+   *
    * @param {}
    *          observer
    */
@@ -1617,7 +1617,7 @@ RequestPolicyService.prototype = {
 
   /**
    * Remove an observer added through addRequestObserver().
-   * 
+   *
    * @param {}
    *          observer
    */
@@ -1952,7 +1952,7 @@ RequestPolicyService.prototype = {
 
   /**
    * Determines if a request is only related to internal resources.
-   * 
+   *
    * @param {}
    *          aContentLocation
    * @param {}
@@ -2035,7 +2035,7 @@ RequestPolicyService.prototype = {
    * it is, the cached result in _lastShouldLoadCheck.result can be used. Not
    * sure why, it seems that there are duplicates so using this simple cache of
    * the last call to shouldLoad() keeps duplicates out of log data.
-   * 
+   *
    * @param {}
    *          aContentLocation
    * @param {}
diff --git a/src/content/initialSetup.js b/src/content/initialSetup.js
index fa9e04a..b12a9e9 100644
--- a/src/content/initialSetup.js
+++ b/src/content/initialSetup.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/content/menu.js b/src/content/menu.js
index f68ad88..71b58d4 100644
--- a/src/content/menu.js
+++ b/src/content/menu.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/content/overlay.js b/src/content/overlay.js
index 48e81e8..bef0e41 100644
--- a/src/content/overlay.js
+++ b/src/content/overlay.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008-2009 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -312,7 +312,7 @@ requestpolicy.overlay = {
   /**
    * Perform the actions required once the window has loaded. This just sets a
    * listener for when the content of the window has changed (a page is loaded).
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -419,7 +419,7 @@ requestpolicy.overlay = {
   /**
    * Shows a notification that a redirect was requested by a page (meta refresh
    * or with headers).
-   * 
+   *
    * @param {document}
    *          targetDocument
    * @param {String}
@@ -545,7 +545,7 @@ requestpolicy.overlay = {
 
   /**
    * Determines if documentToCheck is the main document loaded in any tab.
-   * 
+   *
    * @param {document}
    *          documentToCheck
    * @return {Boolean}
@@ -563,7 +563,7 @@ requestpolicy.overlay = {
   /**
    * Determines if documentToCheck is the main document loaded in the currently
    * active tab.
-   * 
+   *
    * @param {document}
    *          documentToCheck
    * @return {Boolean}
@@ -584,7 +584,7 @@ requestpolicy.overlay = {
 
   /**
    * Things to do when a page has loaded (after images, etc., have been loaded).
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -638,7 +638,7 @@ requestpolicy.overlay = {
 
   /**
    * Things to do when a page or a frame within the page has loaded.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -825,7 +825,7 @@ requestpolicy.overlay = {
    * This function is called when any allowed requests happen. This must be as
    * fast as possible because request processing blocks until this function
    * returns.
-   * 
+   *
    * @param {}
    *          originUri
    * @param {}
@@ -841,7 +841,7 @@ requestpolicy.overlay = {
    * This function is called when any blocked requests happen. This must be as
    * fast as possible because request processing blocks until this function
    * returns.
-   * 
+   *
    * @param {}
    *          originUri
    * @param {}
@@ -937,7 +937,7 @@ requestpolicy.overlay = {
   /**
    * Perform the actions required once the DOM is loaded. This may be being
    * called for more than just the page content DOM. It seems to work for now.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1119,7 +1119,7 @@ requestpolicy.overlay = {
 
   /**
    * This is called by the modified addTab().
-   * 
+   *
    * @param {String}
    *          url
    * @param {nsIURI/hash}
@@ -1150,7 +1150,7 @@ requestpolicy.overlay = {
    * was to also add the 'if(aContext.nodeName == "xul:browser" &&
    * aContext.currentURI && aContext.currentURI.spec == "about:blank")' to
    * shouldLoad().
-   * 
+   *
    * @param {Window}
    *          window
    */
@@ -1272,7 +1272,7 @@ requestpolicy.overlay = {
 
   /**
    * Called before the popup menu is shown.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1285,7 +1285,7 @@ requestpolicy.overlay = {
 
   /**
    * Called after the popup menu is hidden.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1301,7 +1301,7 @@ requestpolicy.overlay = {
   /**
    * Determines the top-level document's uri identifier based on the current
    * identifier level setting.
-   * 
+   *
    * @return {String} The current document's identifier.
    */
   getTopLevelDocumentUriIdentifier : function() {
@@ -1341,7 +1341,7 @@ requestpolicy.overlay = {
 
   /**
    * Toggles disabling of all blocking for the current session.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1367,7 +1367,7 @@ requestpolicy.overlay = {
   /**
    * Allows the current document's origin to request from any destination for
    * the duration of the browser session.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1382,7 +1382,7 @@ requestpolicy.overlay = {
   /**
    * Allows a destination to be requested from any origin for the duration of
    * the browser session.
-   * 
+   *
    * @param {String}
    *          destHost
    */
@@ -1394,7 +1394,7 @@ requestpolicy.overlay = {
   /**
    * Allows a destination to be requested from a single origin for the duration
    * of the browser session.
-   * 
+   *
    * @param {String}
    *          originHost
    * @param {String}
@@ -1416,7 +1416,7 @@ requestpolicy.overlay = {
   /**
    * Allows the current document's origin to request from any destination,
    * including in future browser sessions.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1428,7 +1428,7 @@ requestpolicy.overlay = {
 
   /**
    * Allows requests to a destination, including in future browser sessions.
-   * 
+   *
    * @param {String}
    *          destHost
    */
@@ -1440,7 +1440,7 @@ requestpolicy.overlay = {
   /**
    * Allows requests to a destination from a single origin, including in future
    * browser sessions.
-   * 
+   *
    * @param {String}
    *          originHost
    * @param {String}
@@ -1464,7 +1464,7 @@ requestpolicy.overlay = {
    * Forbids the current document's origin from requesting from any destination.
    * This revoke's temporary or permanent request permissions the origin had
    * been given.
-   * 
+   *
    * @param {Event}
    *          event
    */
@@ -1477,7 +1477,7 @@ requestpolicy.overlay = {
   /**
    * Forbids a destination from being requested by any origin. This revoke's
    * temporary or permanent request permissions the destination had been given.
-   * 
+   *
    * @param {String}
    *          destHost
    */
@@ -1490,7 +1490,7 @@ requestpolicy.overlay = {
    * Forbids a destination from being requested by a single origin. This
    * revoke's temporary or permanent request permissions the destination had
    * been given.
-   * 
+   *
    * @param {String}
    *          originHost
    * @param {String}
@@ -1503,7 +1503,7 @@ requestpolicy.overlay = {
 
   /**
    * Revokes all temporary permissions granted during the current session.
-   * 
+   *
    * @param {Event}
    *          event
    */
diff --git a/src/content/prefWindow.js b/src/content/prefWindow.js
index 471af6f..49e8939 100644
--- a/src/content/prefWindow.js
+++ b/src/content/prefWindow.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -283,7 +283,7 @@ requestpolicy.prefWindow = {
 
   /**
    * Create a cell for the "temporary" indicator.
-   * 
+   *
    * @param {Boolean}
    *          isTemporary
    * @return {listcell}
@@ -335,7 +335,7 @@ requestpolicy.prefWindow = {
     //       later if we decide we only want to store ACE format, I just don't
     //       see the complexity of dealing with it now to be worth it,
     //       especially as only time will tell if it really is a nuisance.
-    
+
     button.disabled = true;
     // Remove pipes and spaces which would conflict with the separators we use
     // when storing these in preferences.
diff --git a/src/content/requestLog.js b/src/content/requestLog.js
index 1b51faa..52a0bb9 100644
--- a/src/content/requestLog.js
+++ b/src/content/requestLog.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/content/requestLogTreeView.js b/src/content/requestLogTreeView.js
index 29f285b..5163cd3 100644
--- a/src/content/requestLogTreeView.js
+++ b/src/content/requestLogTreeView.js
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/modules/DomainUtil.jsm b/src/modules/DomainUtil.jsm
index 67ff1b4..a0da90e 100644
--- a/src/modules/DomainUtil.jsm
+++ b/src/modules/DomainUtil.jsm
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -109,7 +109,7 @@ DomainUtil.identifierIsInUri = function(identifier, uri, level) {
 
 /**
  * Returns the hostname from a uri string.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {String} The hostname of the uri or throws an exception if it is an
@@ -123,7 +123,7 @@ DomainUtil.getHost = function(uri) {
  * Returns an nsIURI object from a uri string. Note that nsIURI objects will
  * automatically convert ACE formatting to UTF8 for IDNs in the various
  * attributes of the object that are available.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {nsIURI} The nsIURI object created from the uri, or throws an
@@ -136,7 +136,7 @@ DomainUtil.getUriObject = function(uri) {
 
 /**
  * Determines whether a uri string represents a valid uri.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {boolean} True if the uri is valid, false otherwise.
@@ -165,7 +165,7 @@ DomainUtil.isIPAddress = function(host) {
 
 /**
  * Returns the domain from a uri string.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {String} The domain of the uri.
@@ -206,7 +206,7 @@ DomainUtil.getPath = function(uri) {
  * Returns the prePath from a uri string. Note that this will return a prePath in
  * UTF8 format for all IDNs, even if the uri passed to the function is ACE
  * formatted.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {String} The prePath of the uri.
@@ -217,7 +217,7 @@ DomainUtil.getPrePath = function(uri) {
 
 /**
  * Strips any "www." from the beginning of a hostname.
- * 
+ *
  * @param {String}
  *          hostname The hostname to strip.
  * @return {String} The hostname with any leading "www." removed.
@@ -228,7 +228,7 @@ DomainUtil.stripWww = function(hostname) {
 
 /**
  * Determine if two hostnames are the same if any "www." prefix is ignored.
- * 
+ *
  * @param {String}
  *          destinationHost The destination hostname.
  * @param {String}
@@ -252,7 +252,7 @@ DomainUtil.stripFragment = function(uri) {
  * "images.example.com" is subdomain of both "www.example.com" and
  * "example.com", but "www.example.com " and "example.com" are not subdomains of
  * "images.example.com".
- * 
+ *
  * @param {String}
  *          destinationHost The destination hostname.
  * @param {String}
@@ -277,7 +277,7 @@ DomainUtil.destinationIsSubdomainOfOrigin = function(destinationHost,
 // TODO: Maybe this should have a different home.
 /**
  * Gets the relevant pieces out of a meta refresh or header refresh string.
- * 
+ *
  * @param {String}
  *          refreshString The original content of a refresh header or meta tag.
  * @return {Array} First element is the delay in seconds, second element is the
@@ -312,7 +312,7 @@ DomainUtil.parseRefresh = function(refreshString) {
  * Adds a path of "/" to the uri if it doesn't have one. That is,
  * "http://127.0.0.1" is returned as "http://127.0.0.1/". Will return the origin
  * uri if the provided one is not valid.
- * 
+ *
  * @param {String}
  *          uri
  * @return {String}
@@ -330,7 +330,7 @@ DomainUtil.ensureUriHasPath = function(uri) {
  * formatted if it's an IDN that Mozilla supports displaying in UTF8 format. See
  * http://www.mozilla.org/projects/security/tld-idn-policy-list.html for more
  * info.
- * 
+ *
  * @param {String}
  *          uri The uri.
  * @return {nsIURI} The same uri but with UTF8 formatting if the original uri
@@ -350,7 +350,7 @@ DomainUtil.formatIDNUri = function(uri) {
  * takes into account whether the destPath is a full URI, an absolute path
  * (starts with a slash), a protocol relative path (starts with two slashes),
  * or is relative to the originUri path.
- * 
+ *
  * @param {String}
  *          originUri
  * @param {String}
diff --git a/src/modules/FileUtil.jsm b/src/modules/FileUtil.jsm
index f11d892..8137a95 100644
--- a/src/modules/FileUtil.jsm
+++ b/src/modules/FileUtil.jsm
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -40,7 +40,7 @@ var FileUtil = {
 
   /**
    * Returns the lines of the file in an array.
-   * 
+   *
    * @param {nsIFile}
    *          file
    */
@@ -89,7 +89,7 @@ var FileUtil = {
   /**
    * Writes each element of an array to a line of a file (truncates the file if
    * it exists, creates it if it doesn't).
-   * 
+   *
    * @param {Array}
    *          lines
    * @param {nsIFile}
diff --git a/src/modules/Logger.jsm b/src/modules/Logger.jsm
index bcdf017..45bfb11 100644
--- a/src/modules/Logger.jsm
+++ b/src/modules/Logger.jsm
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/modules/Prompter.jsm b/src/modules/Prompter.jsm
index 1016a41..2877a11 100644
--- a/src/modules/Prompter.jsm
+++ b/src/modules/Prompter.jsm
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
diff --git a/src/modules/RequestUtil.jsm b/src/modules/RequestUtil.jsm
index 9cdd978..311981a 100644
--- a/src/modules/RequestUtil.jsm
+++ b/src/modules/RequestUtil.jsm
@@ -1,22 +1,22 @@
 /*
  * ***** BEGIN LICENSE BLOCK *****
- * 
+ *
  * RequestPolicy - A Firefox extension for control over cross-site requests.
  * Copyright (c) 2008 Justin Samuel
- * 
+ *
  * This program is free software: you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
  * Foundation, either version 3 of the License, or (at your option) any later
  * version.
- * 
+ *
  * This program is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  * details.
- * 
+ *
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
- * 
+ *
  * ***** END LICENSE BLOCK *****
  */
 
@@ -115,7 +115,7 @@ var RequestUtil = {
    * only have in the recorded requests from a source uri the destinations from
    * the most recent iframe that loaded that source uri. It may also help in
    * cases where the user has multiple tabs/windows open to the same page.
-   * 
+   *
    * @param {}
    *          document
    * @return {}
diff --git a/tests/js_1.html b/tests/js_1.html
index 94bfe76..ed3fa88 100644
--- a/tests/js_1.html
+++ b/tests/js_1.html
@@ -5,4 +5,4 @@ location = "javascript:' \
 <input name=whatever value=whatever> \
 </form> \
 </body></html>'";
-</script> 
\ No newline at end of file
+</script>
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/requestpolicy.git



More information about the Pkg-mozext-commits mailing list