diff --git a/.mozconfig.mk b/.mozconfig.mk index e69de29b..7f871989 100644 --- a/.mozconfig.mk +++ b/.mozconfig.mk @@ -0,0 +1,20 @@ +# gmake +# This file is automatically generated for client.mk. +# Do not edit. Edit /c/projects/moz95/mozilla/mozconfig instead. +# To create a new .mozconfig file, you can visit, +# http://webtools.mozilla.org/build/config.cgi + +# PATH=/local/bin:/c/mozilla-build//wget:/c/mozilla-build//7zip:/c/mozilla-build//blat261/full:/c/mozilla-build//python25:/c/mozilla-build//svn-win32-1.4.2/bin:/c/mozilla-build//upx203w:/c/mozilla-build//xemacs/XEmacs-21.4.19/i586-pc-win32:/c/mozilla-build//info-zip:/c/mozilla-build//nsis-2.22:/c/mozilla-build//nsis-2.33u:.:/usr/local/bin:/mingw/bin:/bin:/c/PROGRA~1/MICROS~3/Common/msdev98/BIN:/c/PROGRA~1/MICROS~3/VC98/BIN:/c/PROGRA~1/MICROS~3/Common/TOOLS/WINNT:/c/PROGRA~1/MICROS~3/Common/TOOLS:/c/WINNT/System32:/c/WINNT:/c/WINNT/System32/Wbem:/c/mozilla-build/moztools-180compat/bin +MOZ_MAKE_FLAGS=-j4 +MOZ_OBJDIR=/c/projects/moz95/obj-sm95-release +# --target=i586-pc-msvc is used by configure (not client.mk) +# --enable-application=suite is used by configure (not client.mk) +# --enable-optimize is used by configure (not client.mk) +# --disable-debug is used by configure (not client.mk) +# --disable-tests is used by configure (not client.mk) +# --without-system-jpg is used by configure (not client.mk) +# --without-system-zlib is used by configure (not client.mk) +# --enable-extensions=default,tasks is used by configure (not client.mk) +# --enable-crypto is used by configure (not client.mk) +# --enable-svg is used by configure (not client.mk) +# --enable-canvas is used by configure (not client.mk) diff --git a/netwerk/base/public/security-prefs.js b/netwerk/base/public/security-prefs.js index 0e17f7bf..67ec559a 100644 --- a/netwerk/base/public/security-prefs.js +++ b/netwerk/base/public/security-prefs.js @@ -57,11 +57,11 @@ pref("security.default_personal_cert", "Ask Every Time"); pref("security.remember_cert_checkbox_default_setting", true); pref("security.ask_for_password", 0); pref("security.password_lifetime", 30); -pref("security.warn_entering_secure", true); +pref("security.warn_entering_secure", false); pref("security.warn_entering_weak", true); -pref("security.warn_leaving_secure", true); +pref("security.warn_leaving_secure", false); pref("security.warn_viewing_mixed", true); -pref("security.warn_submit_insecure", true); +pref("security.warn_submit_insecure", false); pref("security.OCSP.enabled", 0); diff --git a/xpfe/bootstrap/browser-prefs.js b/xpfe/bootstrap/browser-prefs.js index a468f919..abedc9c1 100644 --- a/xpfe/bootstrap/browser-prefs.js +++ b/xpfe/bootstrap/browser-prefs.js @@ -149,17 +149,17 @@ pref("browser.sessionhistory.max_entries", 50); // Tabbed browser pref("browser.tabs.loadDivertedInBackground", false); pref("browser.tabs.loadInBackground", false); -pref("browser.tabs.opentabfor.middleclick", false); -pref("browser.tabs.opentabfor.urlbar", false); -pref("browser.tabs.tooltippreview.enable", true); +pref("browser.tabs.opentabfor.middleclick", true); +pref("browser.tabs.opentabfor.urlbar", true); +pref("browser.tabs.tooltippreview.enable", false); pref("browser.tabs.tooltippreview.width", 300); // external link handling in tabbed browsers. values from nsIBrowserDOMWindow. // 0=default window, 1=current window/tab, 2=new window, 3=new tab in most recent window -pref("browser.link.open_external", 2); // open externally-launched links in a new window +pref("browser.link.open_external", 3); // open externally-launched links in a new window // handle links targeting new windows -pref("browser.link.open_newwindow", 2); +pref("browser.link.open_newwindow", 3); // 0: no restrictions - divert everything // 1: don't divert window.open at all