commit 1262b7c5a49b5de4489badf448705925fc3e467f
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Dec 9 13:44:30 2015 +0000
fixup! Bug 17502: Add a pref hiding the "Open with" option
---
browser/app/profile/000-tor-browser.js | 4 ++++
browser/app/profile/firefox.js | 1 -
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index b94b6d1..6e75298 100644
--- a/browser/app/…
[View More]profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -172,6 +172,10 @@ pref("devtools.appmanager.enabled", false);
// restrictive DNS look-up policy. We use "127.0.0.1" instead of "localhost" as
// a workaround. See bug 16523 for more details.
pref("devtools.debugger.chrome-debugging-host", "127.0.0.1");
+// Don't show the "Open with" option on the download dialog if the preference
+// is |true|. This helps to avoid confusion e.g. in case the browser is
+// sandboxed. See bug 17502 for details.
+pref("browser.download.forbid_open_with", false);
// Security slider
pref("svg.in-content.enabled", true);
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 95bbe97..53fd8d2 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -354,7 +354,6 @@ pref("browser.download.useDownloadDir", true);
pref("browser.download.folderList", 1);
pref("browser.download.manager.addToRecentDocs", true);
pref("browser.download.manager.resumeOnWakeDelay", 10000);
-pref("browser.download.forbid_open_with", false);
// This allows disabling the animated notifications shown by
// the Downloads Indicator when a download starts or completes.
[View Less]
commit 177885fd3e8ee230f2bc03ed78dbe1a699068429
Author: anonym <anonym(a)riseup.net>
Date: Sun Nov 1 23:57:59 2015 +0100
Bug 17502: Add a pref hiding the "Open with" option
If browser.download.forbid_open_with is set to true (default: false)
the download dialog will not ever show the "Open with" option for
opening the file with an external application; only the "Save" and
"Cancel" options will be available.
This is very useful to enable when the …
[View More]browser is sandboxed (e.g. via
AppArmor) in such a way that it is forbidden to run external
applications, since users then are not presented with this choice
which will not work and only cause confusion.
---
browser/app/profile/firefox.js | 1 +
toolkit/mozapps/downloads/nsHelperAppDlg.js | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 53fd8d2..95bbe97 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -354,6 +354,7 @@ pref("browser.download.useDownloadDir", true);
pref("browser.download.folderList", 1);
pref("browser.download.manager.addToRecentDocs", true);
pref("browser.download.manager.resumeOnWakeDelay", 10000);
+pref("browser.download.forbid_open_with", false);
// This allows disabling the animated notifications shown by
// the Downloads Indicator when a download starts or completes.
diff --git a/toolkit/mozapps/downloads/nsHelperAppDlg.js b/toolkit/mozapps/downloads/nsHelperAppDlg.js
index 43653f9..abb7ca2 100644
--- a/toolkit/mozapps/downloads/nsHelperAppDlg.js
+++ b/toolkit/mozapps/downloads/nsHelperAppDlg.js
@@ -458,7 +458,8 @@ nsUnknownContentTypeDialog.prototype = {
var shouldntRememberChoice = (mimeType == "application/octet-stream" ||
mimeType == "application/x-msdownload" ||
this.mLauncher.targetFileIsExecutable);
- if (shouldntRememberChoice && !this.openWithDefaultOK()) {
+ if ((shouldntRememberChoice && !this.openWithDefaultOK()) ||
+ Services.prefs.getBoolPref("browser.download.forbid_open_with")) {
// hide featured choice
this.dialogElement("normalBox").collapsed = true;
// show basic choice
[View Less]
commit c3aafe32d28271e04b616eaf92f826fc70c4627a
Author: anonym <anonym(a)riseup.net>
Date: Sun Nov 1 23:57:59 2015 +0100
Bug 17502: Add a pref hiding the "Open with" option
If browser.download.forbid_open_with is set to true (default: false)
the download dialog will not ever show the "Open with" option for
opening the file with an external application; only the "Save" and
"Cancel" options will be available.
This is very useful to enable when the …
[View More]browser is sandboxed (e.g. via
AppArmor) in such a way that it is forbidden to run external
applications, since users then are not presented with this choice
which will not work and only cause confusion.
---
browser/app/profile/firefox.js | 1 +
toolkit/mozapps/downloads/nsHelperAppDlg.js | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index a827f52..6c30b7d 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -324,6 +324,7 @@ pref("browser.download.useDownloadDir", true);
pref("browser.download.folderList", 1);
pref("browser.download.manager.addToRecentDocs", true);
pref("browser.download.manager.resumeOnWakeDelay", 10000);
+pref("browser.download.forbid_open_with", false);
// This allows disabling the animated notifications shown by
// the Downloads Indicator when a download starts or completes.
diff --git a/toolkit/mozapps/downloads/nsHelperAppDlg.js b/toolkit/mozapps/downloads/nsHelperAppDlg.js
index 43653f9..abb7ca2 100644
--- a/toolkit/mozapps/downloads/nsHelperAppDlg.js
+++ b/toolkit/mozapps/downloads/nsHelperAppDlg.js
@@ -458,7 +458,8 @@ nsUnknownContentTypeDialog.prototype = {
var shouldntRememberChoice = (mimeType == "application/octet-stream" ||
mimeType == "application/x-msdownload" ||
this.mLauncher.targetFileIsExecutable);
- if (shouldntRememberChoice && !this.openWithDefaultOK()) {
+ if ((shouldntRememberChoice && !this.openWithDefaultOK()) ||
+ Services.prefs.getBoolPref("browser.download.forbid_open_with")) {
// hide featured choice
this.dialogElement("normalBox").collapsed = true;
// show basic choice
[View Less]
commit 721f255ca93675c6a3caf2e75678978c8a4db72c
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Dec 9 13:44:30 2015 +0000
fixup! Bug 17502: Add a pref hiding the "Open with" option
---
browser/app/profile/000-tor-browser.js | 4 ++++
browser/app/profile/firefox.js | 1 -
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 1de3ed1..dc38ee4 100644
--- a/browser/app/…
[View More]profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -177,6 +177,10 @@ pref("devtools.appmanager.enabled", false);
// restrictive DNS look-up policy. We use "127.0.0.1" instead of "localhost" as
// a workaround. See bug 16523 for more details.
pref("devtools.debugger.chrome-debugging-host", "127.0.0.1");
+// Don't show the "Open with" option on the download dialog if the preference
+// is |true|. This helps to avoid confusion e.g. in case the browser is
+// sandboxed. See bug 17502 for details.
+pref("browser.download.forbid_open_with", false);
// Security slider
pref("svg.in-content.enabled", true);
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 6c30b7d..a827f52 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -324,7 +324,6 @@ pref("browser.download.useDownloadDir", true);
pref("browser.download.folderList", 1);
pref("browser.download.manager.addToRecentDocs", true);
pref("browser.download.manager.resumeOnWakeDelay", 10000);
-pref("browser.download.forbid_open_with", false);
// This allows disabling the animated notifications shown by
// the Downloads Indicator when a download starts or completes.
[View Less]