]> git.pld-linux.org Git - packages/firefox.git/blob - mozilla-firefox-prefs.patch
- better way to show "Add exception" button directly w/o clicking through stupid...
[packages/firefox.git] / mozilla-firefox-prefs.patch
1 diff -ur mozilla.orig/browser/app/profile/firefox.js mozilla/browser/app/profile/firefox.js
2 --- mozilla.orig/browser/app/profile/firefox.js 2008-06-21 12:55:30.000000000 +0200
3 +++ mozilla/browser/app/profile/firefox.js      2008-06-21 15:25:48.000000000 +0200
4 @@ -89,12 +89,12 @@
5  // App-specific update preferences
6  
7  // Whether or not app updates are enabled
8 -pref("app.update.enabled", true);
9 +pref("app.update.enabled", false);
10  
11  // This preference turns on app.update.mode and allows automatic download and
12  // install to take place. We use a separate boolean toggle for this to make
13  // the UI easier to construct.
14 -pref("app.update.auto", true);
15 +pref("app.update.auto", false);
16  
17  // Defines how the Application Update Service notifies the user about updates:
18  //
19 @@ -186,7 +186,7 @@
20  
21  // Whether or not the application should check at startup each time if it 
22  // is the default browser.
23 -pref("browser.shell.checkDefaultBrowser", true);
24 +pref("browser.shell.checkDefaultBrowser", false);
25  
26  // 0 = blank, 1 = home (browser.startup.homepage), 2 = last visited page, 3 = resume previous browser session
27  // The behavior of option 3 is detailed at: http://wiki.mozilla.org/Session_Restore
28 @@ -445,7 +445,7 @@
29  pref("alerts.totalOpenTime", 4000);
30  
31  pref("browser.xul.error_pages.enabled", true);
32 -pref("browser.xul.error_pages.expert_bad_cert", false);
33 +pref("browser.xul.error_pages.expert_bad_cert", true);
34  
35  // We want to make sure mail URLs are handled externally...
36  pref("network.protocol-handler.external.mailto", true); // for mail
37 @@ -592,10 +592,10 @@
38  
39  #ifdef MOZ_SAFE_BROWSING
40  // Safe browsing does nothing unless this pref is set
41 -pref("browser.safebrowsing.enabled", true);
42 +pref("browser.safebrowsing.enabled", false);
43  
44  // Prevent loading of pages identified as malware
45 -pref("browser.safebrowsing.malware.enabled", true);
46 +pref("browser.safebrowsing.malware.enabled", false);
47  
48  // Non-enhanced mode (local url lists) URL list to check for updates
49  pref("browser.safebrowsing.provider.0.updateURL", "http://safebrowsing.clients.google.com/safebrowsing/downloads?client={moz:client}&appver={moz:version}&pver=2.1");
50 @@ -739,7 +739,7 @@
51  // 0 - don't pre-populate anything
52  // 1 - pre-populate site URL, but don't fetch certificate
53  // 2 - pre-populate site URL and pre-fetch certificate
54 -pref("browser.ssl_override_behavior", 1);
55 +pref("browser.ssl_override_behavior", 2);
56  
57  // Controls the display of domain in the identity box for SSL connections.
58  // 0 - do not show domain
59 diff -ur mozilla.orig/browser/base/content/baseMenuOverlay.xul mozilla/browser/base/content/baseMenuOverlay.xul
60 --- mozilla.orig/browser/base/content/baseMenuOverlay.xul       2008-06-21 12:55:29.000000000 +0200
61 +++ mozilla/browser/base/content/baseMenuOverlay.xul    2008-06-21 15:08:33.000000000 +0200
62 @@ -97,12 +97,6 @@
63                    label="&helpReleaseNotes.label;"
64                    oncommand="openReleaseNotes(event)"
65                    onclick="checkForMiddleClick(this, event);"/>
66 -        <menuseparator id="updateSeparator"/>
67 -        <menuitem id="checkForUpdates"
68 -                  accesskey="&updateCmd.accesskey;"
69 -                  label="&updateCmd.label;"
70 -                  class="menuitem-iconic"
71 -                  oncommand="checkForUpdates();"/>
72          <menuseparator id="aboutSeparator"/>
73          <menuitem id="aboutName"
74                    accesskey="&aboutCmd.accesskey;"
75 diff -ur mozilla.orig/browser/components/preferences/advanced.xul mozilla/browser/components/preferences/advanced.xul
76 --- mozilla.orig/browser/components/preferences/advanced.xul    2008-06-21 12:55:30.000000000 +0200
77 +++ mozilla/browser/components/preferences/advanced.xul 2008-06-21 16:01:22.000000000 +0200
78 @@ -267,10 +267,6 @@
79          <tabpanel id="updatePanel" orient="vertical" align="start">
80            <label control="autoUpdateGroup">&autoCheck.label;</label>
81            <vbox class="indent" id="autoUpdateGroup" role="group">
82 -            <checkbox id="enableAppUpdate"
83 -                      label="&enableAppUpdate.label;"
84 -                      accesskey="&enableAppUpdate.accesskey;"
85 -                      preference="app.update.enabled"/>
86              <checkbox id="enableAddonUpdate"
87                        label="&enableAddonsUpdate.label;"
88                        accesskey="&enableAddonsUpdate.accesskey;"
89 diff -ur mozilla.orig/browser/locales/en-US/chrome/overrides/netError.dtd mozilla/browser/locales/en-US/chrome/overrides/netError.dtd
90 --- mozilla.orig/browser/locales/en-US/chrome/overrides/netError.dtd    2008-06-21 12:55:30.000000000 +0200
91 +++ mozilla/browser/locales/en-US/chrome/overrides/netError.dtd 2008-06-22 13:52:26.000000000 +0200
92 @@ -175,6 +175,6 @@
93  <!ENTITY securityOverride.warningText "
94  <p>You should not add an exception if you are using an internet connection that you do not trust completely or if you are not used to seeing a warning for this server.</p>
95  
96 -<xul:button xmlns:xul='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' id='getMeOutOfHereButton' label='&securityOverride.getMeOutOfHereButton;'/>
97  <xul:button xmlns:xul='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' id='exceptionDialogButton' label='&securityOverride.exceptionButtonLabel;'/>
98 +<xul:button xmlns:xul='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' id='getMeOutOfHereButton' label='&securityOverride.getMeOutOfHereButton;'/>
99  ">
This page took 0.033247 seconds and 3 git commands to generate.