diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-09-28 20:46:24 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-09-28 20:46:24 +0800 |
commit | 7a2d258ca56a94cca48bb2875d7b2a1dfb4e0e09 (patch) | |
tree | 57370507ed0407961b6dd4d23004475da0998628 /data/default-prefs-common.js | |
parent | a913abc0b33ea25f706d5ebf6e98626d31da39d5 (diff) | |
download | gsoc2013-epiphany-7a2d258ca56a94cca48bb2875d7b2a1dfb4e0e09.tar.gz gsoc2013-epiphany-7a2d258ca56a94cca48bb2875d7b2a1dfb4e0e09.tar.zst gsoc2013-epiphany-7a2d258ca56a94cca48bb2875d7b2a1dfb4e0e09.zip |
A data/default-prefs-common.js: A data/default-prefs-mozilla.js: A
2004-09-28 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* data/Makefile.am:
A data/default-prefs-common.js:
A data/default-prefs-mozilla.js:
A data/default-prefs-toolkit.js:
R data/default-prefs.js:
Split the default prefs into the common part, and mozilla/new toolkit
specific parts.
Diffstat (limited to 'data/default-prefs-common.js')
-rw-r--r-- | data/default-prefs-common.js | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/data/default-prefs-common.js b/data/default-prefs-common.js new file mode 100644 index 000000000..3586f757f --- /dev/null +++ b/data/default-prefs-common.js @@ -0,0 +1,90 @@ +// mouse wheel +pref("mousewheel.withcontrolkey.action", 1); +pref("mousewheel.withcontrolkey.numlines", 1); +pref("mousewheel.withcontrolkey.sysnumlines", false); +// fix horizontal scroll with 2nd wheel, see bug #148557 +pref("mousewheel.horizscroll.withnokey.action", 0); +pref("mousewheel.horizscroll.withnokey.sysnumlines", true); + +// don't allow opening file:/// URLs on pages from network sources (http, etc.) +pref("security.checkloaduri", true); + +// enable line wrapping in View Source +pref("view_source.wrap_long_lines", true); + +// disable sidebar What's Related, we don't use it +pref("browser.related.enabled", false); + +// Work around for mozilla focus bugs +pref("mozilla.widget.raise-on-setfocus", false); + +// disable sucky XUL ftp view, have nice ns4-like html page instead +pref("network.dir.generate_html", true); + +// deactivate mailcap support, it breaks Gnome-based helper apps +pref("helpers.global_mailcap_file", ""); +pref("helpers.private_mailcap_file", ""); + +// use the mozilla defaults for mime.types files to let mozilla guess proper +// Content-Type for file uploads instead of always falling back to +// application/octet-stream +pref("helpers.global_mime_types_file", ""); +pref("helpers.private_mime_types_file", ""); + +// use google for keywords +pref("keyword.enabled", true); + +// disable usless security warnings +pref("security.warn_entering_secure", false); +pref("security.warn_leaving_secure", false); +pref("security.warn_submit_insecure", false); + +// fonts +pref("font.size.unit", "pt"); +pref("font.size.fixed.ar", 10); +pref("font.size.fixed.x-baltic", 10); +pref("font.size.fixed.x-central-euro", 10); +pref("font.size.fixed.x-cyrillic", 10); +pref("font.size.fixed.x-devanagari", 10); +pref("font.size.fixed.el", 10); +pref("font.size.fixed.he", 10); +pref("font.size.fixed.ja", 10); +pref("font.size.fixed.ko", 10); +pref("font.size.fixed.zh-CN", 10); +pref("font.size.fixed.x-tamil", 10); +pref("font.size.fixed.th", 10); +pref("font.size.fixed.zh-TW", 10); +pref("font.size.fixed.zh-HK", 10); +pref("font.size.fixed.tr", 10); +pref("font.size.fixed.x-unicode", 10); +pref("font.size.fixed.x-western", 10); +pref("font.size.variable.ar", 11); +pref("font.size.variable.x-baltic", 11); +pref("font.size.variable.x-central-euro", 11); +pref("font.size.variable.x-cyrillic", 11); +pref("font.size.variable.x-devanagari", 11); +pref("font.size.variable.el", 11); +pref("font.size.variable.he", 11); +pref("font.size.variable.ja", 11); +pref("font.size.variable.ko", 11); +pref("font.size.variable.zh-CN", 11); +pref("font.size.variable.x-tamil", 11); +pref("font.size.variable.th", 11); +pref("font.size.variable.zh-TW", 11); +pref("font.size.variable.zh-HK", 11); +pref("font.size.variable.tr", 11); +pref("font.size.variable.x-unicode", 11); +pref("font.size.variable.x-western", 11); + +// protocols +pref("network.protocol-handler.external.news", true); +pref("network.protocol-handler.external.mailto", true); +pref("network.protocol-handler.external.irc", true); +pref("network.protocol-handler.external.webcal", true); + +// disable xpinstall +pref("xpinstall.enabled", false); + +// enable typeahead find +pref("accessibility.typeaheadfind", true); + |