~ubuntu-branches/ubuntu/hardy/firefox-3.0/hardy

« back to all changes in this revision

Viewing changes to debian/patches/force_safebrowsing_off.patch

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack, Alexander Sack
  • Date: 2007-10-05 02:38:08 UTC
  • Revision ID: james.westby@ubuntu.com-20071005023808-51una9yzsey8fl0r
Tags: 3.0~alpha8-0ubuntu1
RELEASE: 3.0~alpha8-0ubuntu1 to gutsy/universe.

[ Alexander Sack ]
* drop libnspr4-dev and libnss3-dev build-depends for gutsy upload.
* don't build with system-nspr/-nss for gutsy universe upload.
* add nspr_flags_by_pkg_config_hack.patch to use pkg-config to get
  nspr libs and cflags from xulrunner-1.9-dev package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
---
 
2
 browser/app/profile/firefox.js |    2 +-
 
3
 1 file changed, 1 insertion(+), 1 deletion(-)
 
4
 
 
5
Index: mozilla/browser/app/profile/firefox.js
 
6
===================================================================
 
7
--- mozilla.orig/browser/app/profile/firefox.js
 
8
+++ mozilla/browser/app/profile/firefox.js
 
9
@@ -507,17 +507,17 @@
 
10
 //
 
11
 // The default set of web-based protocol handlers shown in the application
 
12
 // selection dialog
 
13
 pref("gecko.handlerService.schemes.webcal.0.name", "WebCal Test Handler");
 
14
 pref("gecko.handlerService.schemes.webcal.0.uriTemplate", "http://handler-test.mozilla.org/webcal?url=%s");
 
15
 
 
16
 #ifdef MOZ_SAFE_BROWSING
 
17
 // Safe browsing does nothing unless both these prefs are set.
 
18
-pref("browser.safebrowsing.enabled", true);
 
19
+pref("browser.safebrowsing.enabled", false);
 
20
 pref("browser.safebrowsing.remoteLookups", false);
 
21
 
 
22
 // Prevent loading of pages identified as malware
 
23
 pref("browser.safebrowsing.malware.enabled", true);
 
24
 
 
25
 // Non-enhanced mode (local url lists) URL list to check for updates
 
26
 pref("browser.safebrowsing.provider.0.updateURL", "http://sb.google.com/safebrowsing/downloads?client={moz:client}&appver={moz:version}&pver=2.0");
 
27