Mercurial > dillo_port1.3
annotate dillorc @ 1525:3c683905dbe3
Added a help button. It tries a local help file then dillo.org's one.
author | corvid, jcid |
---|---|
date | Mon, 18 Jan 2010 14:00:46 -0300 |
parents | 96f19eb5687f |
children | 356c339d0761 |
rev | line source |
---|---|
405 | 1 # dillorc |
2 # Sample dillo initialization file. | |
3 # | |
4 # Lines that start with a '#' are comments. | |
5 # "#option=..." shows the built-in default. | |
6 # "# option=..." is an additional example. | |
7 # "option=..." overrides the built-in value. | |
8 | |
9 #------------------------------------------------------------------------- | |
10 # FIRST SECTION :) | |
11 #------------------------------------------------------------------------- | |
12 | |
13 # Set the desired initial browser size | |
14 # geometry=650x545+0+20 | |
15 #geometry=780x580 | |
16 | |
17 # Change this if you want to have text-only browsing from the start. | |
1167 | 18 # (While browsing, this can be changed from the tools/settings menu.) |
405 | 19 #load_images=YES |
20 | |
1167 | 21 # Change this if you want to disable loading of CSS stylesheets initially. |
22 # (While browsing, this can be changed from the tools/settings menu.) | |
747
0df766ebc2e9
add load_stylesheets option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
463
diff
changeset
|
23 #load_stylesheets=YES |
405 | 24 |
1167 | 25 # Change this if you want to disable parsing of embedded CSS initially. |
26 # (While browsing, this can be changed from the tools/settings menu.) | |
781
d494f2000cc2
add parse_embedded_css option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
773
diff
changeset
|
27 #parse_embedded_css=YES |
d494f2000cc2
add parse_embedded_css option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
773
diff
changeset
|
28 |
405 | 29 # Change the buffering scheme for drawing |
30 # 0 no double buffering - useful for debugging | |
31 # 1 light buffering using a single back buffer for all windows | |
32 # 2 full fltk-based double buffering for all windows | |
33 #buffered_drawing=1 | |
34 | |
35 # Set your default directory for download/save operations | |
36 #save_dir=/tmp | |
37 | |
38 #------------------------------------------------------------------------- | |
39 # RENDERING SECTION | |
40 #------------------------------------------------------------------------- | |
41 | |
824
556b5972dd18
adapt font-family preferences to match CSS
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
781
diff
changeset
|
42 # Fontnames: |
405 | 43 # - some fonts may slow down rendering. |
44 # - try to tune a fontname/font_factor combination. | |
45 # Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...} | |
826
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
46 # The values below represent the defaults. |
824
556b5972dd18
adapt font-family preferences to match CSS
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
781
diff
changeset
|
47 # |
826
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
48 #font_serif="DejaVu Serif" |
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
49 #font_sans_serif="DejaVu Sans" |
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
50 #font_cursive="DejaVu Sans" |
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
51 #font_fantasy="DejaVu Sans" |
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
52 #font_monospace="DejaVu Sans Mono" |
405 | 53 |
935
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
54 # All font sizes are scaled by this value |
405 | 55 # font_factor=1.5 |
56 #font_factor=1.0 | |
57 | |
955
b84781690627
add font_max_size dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
953
diff
changeset
|
58 # Maximum font size in pixels |
b84781690627
add font_max_size dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
953
diff
changeset
|
59 #font_max_size=100 |
b84781690627
add font_max_size dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
953
diff
changeset
|
60 |
953
38dca019d9bb
note that font_min_size is in pixels (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
935
diff
changeset
|
61 # Minimum font size in pixels |
935
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
62 #font_min_size=6 |
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
63 |
1343
16ed4ed58863
only set tooltips for UI if prefs.show_tooltip set
corvid <corvid@lavabit.com>
parents:
1340
diff
changeset
|
64 # Show tooltip popups for UI and for HTML title attributes |
405 | 65 #show_tooltip=YES |
66 | |
67 # Set this to YES if you want to limit the word wrap width to the viewport | |
68 # width (may be useful for iPAQ) | |
69 # *** NOT HOOKED UP YET *** | |
70 # | |
71 #limit_text_width=NO | |
72 | |
73 | |
74 #------------------------------------------------------------------------- | |
75 # PARSING SECTION | |
76 #------------------------------------------------------------------------- | |
77 | |
78 # If you prefer more accurate HTML bug diagnosis over better rendering | |
79 # (page authors and webmasters) set the following to "NO". | |
80 # | |
81 #w3c_plus_heuristics=YES | |
82 | |
83 | |
84 #------------------------------------------------------------------------- | |
85 # NETWORK SECTION | |
86 #------------------------------------------------------------------------- | |
87 | |
88 # Set the start page. | |
89 # start_page="about:blank" | |
90 # start_page="http://www.dillo.org" | |
91 # start_page="file:/home/jcid/custom_page.html" | |
92 #start_page="about:splash" | |
93 | |
94 # Set the home location | |
95 # home="file:/home/jcid/HomePage/Home.html" | |
96 #home="http://www.dillo.org/" | |
97 | |
98 # Set the URL used by the web search dialog. | |
99 # "%s" is replaced with the search keywords separated by '+'. | |
1078 | 100 # search_url="http://www.wikipedia.org/wiki/Special:Search?search=%s" |
405 | 101 # search_url="http://search.lycos.com/?query=%s" |
102 # search_url="http://www.alltheweb.com/search?cat=web&query=%s" | |
411 | 103 #search_url="http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" |
405 | 104 |
491
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
105 # If set, dillo will ask web servers to send pages in this language. |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
106 # This setting does NOT change dillo's user interface. |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
107 # Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
108 # Language-REGION values: www.iana.org/assignments/language-subtag-registry |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
109 # (by default, no Accept-Language header is sent) |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
110 # http_language="de" |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
111 # http_language="pt-BR" |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
112 # http_language="vi,de-CH,de;q=0.5,th;q=0.3" |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
113 |
405 | 114 # Set the proxy information for http. |
1108
aedb85a48b23
dillorc http_proxy pref mention environment var
corvid <corvid@lavabit.com>
parents:
1078
diff
changeset
|
115 # Note that the http_proxy environment variable overrides this setting. |
1514
239f9fc6c313
backout: That way would make no_proxy complicated.
corvid <corvid@lavabit.com>
parents:
1513
diff
changeset
|
116 # WARNING: FTP and downloads plugins use wget. To use a proxy with them, |
1521 | 117 # you will need to configure wget accordingly. See |
118 # http://www.gnu.org/software/wget/manual/html_node/Proxies.html | |
405 | 119 # http_proxy="http://localhost:8080/" |
120 #(by default, no proxy is used) | |
121 | |
122 # If you need to provide a user/password pair for the proxy, | |
123 # set the proxy user name here and Dillo will ask for the password later. | |
124 # http_proxyuser="joe" | |
125 #(by default, no proxy is used) | |
126 | |
1514
239f9fc6c313
backout: That way would make no_proxy complicated.
corvid <corvid@lavabit.com>
parents:
1513
diff
changeset
|
127 # Set the domains to access without proxy |
405 | 128 # no_proxy = ".hola.com .mynet.cl .hi.de" |
1303
a422b79d70f5
By default, do not use proxy for localhost
corvid <corvid@lavabit.com>
parents:
1167
diff
changeset
|
129 #no_proxy="localhost 127.0.0.1" |
405 | 130 |
131 # Set the HTTP Referer (sic) header. | |
132 # Note that there is no option to reveal the page that you came from because it | |
133 # would endanger your privacy. 'host' and 'path' allow you to pretend that the | |
134 # link you followed was on the same site that you're going to. | |
135 # none : Don't send any Referer header at all. | |
136 # host : Send the requested URI's hostname. | |
137 # path : Send the requested URI's host and path. | |
138 #http_referer=host | |
139 | |
140 | |
141 #------------------------------------------------------------------------- | |
142 # COLORS SECTION | |
143 #------------------------------------------------------------------------- | |
144 | |
145 # If your eyes suffer with white backgrounds, change this. | |
146 #allow_white_bg=YES | |
147 | |
148 # When set to YES, the page author's visited link color may be overridden | |
149 # to allow better contrast with text/links/background | |
150 #contrast_visited_color=YES | |
151 | |
152 | |
153 #------------------------------------------------------------------------- | |
154 # USER INTERFACE SECTION | |
155 #------------------------------------------------------------------------- | |
156 | |
157 # Size of dillo panel (used to enlarge the browsing area) | |
158 # tiny : recommended for iPAQ (with small_icons) | |
159 # small : very nice! (it's "medium" without icon titles) | |
160 # medium : nice! | |
161 # large : Traditional | |
162 # panel_size=tiny | |
163 # panel_size=small | |
463
77bc50c33f5c
Set panel_size=medium as default.
Jorge Arellano Cid <jcid@dillo.org>
parents:
453
diff
changeset
|
164 #panel_size=medium |
77bc50c33f5c
Set panel_size=medium as default.
Jorge Arellano Cid <jcid@dillo.org>
parents:
453
diff
changeset
|
165 # panel_size=large |
405 | 166 |
167 #small_icons=NO | |
168 | |
169 # Here you can choose to hide some widgets of the dillo panel... | |
170 #show_back=YES | |
171 #show_forw=YES | |
172 #show_home=YES | |
173 #show_reload=YES | |
174 #show_save=YES | |
175 #show_stop=YES | |
176 #show_bookmarks=YES | |
834
9a0725437bf1
Added the show_tools dillorc option
corvid <corvid@lavabit.com>
parents:
831
diff
changeset
|
177 #show_tools=YES |
405 | 178 #show_filemenu=YES |
179 #show_clear_url=YES | |
180 #show_url=YES | |
181 #show_search=YES | |
1525
3c683905dbe3
Added a help button. It tries a local help file then dillo.org's one.
corvid, jcid
parents:
1521
diff
changeset
|
182 #show_help=YES |
405 | 183 #show_progress_box=YES |
184 | |
185 # Start dillo with the panels hidden? | |
186 #fullwindow_start=NO | |
187 | |
188 # When filling out forms, our default behaviour is to submit on enterpress, | |
189 # but only when there's a single text entry (to avoid incomplete submits). | |
190 # OTOH, if you have to fill out the same form repeatedly, you may find it | |
191 # useful to keep away from the mouse by forcing enter to submit. | |
192 #enterpress_forces_submit=NO | |
193 | |
194 # A mouse's middle click over a link opens a new Tab. | |
195 # If you prefer to open a new Window instead, set it to NO. | |
196 #middle_click_opens_new_tab=YES | |
197 | |
438 | 198 # Mouse middle click by default drives drag-scrolling. |
199 # To paste an URL into the window instead of scrolling, set it to NO. | |
200 # Note: You could always paste the URL onto the URL box clear button. | |
201 #middle_click_drags_page=YES | |
202 | |
405 | 203 # Focus follows new Tabs. |
204 # You can hold SHIFT to temporarily revert this behaviour. | |
205 #focus_new_tab=YES | |
206 | |
207 | |
208 #------------------------------------------------------------------------- | |
209 # DEBUG MESSAGES SECTION | |
210 #------------------------------------------------------------------------- | |
211 | |
212 # Soon we should add the "show_debug_messages=NO" option... | |
213 | |
214 # Generic messages (mainly for debugging specific parts) | |
215 # Change this to disable them. | |
216 #show_msg=YES | |
217 | |
218 | |
219 #------------------------------------------------------------------------- | |
220 # HTML BUG MESSAGES SECTION | |
221 #------------------------------------------------------------------------- | |
222 | |
223 # Accepted by the W3C validator but "strongly discouraged" by the SPEC. | |
224 # (Such as "TAB character inside <PRE>"). | |
225 #show_extra_warnings=NO | |
226 | |
227 | |
228 # ----------------------------------------------------------------------- | |
229 # dillorc ends here. |