~ubuntu-branches/debian/squeeze/galeon/squeeze

« back to all changes in this revision

Viewing changes to default-prefs.js

  • Committer: Bazaar Package Importer
  • Author(s): Mark Howard
  • Date: 2004-06-06 09:02:01 UTC
  • Revision ID: james.westby@ubuntu.com-20040606090201-yhx6ruhq8um7ggs2
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// disable annoying non-standard tags
 
2
pref("browser.blink_allowed", false);
 
3
pref("browser.display.enable_marquee", false);
 
4
 
 
5
// ensure the memory cache is turned on, mozilla will pick
 
6
// an appropriate memory cache size automatically
 
7
pref("browser.cache.memory.enable", true);
 
8
 
 
9
// disable image resizing and smooth scroll, they aren't quite there yet 
 
10
pref("browser.enable_automatic_image_resizing", false);
 
11
pref("general.smoothScroll", false);
 
12
 
 
13
// disable keyword search, it gives surprising results when trying to contact a
 
14
// server which is down, and we have much better smart bookmarks anyway ;)
 
15
pref("keyword.enabled", false);
 
16
 
 
17
// Text Zoom with Ctrl+Wheel
 
18
// http://bugzilla.gnome.org/show_bug.cgi?id=117626
 
19
pref("mousewheel.withcontrolkey.action", 3);
 
20
 
 
21
// History with Alt+Wheel, scroll by page with Shift+Wheel
 
22
pref("mousewheel.withaltkey.action", 2);
 
23
pref("mousewheel.withshiftkey.action", 1);
 
24
 
 
25
// disallow opening file:/// URLs on pages from network sources (http, etc.)
 
26
pref("security.checkloaduri", true);
 
27
 
 
28
// enable syntax highlighting and line wrapping in View Source
 
29
pref("view_source.syntax_highlight", true);
 
30
pref("view_source.wrap_long_lines", true);
 
31
 
 
32
// disable forms manager while we have no UI
 
33
pref("wallet.captureForms", false);
 
34
 
 
35
//===========================================================================
 
36
// You should not change the rest of the preferences below.
 
37
 
 
38
// disable sidebar What's Related, we don't use it
 
39
pref("browser.related.enabled", false);
 
40
 
 
41
// play nice with sloppy focus
 
42
pref("mozilla.widget.raise-on-setfocus", false);
 
43
 
 
44
// don't allow xpi installs from Galeon, there are crashes
 
45
pref("xpinstall.enabled", false);
 
46
 
 
47
// disable sucky XUL ftp view, have nice ns4-like html page instead
 
48
pref("network.dir.generate_html", true);
 
49
 
 
50
// set the right accept encoding flags
 
51
pref("network.http.accept-encoding", "gzip, deflate, compress;q=0.9");
 
52
 
 
53
// deactivate mailcap support, it breaks Gnome-based helper apps
 
54
pref("helpers.global_mailcap_file", "");
 
55
pref("helpers.private_mailcap_file", "");
 
56
 
 
57
// use the mozilla defaults for mime.types files to let mozilla guess proper
 
58
// Content-Type for file uploads instead of always falling back to
 
59
// application/octet-stream
 
60
//
 
61
// user_pref("helpers.global_mime_types_file", null);
 
62
// user_pref("helpers.private_mime_types_file", null);
 
63
 
 
64
// fonts
 
65
pref("font.size.unit", "pt");
 
66
pref("font.size.fixed.ar", 10);
 
67
pref("font.size.fixed.x-baltic", 10);
 
68
pref("font.size.fixed.x-central-euro", 10);
 
69
pref("font.size.fixed.x-cyrillic", 10);
 
70
pref("font.size.fixed.x-devanagari", 10);
 
71
pref("font.size.fixed.el", 10);
 
72
pref("font.size.fixed.he", 10);
 
73
pref("font.size.fixed.ja", 10);
 
74
pref("font.size.fixed.ko", 10);
 
75
pref("font.size.fixed.x-tamil", 10);
 
76
pref("font.size.fixed.th", 10);
 
77
pref("font.size.fixed.zh-CN", 10);
 
78
pref("font.size.fixed.zh-TW", 10);
 
79
pref("font.size.fixed.zh-HK", 10);
 
80
pref("font.size.fixed.tr", 10);
 
81
pref("font.size.fixed.x-unicode", 10);
 
82
pref("font.size.fixed.x-western", 10);
 
83
pref("font.size.variable.ar", 11);
 
84
pref("font.size.variable.x-baltic", 11);
 
85
pref("font.size.variable.x-central-euro", 11);
 
86
pref("font.size.variable.x-cyrillic", 11);
 
87
pref("font.size.variable.x-devanagari", 11);
 
88
pref("font.size.variable.el", 11);
 
89
pref("font.size.variable.he", 11);
 
90
pref("font.size.variable.ja", 11);
 
91
pref("font.size.variable.ko", 11);
 
92
pref("font.size.variable.x-tamil", 11);
 
93
pref("font.size.variable.th", 11);
 
94
pref("font.size.variable.zh-CN", 11);
 
95
pref("font.size.variable.zh-TW", 11);
 
96
pref("font.size.variable.zh-HK", 11);
 
97
pref("font.size.variable.tr", 11);
 
98
pref("font.size.variable.x-unicode", 11);
 
99
pref("font.size.variable.x-western", 11);