rev |
line source |
pankso@2795
|
1 # dillorc
|
pankso@2795
|
2 # Sample dillo initialization file.
|
pankso@2795
|
3 #
|
pankso@2795
|
4 # Lines that start with a '#' are comments.
|
pankso@2795
|
5 # "#option=..." shows the built-in default.
|
pankso@2795
|
6 # "# option=..." is an additional example.
|
pankso@2795
|
7 # "option=..." overrides the built-in value.
|
pankso@2795
|
8
|
pankso@2795
|
9 #-------------------------------------------------------------------------
|
pankso@2795
|
10 # FIRST SECTION :)
|
pankso@2795
|
11 #-------------------------------------------------------------------------
|
pankso@2795
|
12
|
pankso@2795
|
13 # Set the desired initial browser size
|
pankso@2795
|
14 # geometry=650x545+0+20
|
pankso@2795
|
15 #geometry=780x580
|
pankso@2795
|
16
|
pankso@2795
|
17 # Change this if you want to have text-only browsing from the start.
|
pankso@15747
|
18 # (While browsing, this can be changed from the tools/settings menu.)
|
pankso@15747
|
19 load_images=YES
|
pankso@2795
|
20
|
pankso@16375
|
21 # Change this if you want background images to be loaded initially.
|
pankso@16375
|
22 # (While browsing, this can be changed from the tools/settings menu.)
|
pankso@16375
|
23 #load_background_images=FALSE
|
pankso@16375
|
24
|
pankso@15747
|
25 # Change this if you want to disable loading of CSS stylesheets initially.
|
pankso@15747
|
26 # (While browsing, this can be changed from the tools/settings menu.)
|
pankso@15747
|
27 load_stylesheets=YES
|
pankso@15747
|
28
|
pankso@15747
|
29 # Change this if you want to disable parsing of embedded CSS initially.
|
pankso@15747
|
30 # (While browsing, this can be changed from the tools/settings menu.)
|
pankso@15747
|
31 parse_embedded_css=YES
|
pankso@2795
|
32
|
pankso@2795
|
33 # Change the buffering scheme for drawing
|
pankso@2795
|
34 # 0 no double buffering - useful for debugging
|
pankso@2795
|
35 # 1 light buffering using a single back buffer for all windows
|
pankso@2795
|
36 # 2 full fltk-based double buffering for all windows
|
pankso@2795
|
37 #buffered_drawing=1
|
pankso@2795
|
38
|
pankso@2795
|
39 # Set your default directory for download/save operations
|
pankso@2795
|
40 #save_dir=/tmp
|
pankso@2795
|
41
|
pankso@2795
|
42 #-------------------------------------------------------------------------
|
pankso@2795
|
43 # RENDERING SECTION
|
pankso@2795
|
44 #-------------------------------------------------------------------------
|
pankso@2795
|
45
|
pankso@15747
|
46 # Default fonts:
|
pankso@15747
|
47 #
|
pankso@15747
|
48 # If FLTK has been configured with Xft enabled (the default), you can use
|
pankso@15747
|
49 # scalable fonts such as DejaVu or Liberation (try running
|
pankso@15747
|
50 # "fc-list : family | cut -d ',' -f 2 | sort").
|
pankso@15747
|
51 #font_serif="DejaVu Serif"
|
pankso@15747
|
52 #font_sans_serif="DejaVu Sans"
|
pankso@15747
|
53 #font_cursive="URW Chancery L"
|
pankso@15747
|
54 #font_fantasy="DejaVu Sans"
|
pankso@15747
|
55 #font_monospace="DejaVu Sans Mono"
|
pankso@15747
|
56 #
|
pankso@15747
|
57 # Otherwise, use bitmapped fonts like the following (for a list, try running
|
pankso@15747
|
58 # "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq").
|
pankso@15747
|
59 # font_serif="times"
|
pankso@15747
|
60 # font_sans_serif="helvetica"
|
pankso@15747
|
61 # font_cursive="helvetica"
|
pankso@15747
|
62 # font_fantasy="helvetica"
|
pankso@15747
|
63 # font_monospace="courier"
|
pankso@2795
|
64
|
pankso@15747
|
65 # All font sizes are scaled by this value
|
pankso@2795
|
66 # font_factor=1.5
|
pankso@2795
|
67 #font_factor=1.0
|
pankso@2795
|
68
|
pankso@15747
|
69 # Maximum font size in pixels
|
pankso@15747
|
70 #font_max_size=100
|
pankso@15747
|
71
|
pankso@15747
|
72 # Minimum font size in pixels
|
pankso@15747
|
73 #font_min_size=6
|
pankso@15747
|
74
|
pankso@15747
|
75 # Show tooltip popups for UI and for HTML title attributes
|
pankso@2795
|
76 #show_tooltip=YES
|
pankso@2795
|
77
|
pankso@2795
|
78 # Set this to YES if you want to limit the word wrap width to the viewport
|
pankso@2795
|
79 # width (may be useful for iPAQ)
|
pankso@2795
|
80 #limit_text_width=NO
|
pankso@2795
|
81
|
pankso@2795
|
82
|
pankso@2795
|
83 #-------------------------------------------------------------------------
|
pankso@15747
|
84 # PENALTIES
|
pankso@15747
|
85 #-------------------------------------------------------------------------
|
pankso@15747
|
86
|
pankso@15747
|
87 # Penalties are used to control good and bad break points. The bigger
|
pankso@15747
|
88 # the penalty for a given break point, the less likely the line is
|
pankso@15747
|
89 # broken here. "inf" means that breaking is prohibited, "-inf" means
|
pankso@15747
|
90 # that a line *must* be broken here. (The latter should not be used
|
pankso@15747
|
91 # here, however.) Normal spaces get a penalty of 0. The exact
|
pankso@15747
|
92 # definition can be found in doc/dw-line-breaking.doc.
|
pankso@15747
|
93
|
pankso@15747
|
94 # Penalties for hyphenation breaks; this covers automatic hyphenation,
|
pankso@15747
|
95 # soft hyphens, and unconditional hyphens. Since hyphenation should
|
pankso@15747
|
96 # rather be avoided, the default values are larger than 0.
|
pankso@15747
|
97
|
pankso@15747
|
98 # This is used for hyphenation points, when there is no hyphen or dash
|
pankso@15747
|
99 # before:
|
pankso@15747
|
100 #penalty_hyphen = 1
|
pankso@15747
|
101
|
pankso@15747
|
102 # This is used for hyphenation points, when the line before ends
|
pankso@15747
|
103 # already with a hyphen or a dash. Consequent lines ending with
|
pankso@15747
|
104 # hyphens or dashes should be avoided, so this value is bigger than
|
pankso@15747
|
105 # "penalty_hyphen":
|
pankso@15747
|
106 #penalty_hyphen_2 = 8
|
pankso@15747
|
107
|
pankso@15747
|
108 # The same for a break right of an em-dash, when there are no spaces
|
pankso@15747
|
109 # surrounding it (as in English). The default values are the same as
|
pankso@15747
|
110 # for hyphens:
|
pankso@15747
|
111 #penalty_em_dash_right = 1
|
pankso@15747
|
112 #penalty_em_dash_right_2 = 8
|
pankso@15747
|
113
|
pankso@15747
|
114 # Penalty for a break *left* of an em-dash. Since a line ending with
|
pankso@15747
|
115 # an em-dash (and so breaking right of the em-dash) looks better than
|
pankso@15747
|
116 # a line beginning with an em-dash (breaking left of an em-dash), the
|
pankso@15747
|
117 # default value is bigger than "penalty_em_dash_right":
|
pankso@15747
|
118 #penalty_em_dash_left = 8
|
pankso@15747
|
119
|
pankso@15747
|
120 # Notice that there is no "penalty_em_dash_left_2", since breaking
|
pankso@15747
|
121 # left of an em-dash makes the line *begin*, not *end* with a dash.
|
pankso@15747
|
122
|
pankso@15747
|
123
|
pankso@15747
|
124 #-------------------------------------------------------------------------
|
pankso@2795
|
125 # PARSING SECTION
|
pankso@2795
|
126 #-------------------------------------------------------------------------
|
pankso@2795
|
127
|
pankso@2795
|
128 # If you prefer more accurate HTML bug diagnosis over better rendering
|
pankso@2795
|
129 # (page authors and webmasters) set the following to "NO".
|
pankso@2795
|
130 #
|
pankso@2795
|
131 #w3c_plus_heuristics=YES
|
pankso@2795
|
132
|
pankso@2795
|
133
|
pankso@2795
|
134 #-------------------------------------------------------------------------
|
pankso@2795
|
135 # NETWORK SECTION
|
pankso@2795
|
136 #-------------------------------------------------------------------------
|
pankso@2795
|
137
|
pankso@2795
|
138 # Set the start page.
|
pankso@2795
|
139 # start_page="about:blank"
|
pankso@2795
|
140 # start_page="http://www.dillo.org"
|
pankso@2795
|
141 # start_page="file:/home/jcid/custom_page.html"
|
pankso@2795
|
142 start_page="file:/usr/share/webhome/index.html"
|
pankso@2795
|
143
|
pankso@2795
|
144 # Set the home location
|
pankso@2795
|
145 # home="file:/home/jcid/HomePage/Home.html"
|
pankso@2795
|
146 home="file:/usr/share/webhome/index.html"
|
pankso@2795
|
147
|
pankso@15747
|
148 # Set the URLs used by the web search dialog.
|
pankso@2795
|
149 # "%s" is replaced with the search keywords separated by '+'.
|
pankso@15747
|
150 # Format: search_url="[<label> ]<url>"
|
pankso@15747
|
151 # You can enable multiple search_url strings at once and select from among
|
pankso@15747
|
152 # them at runtime, with the first being the default.
|
pankso@15747
|
153 search_url="http://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz"
|
pankso@15747
|
154 search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go"
|
pankso@15747
|
155 search_url="Free Dictionary http://www.thefreedictionary.com/%s"
|
pankso@15747
|
156 search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
|
pankso@15747
|
157
|
pankso@15747
|
158 # If set, dillo will ask web servers to send pages in this language.
|
pankso@15747
|
159 # This setting does NOT change dillo's user interface.
|
pankso@15747
|
160 # Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
|
pankso@15747
|
161 # Language-REGION values: www.iana.org/assignments/language-subtag-registry
|
pankso@15747
|
162 # (by default, no Accept-Language header is sent)
|
pankso@15747
|
163 # http_language="de"
|
pankso@15747
|
164 # http_language="pt-BR"
|
pankso@15747
|
165 # http_language="vi,de-CH,de;q=0.5,th;q=0.3"
|
pankso@15747
|
166
|
pankso@15747
|
167 # Maximum number of simultaneous TCP connections to a single server or proxy.
|
pankso@15747
|
168 # http_max_conns=6
|
pankso@2795
|
169
|
pankso@2795
|
170 # Set the proxy information for http.
|
pankso@15747
|
171 # Note that the http_proxy environment variable overrides this setting.
|
pankso@15747
|
172 # WARNING: FTP and downloads plugins use wget. To use a proxy with them,
|
pankso@15747
|
173 # you will need to configure wget accordingly. See
|
pankso@15747
|
174 # http://www.gnu.org/software/wget/manual/html_node/Proxies.html
|
pankso@2795
|
175 # http_proxy="http://localhost:8080/"
|
pankso@2795
|
176 #(by default, no proxy is used)
|
pankso@2795
|
177
|
pankso@2795
|
178 # If you need to provide a user/password pair for the proxy,
|
pankso@2795
|
179 # set the proxy user name here and Dillo will ask for the password later.
|
pankso@2795
|
180 # http_proxyuser="joe"
|
pankso@2795
|
181 #(by default, no proxy is used)
|
pankso@2795
|
182
|
pankso@2795
|
183 # Set the domains to access without proxy
|
pankso@2795
|
184 # no_proxy = ".hola.com .mynet.cl .hi.de"
|
pankso@15747
|
185 #no_proxy="localhost 127.0.0.1"
|
pankso@2795
|
186
|
pankso@2795
|
187 # Set the HTTP Referer (sic) header.
|
pankso@2795
|
188 # Note that there is no option to reveal the page that you came from because it
|
pankso@2795
|
189 # would endanger your privacy. 'host' and 'path' allow you to pretend that the
|
pankso@2795
|
190 # link you followed was on the same site that you're going to.
|
pankso@2795
|
191 # none : Don't send any Referer header at all.
|
pankso@2795
|
192 # host : Send the requested URI's hostname.
|
pankso@2795
|
193 # path : Send the requested URI's host and path.
|
pankso@2795
|
194 #http_referer=host
|
pankso@2795
|
195
|
pankso@15747
|
196 # Set the HTTP User-Agent header.
|
pankso@15747
|
197 # This can be useful for privacy and for working around servers who think
|
pankso@15747
|
198 # Dillo is less capable than it really is. However, if you pretend to use a
|
pankso@15747
|
199 # different browser, servers may send you pages that work with the features
|
pankso@15747
|
200 # and bugs of that other browser -- or even disallow access in cases like
|
pankso@15747
|
201 # wget or googlebot. Remember this before submitting bug reports.
|
pankso@15747
|
202 #
|
pankso@15747
|
203 # See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings.
|
pankso@15747
|
204 #
|
pankso@15747
|
205 # http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0"
|
pankso@15747
|
206 # http_user_agent="Wget/1.12 (linux-gnu)"
|
pankso@15747
|
207 #The default is "Dillo/"+current_version_number
|
pankso@2795
|
208
|
pankso@2795
|
209 #-------------------------------------------------------------------------
|
pankso@2795
|
210 # COLORS SECTION
|
pankso@2795
|
211 #-------------------------------------------------------------------------
|
pankso@2795
|
212
|
pankso@15747
|
213 # Set the page background color
|
pankso@2795
|
214 # bg_color=gray
|
pankso@2795
|
215 # bg_color=0xd6d6c0
|
pankso@16375
|
216 bg_color=white
|
pankso@2795
|
217
|
pankso@2795
|
218 # If your eyes suffer with white backgrounds, change this.
|
pankso@16375
|
219 allow_white_bg=YES
|
pankso@2795
|
220
|
pankso@2795
|
221 # When set to YES, the page author's visited link color may be overridden
|
pankso@2795
|
222 # to allow better contrast with text/links/background
|
pankso@2795
|
223 #contrast_visited_color=YES
|
pankso@2795
|
224
|
pankso@2795
|
225
|
pankso@2795
|
226 #-------------------------------------------------------------------------
|
pankso@2795
|
227 # USER INTERFACE SECTION
|
pankso@2795
|
228 #-------------------------------------------------------------------------
|
pankso@2795
|
229
|
pankso@15747
|
230 # UI theme
|
pankso@15747
|
231 # "none" is the default FLTK appearance, which "resembles old Windows...and
|
pankso@15747
|
232 # old GTK/KDE".
|
pankso@15747
|
233 # "plastic" "is inspired by the Aqua user interface on Mac OS X".
|
pankso@15747
|
234 # "gtk+" "is inspired by the Red Hat Bluecurve theme".
|
pankso@16375
|
235 theme=none
|
pankso@16375
|
236 #theme=gtk+
|
pankso@15747
|
237 #theme=plastic
|
pankso@15747
|
238
|
pankso@15747
|
239 # UI colors
|
pankso@15747
|
240 # The first four colors map to concepts in the underlying FLTK toolkit. Note
|
pankso@15747
|
241 # that FLTK may sometimes override colors, generally for contrast and
|
pankso@15747
|
242 # readability.
|
pankso@15747
|
243 #
|
pankso@15747
|
244 #ui_fg_color=black
|
pankso@15747
|
245 #ui_main_bg_color=silver
|
pankso@15747
|
246 #ui_text_bg_color=white
|
pankso@15747
|
247 #ui_selection_color=navy
|
pankso@15747
|
248 #
|
pankso@15747
|
249 # Background used when the mouse cursor is over a button.
|
pankso@15747
|
250 #ui_button_highlight_color=(by default, the main background color, lightened)
|
pankso@15747
|
251 #
|
pankso@15747
|
252 # Colors for the current tab.
|
pankso@15747
|
253 #ui_tab_active_bg_color=(by default, the text background color)
|
pankso@15747
|
254 #ui_tab_active_fg_color=(by default, the main foreground color)
|
pankso@15747
|
255 #
|
pankso@15747
|
256 # Colors for the other tabs.
|
pankso@15747
|
257 #ui_tab_bg_color=(by default, the main background color)
|
pankso@15747
|
258 #ui_tab_fg_color=(by default, the main foreground color)
|
pankso@15747
|
259
|
pankso@15747
|
260
|
pankso@15747
|
261 # Note to packagers: leaving these variables for the system to guess
|
pankso@15747
|
262 # gives different results in different environments, so we played it safe
|
pankso@15747
|
263 # by defining the traditional colors. Please choose the color theme that
|
pankso@15747
|
264 # better fits your distro.
|
pankso@15747
|
265
|
pankso@15747
|
266 #
|
pankso@15747
|
267 # SliTaz theme
|
pankso@15747
|
268 #
|
pankso@15747
|
269 ui_fg_color=black
|
pankso@15747
|
270 ui_main_bg_color=#ededed
|
pankso@15747
|
271 ui_text_bg_color=#d9d4ce
|
pankso@15747
|
272 ui_selection_color=#d66018
|
pankso@15747
|
273 ui_button_highlight_color=#a9a9a9
|
pankso@15747
|
274 ui_tab_active_bg_color=#333333
|
pankso@15747
|
275 ui_tab_active_fg_color=white
|
pankso@15747
|
276 ui_tab_bg_color=#dadada
|
pankso@15747
|
277
|
pankso@15747
|
278 #
|
pankso@15747
|
279 # Gray theme (traditional)
|
pankso@15747
|
280 #
|
pankso@15747
|
281 #ui_fg_color=black
|
pankso@15747
|
282 #ui_main_bg_color=#c6c6c6
|
pankso@15747
|
283 #ui_text_bg_color=bfdabf
|
pankso@15747
|
284 #ui_selection_color=#191970
|
pankso@15747
|
285 #ui_button_highlight_color=#a9a9a9
|
pankso@15747
|
286 #ui_tab_active_bg_color=#87aca7
|
pankso@15747
|
287 #ui_tab_active_fg_color=black
|
pankso@15747
|
288 #ui_tab_bg_color=#b7beb7
|
pankso@15747
|
289
|
pankso@15747
|
290 #
|
pankso@15747
|
291 # Earthly theme:
|
pankso@15747
|
292 #
|
pankso@15747
|
293 #ui_fg_color=#100404
|
pankso@15747
|
294 #ui_main_bg_color=#c2a47b
|
pankso@15747
|
295 #ui_text_bg_color=#cdc9a5
|
pankso@15747
|
296 #ui_selection_color=#763024
|
pankso@15747
|
297 #ui_tab_active_bg_color=#af4b3f
|
pankso@15747
|
298 #ui_tab_active_fg_color=white
|
pankso@15747
|
299 #ui_tab_bg_color=#d2b48c
|
pankso@15747
|
300
|
pankso@15747
|
301 #
|
pankso@15747
|
302 # Greenish theme:
|
pankso@15747
|
303 #
|
pankso@15747
|
304 #ui_fg_color=#100404
|
pankso@15747
|
305 #ui_main_bg_color=#c8d394
|
pankso@15747
|
306 #ui_text_bg_color=#bdd8b6
|
pankso@15747
|
307 #ui_selection_color=#7c5f42
|
pankso@15747
|
308 #ui_button_highlight_color=#adad70
|
pankso@15747
|
309 #ui_tab_active_bg_color=#b5b679
|
pankso@15747
|
310 #ui_tab_active_fg_color=#b60907
|
pankso@15747
|
311 #ui_tab_bg_color=#cac682
|
pankso@15747
|
312
|
pankso@15747
|
313
|
pankso@15747
|
314 # Size of dillo panel
|
pankso@15747
|
315 # tiny : buttons, location, and progress boxes in one row
|
pankso@15747
|
316 # small : location in one row, buttons + progress boxes in another
|
pankso@15747
|
317 # medium : adds text labels to buttons and boxes
|
pankso@15747
|
318 #panel_size=tiny
|
pankso@2795
|
319 panel_size=small
|
pankso@15747
|
320 #panel_size=medium
|
pankso@2795
|
321
|
pankso@2795
|
322 #small_icons=NO
|
pankso@2795
|
323
|
pankso@2795
|
324 # Here you can choose to hide some widgets of the dillo panel...
|
pankso@2795
|
325 #show_back=YES
|
pankso@2795
|
326 #show_forw=YES
|
pankso@2795
|
327 #show_home=YES
|
pankso@2795
|
328 #show_reload=YES
|
pankso@16375
|
329 show_save=NO
|
pankso@16375
|
330 show_stop=NO
|
pankso@2795
|
331 #show_bookmarks=YES
|
pankso@15747
|
332 #show_tools=YES
|
pankso@2795
|
333 #show_filemenu=YES
|
pankso@2795
|
334 #show_clear_url=YES
|
pankso@16375
|
335 #show_url=YES
|
pankso@2795
|
336 #show_search=YES
|
pankso@16375
|
337 show_help=NO
|
pankso@16375
|
338 show_progress_box=NO
|
pankso@2795
|
339
|
pankso@2795
|
340 # Start dillo with the panels hidden?
|
pankso@2795
|
341 #fullwindow_start=NO
|
pankso@2795
|
342
|
pankso@2795
|
343 # When filling out forms, our default behaviour is to submit on enterpress,
|
pankso@2795
|
344 # but only when there's a single text entry (to avoid incomplete submits).
|
pankso@2795
|
345 # OTOH, if you have to fill out the same form repeatedly, you may find it
|
pankso@2795
|
346 # useful to keep away from the mouse by forcing enter to submit.
|
pankso@2795
|
347 #enterpress_forces_submit=NO
|
pankso@2795
|
348
|
pankso@2795
|
349 # A mouse's middle click over a link opens a new Tab.
|
pankso@2795
|
350 # If you prefer to open a new Window instead, set it to NO.
|
pankso@2795
|
351 #middle_click_opens_new_tab=YES
|
pankso@2795
|
352
|
pankso@15747
|
353 # A mouse's middle click over a tab closes the Tab.
|
pankso@15747
|
354 # With mousewheel mouses, right click feels way better (set to YES).
|
pankso@15747
|
355 #right_click_closes_tab=NO
|
pankso@15747
|
356
|
pankso@15747
|
357 # Mouse middle click by default drives drag-scrolling.
|
pankso@15747
|
358 # To paste an URL into the window instead of scrolling, set it to NO.
|
pankso@15747
|
359 # Note: You could always paste the URL onto the URL box clear button.
|
pankso@15747
|
360 #middle_click_drags_page=YES
|
pankso@15747
|
361
|
pankso@2795
|
362 # Focus follows new Tabs.
|
pankso@2795
|
363 # You can hold SHIFT to temporarily revert this behaviour.
|
pankso@2795
|
364 #focus_new_tab=YES
|
pankso@2795
|
365
|
pankso@15747
|
366 # Ask before quitting Dillo with more than one window or tab open.
|
pankso@15747
|
367 #show_quit_dialog=YES
|
pankso@2795
|
368
|
pankso@2795
|
369 #-------------------------------------------------------------------------
|
pankso@2795
|
370 # DEBUG MESSAGES SECTION
|
pankso@2795
|
371 #-------------------------------------------------------------------------
|
pankso@2795
|
372
|
pankso@2795
|
373 # Soon we should add the "show_debug_messages=NO" option...
|
pankso@2795
|
374
|
pankso@2795
|
375 # Generic messages (mainly for debugging specific parts)
|
pankso@2795
|
376 # Change this to disable them.
|
pankso@2795
|
377 #show_msg=YES
|
pankso@2795
|
378
|
pankso@2795
|
379
|
pankso@2795
|
380 #-------------------------------------------------------------------------
|
pankso@2795
|
381 # HTML BUG MESSAGES SECTION
|
pankso@2795
|
382 #-------------------------------------------------------------------------
|
pankso@2795
|
383
|
pankso@2795
|
384 # Accepted by the W3C validator but "strongly discouraged" by the SPEC.
|
pankso@2795
|
385 # (Such as "TAB character inside <PRE>").
|
pankso@2795
|
386 #show_extra_warnings=NO
|
pankso@2795
|
387
|
pankso@2795
|
388
|
pankso@2795
|
389 # -----------------------------------------------------------------------
|
pankso@2795
|
390 # dillorc ends here.
|