diff options
author | marcus <marcus@FreeBSD.org> | 2004-07-27 20:51:02 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-07-27 20:51:02 +0000 |
commit | b2c4f25cf25f143732e5d464d19efc9345512ad7 (patch) | |
tree | 9d9b75caafd554542071e36def3f1d821db0afe6 /www/firefox10 | |
parent | bd011bbbab4a2e02cc132100561f39e74abee42e (diff) | |
download | FreeBSD-ports-b2c4f25cf25f143732e5d464d19efc9345512ad7.zip FreeBSD-ports-b2c4f25cf25f143732e5d464d19efc9345512ad7.tar.gz |
Fix global extension and theme installation by making sure the path to the
XPI file does no contain a leading "file://" when passed to the extension
manager.
See http://bugzilla.mozilla.org/show_bug.cgi?id=250847 for more details.
Reported by: ale
Diffstat (limited to 'www/firefox10')
-rw-r--r-- | www/firefox10/Makefile | 1 | ||||
-rw-r--r-- | www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/www/firefox10/Makefile b/www/firefox10/Makefile index faee9ff..5eeeb7b36 100644 --- a/www/firefox10/Makefile +++ b/www/firefox10/Makefile @@ -7,6 +7,7 @@ PORTNAME= firefox PORTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION} diff --git a/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in b/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in new file mode 100644 index 0000000..feffd2c --- /dev/null +++ b/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in @@ -0,0 +1,17 @@ +--- toolkit/mozapps/extensions/src/nsExtensionManager.js.in.orig Tue Jul 27 15:35:12 2004 ++++ toolkit/mozapps/extensions/src/nsExtensionManager.js.in Tue Jul 27 15:36:02 2004 +@@ -1568,9 +1568,14 @@ + + _checkForGlobalInstalls: function (aPath, aItemType) + { ++ var fPrefix = "file://"; + // First see if the path supplied is a file path + var file = Components.classes["@mozilla.org/file/local;1"] + .createInstance(Components.interfaces.nsILocalFile); ++ if (aPath.substr(0, fPrefix.length) == fPrefix) { ++ // Strip out the file:// prefix if it exists ++ aPath = aPath.substr(fPrefix.length, aPath.length); ++ } + try { + file.initWithPath(aPath); + } |