aboutsummaryrefslogtreecommitdiff
path: root/chrome/content/overlay.js
diff options
context:
space:
mode:
authorEinar Egilsson2008-01-07 22:44:06 +0000
committerEinar Egilsson2008-01-07 22:44:06 +0000
commitabc92ba06bb84d544a0d1deb065eb608cac8190e (patch)
treeba33b2f82fecca18aef7b0a9dadf2cb2af3b2d51 /chrome/content/overlay.js
parent0ee5f981f3e708246674d26f8a26fc9b6d8f5fc9 (diff)
Redirector 1.5
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@102 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome/content/overlay.js')
-rw-r--r--chrome/content/overlay.js77
1 files changed, 55 insertions, 22 deletions
diff --git a/chrome/content/overlay.js b/chrome/content/overlay.js
index dd6f527..f1d2241 100644
--- a/chrome/content/overlay.js
+++ b/chrome/content/overlay.js
@@ -16,7 +16,9 @@ var RedirectorOverlay = {
RedirLib.debug("Initializing...");
$('contentAreaContextMenu')
.addEventListener("popupshowing", function(e) { RedirectorOverlay.showContextMenu(e); }, false);
-
+
+ this.ffversion = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo).version;
+
if (!RedirLib.getBoolPref('showContextMenu')) {
$('redirector-context').hidden = true;
}
@@ -44,12 +46,15 @@ var RedirectorOverlay = {
}
}
},
+
+ isVersion3 : function() {
+ return this.ffversion.toString().charAt(0) == '3';
+ },
overrideOnStateChange : function() {
var origOnStateChange = nsBrowserStatusHandler.prototype.onStateChange;
nsBrowserStatusHandler.prototype.onStateChange = function(aWebProgress, aRequest, aStateFlags, aStatus) {
-
if(aStateFlags & Ci.nsIWebProgressListener.STATE_START
&& aStateFlags| Ci.nsIWebProgressListener.STATE_IS_NETWORK
&& aStateFlags| Ci.nsIWebProgressListener.STATE_IS_REQUEST
@@ -96,32 +101,61 @@ var RedirectorOverlay = {
},
overrideOpenNewWindowWith: function() {
-
+
window.__openNewWindowWith = window.openNewWindowWith;
- window.openNewWindowWith = function (href, sourceURL, postData, allowThirdPartyFixup) {
- var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(href);
- if (redirectUrl.url) {
- __openNewWindowWith(redirectUrl.url, href, postData, allowThirdPartyFixup);
- } else {
- __openNewWindowWith(href, sourceURL, postData, allowThirdPartyFixup);
- }
- };
+
+ if (this.isVersion3()) {
+
+ window.openNewWindowWith = function (aUrl, aDocument, aPostData, aAllowThirdPartyFixup, aReferrer) {
+ var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(aUrl);
+ if (redirectUrl.url) {
+ __openNewWindowWith(redirectUrl.url, aDocument, aPostData, aAllowThirdPartyFixup, aUrl);
+ } else {
+ __openNewWindowWith(aUrl, aDocument, aPostData, aAllowThirdPartyFixup, aReferrer);
+ }
+ };
+
+ } else { //version 2.*
+
+ window.openNewWindowWith = function (href, sourceURL, postData, allowThirdPartyFixup) {
+ var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(href);
+ if (redirectUrl.url) {
+ __openNewWindowWith(redirectUrl.url, href, postData, allowThirdPartyFixup);
+ } else {
+ __openNewWindowWith(href, sourceURL, postData, allowThirdPartyFixup);
+ }
+ };
+ }
},
overrideOpenNewTabWith: function() {
window.__openNewTabWith = window.openNewTabWith;
- window.openNewTabWith = function (href, sourceURL, postData, event, allowThirdPartyFixup) {
- var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(href);
- if (redirectUrl.url) {
- __openNewTabWith(redirectUrl.url, href, postData, event, allowThirdPartyFixup);
- } else {
- __openNewTabWith(href, sourceURL, postData, event, allowThirdPartyFixup);
- }
+ if (this.isVersion3()) {
+ window.openNewTabWith = function (aUrl, aDocument, aPostData, aEvent, aAllowThirdPartyFixup, aReferrer) {
+ var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(aUrl);
+ if (redirectUrl.url) {
+ __openNewTabWith(redirectUrl.url, aDocument, aPostData, aEvent, aAllowThirdPartyFixup, aUrl);
+ } else {
+ __openNewTabWith(aUrl, aDocument, aPostData, aEvent, aAllowThirdPartyFixup, aReferrer);
+ }
+
+ };
- };
+ } else { //version 2.*
+ window.openNewTabWith = function (href, sourceURL, postData, event, allowThirdPartyFixup) {
+ var redirectUrl = Redirector.getRedirectUrlForInstantRedirect(href);
+ if (redirectUrl.url) {
+ __openNewTabWith(redirectUrl.url, href, postData, event, allowThirdPartyFixup);
+ } else {
+ __openNewTabWith(href, sourceURL, postData, event, allowThirdPartyFixup);
+ }
+
+ };
+
+ }
},
@@ -182,12 +216,11 @@ var RedirectorOverlay = {
statusBarClick : function(event) {
var LEFT = 0, RIGHT = 2;
- alert($('redirector-status-popup').style.right);
if (event.button == LEFT) {
RedirectorOverlay.toggleEnabled();
} else if (event.button == RIGHT) {
- $('redirector-status-popup').left = $('redirector-status').left;
- $('redirector-status-popup').showPopup();
+ Redirector.openSettings();
+ //$('redirector-status-popup').showPopup();
}
},