Magellan Linux

Contents of /trunk/mozilla-firefox/patches/mozilla-firefox-1.0.3-prefs.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 153 - (show annotations) (download)
Tue May 8 20:52:56 2007 UTC (17 years ago) by niro
File size: 3406 byte(s)
-import

1 --- mozilla-firefox-1.0.3.orig/browser/app/profile/firefox.js
2 +++ mozilla-firefox-1.0.3/browser/app/profile/firefox.js
3 @@ -38,6 +38,9 @@
4 // SYNTAX HINTS: dashes are delimiters. Use underscores instead.
5 // The first character after a period must be alphabetic.
6
7 +// Disable default browser checking.
8 +pref("browser.shell.checkDefaultBrowser", false);
9 +
10 // pref("startup.homepage_override_url","chrome://browser-region/locale/region.properties");
11 pref("general.startup.browser", true);
12
13 @@ -62,8 +65,8 @@
14 );
15
16 // App-specific update preferences
17 -pref("app.update.enabled", true); // Whether or not app updates are enabled
18 -pref("app.update.autoUpdateEnabled", true); // Whether or not background app updates
19 +pref("app.update.enabled", false); // Whether or not app updates are enabled
20 +pref("app.update.autoUpdateEnabled", false); // Whether or not background app updates
21 // are enabled
22 pref("app.update.url", "chrome://mozapps/locale/update/update.properties");
23 pref("app.update.updatesAvailable", false);
24 @@ -81,7 +84,7 @@
25 // .. etc ..
26 //
27 pref("extensions.update.enabled", true);
28 -pref("extensions.update.autoUpdateEnabled", true);
29 +pref("extensions.update.autoUpdateEnabled", false);
30 pref("extensions.update.url", "chrome://mozapps/locale/extensions/extensions.properties");
31 pref("extensions.update.autoUpdate", false); // Automatically download and install
32 // updates to themes and extensions.
33 @@ -237,6 +240,9 @@
34 pref("network.cookie.cookieBehavior", 0); // cookies enabled
35 pref("network.cookie.enableForCurrentSessionOnly", false);
36
37 +// Use LANG environment variable to choose locale
38 +pref("intl.locale.matchOS", true);
39 +
40 // l12n and i18n
41 pref("intl.accept_languages", "chrome://global/locale/intl.properties");
42 // collationOption is only set on linux for japanese. see bug 18338 and 62015
43 @@ -327,3 +333,17 @@
44
45 // plugin finder service
46 pref("pfs.datasource.url", "chrome://mozapps/locale/plugins/plugins.properties");
47 +
48 +// enable negotiate extension
49 +pref("network.negotiate-auth.trusted-uris", "https://");
50 +
51 +// don't raise windows by default
52 +pref("mozilla.widget.raise-on-setfocus", false);
53 +
54 +// disable insecure ciphers
55 +pref("security.enable_ssl2", false);
56 +
57 +pref("security.ssl2.rc2_40", false);
58 +pref("security.ssl2.rc4_40", false);
59 +pref("security.ssl3.rsa_rc4_40_md5", false);
60 +pref("security.ssl3.rsa_rc2_40_md5", false);
61 --- mozilla-firefox-1.0.3.orig/browser/components/prefwindow/content/pref-advanced.xul
62 +++ mozilla-firefox-1.0.3/browser/components/prefwindow/content/pref-advanced.xul
63 @@ -72,9 +72,9 @@
64 open="true" persist="open" clearhidden="true" align="left">
65 <label>&softwareupdateinfo.label;</label>
66 <vbox class="indent" align="left">
67 - <checkbox id="enableSmartUpdate"
68 + <!-- checkbox id="enableSmartUpdate"
69 label="&enableSmartUpdate.label;" accesskey="&enableSmartUpdate.accesskey;"
70 - prefstring="app.update.autoUpdateEnabled"/>
71 + prefstring="app.update.autoUpdateEnabled"/ -->
72 <checkbox id="enableExtensionUpdate"
73 label="&enableExtensionUpdate.label;" accesskey="&enableExtensionUpdate.accesskey;"
74 prefstring="extensions.update.autoUpdateEnabled"/>