Mercurial > dillo_port1.3
annotate dillorc @ 953:38dca019d9bb
note that font_min_size is in pixels (noticed by corvid)
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Sun, 15 Feb 2009 21:34:05 +0100 |
parents | b43ce176d305 |
children | b84781690627 |
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. | |
18 # (there's a toggle button near the bug meter to change this on-the-fly) | |
19 #load_images=YES | |
20 | |
747
0df766ebc2e9
add load_stylesheets option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
463
diff
changeset
|
21 # Change this if you want to disable loading of CSS stylesheets. |
0df766ebc2e9
add load_stylesheets option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
463
diff
changeset
|
22 #load_stylesheets=YES |
405 | 23 |
781
d494f2000cc2
add parse_embedded_css option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
773
diff
changeset
|
24 # Change this if you want to disable parsing of embedded CSS. |
d494f2000cc2
add parse_embedded_css option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
773
diff
changeset
|
25 #parse_embedded_css=YES |
d494f2000cc2
add parse_embedded_css option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
773
diff
changeset
|
26 |
405 | 27 # Change the buffering scheme for drawing |
28 # 0 no double buffering - useful for debugging | |
29 # 1 light buffering using a single back buffer for all windows | |
30 # 2 full fltk-based double buffering for all windows | |
31 #buffered_drawing=1 | |
32 | |
33 # Set your default directory for download/save operations | |
34 #save_dir=/tmp | |
35 | |
36 #------------------------------------------------------------------------- | |
37 # RENDERING SECTION | |
38 #------------------------------------------------------------------------- | |
39 | |
824
556b5972dd18
adapt font-family preferences to match CSS
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
781
diff
changeset
|
40 # Fontnames: |
405 | 41 # - some fonts may slow down rendering. |
42 # - try to tune a fontname/font_factor combination. | |
43 # 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
|
44 # 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
|
45 # |
826
92b7a59b704b
make default font names clearer in dillorc (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
824
diff
changeset
|
46 #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
|
47 #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
|
48 #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
|
49 #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
|
50 #font_monospace="DejaVu Sans Mono" |
405 | 51 |
935
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
52 # All font sizes are scaled by this value |
405 | 53 # font_factor=1.5 |
54 #font_factor=1.0 | |
55 | |
953
38dca019d9bb
note that font_min_size is in pixels (noticed by corvid)
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
935
diff
changeset
|
56 # Minimum font size in pixels |
935
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
57 #font_min_size=6 |
b43ce176d305
add "font_min_size" dillorc option
Johannes Hofmann <Johannes.Hofmann@gmx.de>
parents:
834
diff
changeset
|
58 |
405 | 59 # Show tooltip popup for images? |
60 # Note: We use the "title" attribute and not "alt". | |
61 # More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537 | |
62 # *** NOT HOOKED UP YET *** | |
63 # | |
64 #show_tooltip=YES | |
65 | |
66 # Set this to YES if you want to limit the word wrap width to the viewport | |
67 # width (may be useful for iPAQ) | |
68 # *** NOT HOOKED UP YET *** | |
69 # | |
70 #limit_text_width=NO | |
71 | |
72 | |
73 #------------------------------------------------------------------------- | |
74 # PARSING SECTION | |
75 #------------------------------------------------------------------------- | |
76 | |
77 # If you prefer more accurate HTML bug diagnosis over better rendering | |
78 # (page authors and webmasters) set the following to "NO". | |
79 # | |
80 #w3c_plus_heuristics=YES | |
81 | |
82 | |
83 #------------------------------------------------------------------------- | |
84 # NETWORK SECTION | |
85 #------------------------------------------------------------------------- | |
86 | |
87 # Set the start page. | |
88 # start_page="about:blank" | |
89 # start_page="http://www.dillo.org" | |
90 # start_page="file:/home/jcid/custom_page.html" | |
91 #start_page="about:splash" | |
92 | |
93 # Set the home location | |
94 # home="file:/home/jcid/HomePage/Home.html" | |
95 #home="http://www.dillo.org/" | |
96 | |
97 # Set the URL used by the web search dialog. | |
98 # "%s" is replaced with the search keywords separated by '+'. | |
99 # search_url="http://search.lycos.com/?query=%s" | |
100 # search_url="http://www.alltheweb.com/search?cat=web&query=%s" | |
411 | 101 #search_url="http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" |
405 | 102 |
491
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
103 # 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
|
104 # 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
|
105 # 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
|
106 # 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
|
107 # (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
|
108 # http_language="de" |
96a14e974cfb
Added the "http_language" dillorc option for setting HTTP's Accept-Language.
corvid <corvid@lavabit.com>
parents:
463
diff
changeset
|
109 # 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
|
110 # 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
|
111 |
405 | 112 # Set the proxy information for http. |
453 | 113 # WARNING: - HTTPS does not currently use the proxy settings. |
114 # - FTP and downloads plugins use wget. To use a proxy with them, | |
115 # you will need to configure wget accordingly. | |
405 | 116 # http_proxy="http://localhost:8080/" |
117 #(by default, no proxy is used) | |
118 | |
119 # If you need to provide a user/password pair for the proxy, | |
120 # set the proxy user name here and Dillo will ask for the password later. | |
121 # http_proxyuser="joe" | |
122 #(by default, no proxy is used) | |
123 | |
124 # Set the domains to access without proxy | |
125 # no_proxy = ".hola.com .mynet.cl .hi.de" | |
126 #(by default, no proxy is used) | |
127 | |
128 # Set the HTTP Referer (sic) header. | |
129 # Note that there is no option to reveal the page that you came from because it | |
130 # would endanger your privacy. 'host' and 'path' allow you to pretend that the | |
131 # link you followed was on the same site that you're going to. | |
132 # none : Don't send any Referer header at all. | |
133 # host : Send the requested URI's hostname. | |
134 # path : Send the requested URI's host and path. | |
135 #http_referer=host | |
136 | |
137 | |
138 #------------------------------------------------------------------------- | |
139 # COLORS SECTION | |
140 #------------------------------------------------------------------------- | |
141 | |
142 # Here we can use the HTML color names or C syntax. | |
143 | |
144 # Set the background color | |
145 # bg_color=gray | |
146 # bg_color=0xd6d6c0 | |
147 #bg_color=0xdcd1ba | |
148 | |
149 # Set the text color | |
150 #text_color=black | |
151 | |
152 # Set the link color | |
153 #link_color=blue | |
154 | |
155 # If your eyes suffer with white backgrounds, change this. | |
156 #allow_white_bg=YES | |
157 | |
158 # Use the same colors with all documents? | |
159 #force_my_colors=NO | |
160 | |
161 # When set to YES, the page author's visited link color may be overridden | |
162 # to allow better contrast with text/links/background | |
163 #contrast_visited_color=YES | |
164 | |
165 # Colors for widgets inside forms. | |
166 # YES = toolkit's default colors, NO = use page's text and background color. | |
167 # ("NO" looks less traditional but more stylish). | |
168 #standard_widget_colors=NO | |
169 | |
170 | |
171 #------------------------------------------------------------------------- | |
172 # USER INTERFACE SECTION | |
173 #------------------------------------------------------------------------- | |
174 | |
175 # Size of dillo panel (used to enlarge the browsing area) | |
176 # tiny : recommended for iPAQ (with small_icons) | |
177 # small : very nice! (it's "medium" without icon titles) | |
178 # medium : nice! | |
179 # large : Traditional | |
180 # panel_size=tiny | |
181 # panel_size=small | |
463
77bc50c33f5c
Set panel_size=medium as default.
Jorge Arellano Cid <jcid@dillo.org>
parents:
453
diff
changeset
|
182 #panel_size=medium |
77bc50c33f5c
Set panel_size=medium as default.
Jorge Arellano Cid <jcid@dillo.org>
parents:
453
diff
changeset
|
183 # panel_size=large |
405 | 184 |
185 #small_icons=NO | |
186 | |
187 # Here you can choose to hide some widgets of the dillo panel... | |
188 #show_back=YES | |
189 #show_forw=YES | |
190 #show_home=YES | |
191 #show_reload=YES | |
192 #show_save=YES | |
193 #show_stop=YES | |
194 #show_bookmarks=YES | |
834
9a0725437bf1
Added the show_tools dillorc option
corvid <corvid@lavabit.com>
parents:
831
diff
changeset
|
195 #show_tools=YES |
405 | 196 #show_filemenu=YES |
197 #show_clear_url=YES | |
198 #show_url=YES | |
199 #show_search=YES | |
200 #show_progress_box=YES | |
201 | |
202 # Start dillo with the panels hidden? | |
203 #fullwindow_start=NO | |
204 | |
205 # When filling out forms, our default behaviour is to submit on enterpress, | |
206 # but only when there's a single text entry (to avoid incomplete submits). | |
207 # OTOH, if you have to fill out the same form repeatedly, you may find it | |
208 # useful to keep away from the mouse by forcing enter to submit. | |
209 #enterpress_forces_submit=NO | |
210 | |
211 # A mouse's middle click over a link opens a new Tab. | |
212 # If you prefer to open a new Window instead, set it to NO. | |
213 #middle_click_opens_new_tab=YES | |
214 | |
438 | 215 # Mouse middle click by default drives drag-scrolling. |
216 # To paste an URL into the window instead of scrolling, set it to NO. | |
217 # Note: You could always paste the URL onto the URL box clear button. | |
218 #middle_click_drags_page=YES | |
219 | |
405 | 220 # Focus follows new Tabs. |
221 # You can hold SHIFT to temporarily revert this behaviour. | |
222 #focus_new_tab=YES | |
223 | |
224 | |
225 #------------------------------------------------------------------------- | |
226 # DEBUG MESSAGES SECTION | |
227 #------------------------------------------------------------------------- | |
228 | |
229 # Soon we should add the "show_debug_messages=NO" option... | |
230 | |
231 # Generic messages (mainly for debugging specific parts) | |
232 # Change this to disable them. | |
233 #show_msg=YES | |
234 | |
235 | |
236 #------------------------------------------------------------------------- | |
237 # HTML BUG MESSAGES SECTION | |
238 #------------------------------------------------------------------------- | |
239 | |
240 # Accepted by the W3C validator but "strongly discouraged" by the SPEC. | |
241 # (Such as "TAB character inside <PRE>"). | |
242 #show_extra_warnings=NO | |
243 | |
244 | |
245 # ----------------------------------------------------------------------- | |
246 # dillorc ends here. |