]> git.donarmstrong.com Git - x_base.git/blob - .dillo/dillorc
remove disk; use blank for down
[x_base.git] / .dillo / dillorc
1 # dillorc
2 # Sample dillo initialization file.
3 # Copy this file to ~/.dillo/dillorc and edit to your taste.
4 # Lines that start with a '#' are comments.
5
6
7 #-------------------------------------------------------------------------
8 #                             FIRST SECTION                             :)
9 #-------------------------------------------------------------------------
10
11 # Set the desired initial browser size
12 geometry=640x550
13
14 # Dicache is where the Decompressed Images are cached (not the original ones).
15 # If you have a lot of memory and a slow CPU, use YES, otherwise use NO
16 use_dicache=NO
17
18
19 #-------------------------------------------------------------------------
20 #                           RENDERING SECTION
21 #-------------------------------------------------------------------------
22
23 # Fontname for variable width rendering (most of the text).
24 #   - some fonts may slow down rendering, some others not!
25 #   - try to tune a fontname/font_factor combination.
26 # Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...}
27 vw_fontname=helvetica
28
29 # Fontname for fixed width rendering (mainly <pre> quoted text)
30 fw_fontname=courier
31
32 # All fontsizes are scaled by this value (default is 1.0)
33 font_factor=1.2
34
35 # If you prefer oblique over italic fonts, uncoment next line
36 #use_oblique=YES
37
38 # Show tooltip popup for images?
39 # Note: We use the "title" attribute and not "alt".
40 #       More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537
41 show_tooltip=YES
42
43 # Set this to YES, if you want to limit the word wrap width to the vieport
44 # width (may be useful for iPAQ)
45 limit_text_width=NO
46
47
48 #-------------------------------------------------------------------------
49 #                            PARSING SECTION
50 #-------------------------------------------------------------------------
51
52 # If you prefer more accurate HTML bug diagnose, over better rendering
53 # (page authors and webmasters) set the following to "NO".
54 #
55 w3c_plus_heuristics=YES
56
57
58 #-------------------------------------------------------------------------
59 #                            NETWORK SECTION
60 #-------------------------------------------------------------------------
61
62 # Set the start page.
63 # Uncomment if you want to override the default start page.
64 start_page=""
65
66 # Set the home location
67 #home="http://www.dillo.org/"
68
69 # Set search url to use with the search dialog.
70 # %s is replaced with urlencoded keywords, and %% by '%'.
71 search_url="http://www.google.com/search?q=%s"
72 #search_url="http://search.lycos.com/default.asp?query=%s"
73 #search_url="http://www.alltheweb.com/search?cat=web&query=%s"
74
75 # Set the proxy information for http
76 # If this is not set then the http_proxy env variable will be used.
77 #http_proxy=http://localhost:8080/
78
79 # if you need to provide a  user/password pair for the proxy,
80 # set the proxy user name here and Dillo will ask for the password later.
81 #http_proxyuser="joe"
82
83 # When using a proxy, this sets the domains to access without proxy.
84 # (separated with a single space -- see examples below)
85 #no_proxy = ".mynet.com"
86 #no_proxy = ".mynet.com .other.net .foo.bar.org"
87
88
89 #-------------------------------------------------------------------------
90 #                            COLORS SECTION
91 #-------------------------------------------------------------------------
92
93 # Here we can use the HTML (standard and extended) or C syntax.
94
95 # Set the background color
96 # bg_color=gray
97 # bg_color=0xd6d6c0
98 bg_color=0xdcd1ba
99
100 # Set the text color
101 text_color=black
102
103 # Set the link color
104 link_color=blue
105
106 # If your eyes suffer with white backgrounds, or you have headaches after
107 # lengthy computer sessions, and you don't need high contrast to see sharply,
108 # uncomment next line (it'll use 'bg_color' instead).   -- It works!
109 #allow_white_bg=NO
110
111 # Use the same colors with all documents?
112 force_my_colors=NO
113
114 # When set to YES, visited links will always have a contrasting color,
115 # independent of the page author's setting.
116 contrast_visited_color=YES
117
118 #-------------------------------------------------------------------------
119 #                        USER INTERFACE SECTION
120 #-------------------------------------------------------------------------
121
122 # Size of dillo panel (used to enlarge the browsing area)
123 # tiny   :  recommended for iPAQ (with small_icons)
124 # small  :  very nice! (it's "medium" without icon titles)
125 # medium :  nice!
126 # large  :  Traditional
127 panel_size=small
128 small_icons=NO
129
130 # Here you can choose to hide some widgets of the dillo panel...
131 #show_back=NO
132 #show_forw=NO
133 #show_home=NO   
134 #show_reload=NO
135 #show_save=NO
136 #show_stop=NO
137 #show_bookmarks=NO
138 #show_menubar=NO
139 #show_clear_url=NO
140 #show_url=NO
141 #show_search=NO
142 #show_progress_box=NO
143
144 # Start dillo windows with a hidden panel?
145 fullwindow_start=NO
146
147 # Enabling this will restrain OpenUrl and FindText, but may be required
148 # for the ION window manager.
149 transient_dialogs=NO
150
151 # When filling forms, our default behaviour is to submit on enterpress,
152 # but only when there's a single text entry (to avoid incomplete submits).
153 # OTOH, if you have to fill the same form lots of times, you may find
154 # useful to keep away from the mouse by forcing enter to submit.
155 enterpress_forces_submit=NO
156
157 # Some forms lack a submit button, and dillo can generate a custom one
158 # internally. Unfortunately there's no guarantee for it to work. :(
159 # (my experience is that forms that lack a submit rely on Javascript)
160 generate_submit=NO
161
162 #-------------------------------------------------------------------------
163 #                        DEBUG MESSAGES SECTION
164 #-------------------------------------------------------------------------
165
166 # Generic messsages (mainly for debugging specific parts)
167 # Uncomment the following line to disable them.
168 #show_msg=NO
169
170 # Soon we'll add the "show_debug_messages=NO" option...
171
172 #-------------------------------------------------------------------------
173 #                        HTML BUG MESSAGES SECTION
174 #-------------------------------------------------------------------------
175
176 # Accepted by the W3C validator but "strongly discouraged" by the SPEC.
177 # (As "TAB character inside <PRE>").
178 #show_extra_warnings=YES
179
180
181 # -----------------------------------------------------------------------
182 # dillorc ends here.