wok annotate dillo/stuff/dillorc @ rev 25669

Up lapack (3.12.0), less (633), libarchive (3.7.2), liblouis (3.28.0), libmicrohttpd (1.0.1), libpng (1.6.43), libssh (0.10.6), libtasn1 (4.19.0), libtirpc (1.3.4), libvpx (1.14.0), libwebp (1.3.2), logrotate (3.21.0), lua (5.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 25 16:11:20 2024 +0000 (4 months ago)
parents b822f50cc0d1
children
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@16449 123 # This factor is multiplied with the line height to get the
pankso@16449 124 # stretchability of a non-justified line. The larger this factor (and
pankso@16449 125 # thus, the stretchability), the less likely the words are hyphenated;
pankso@16449 126 # so you can use this value to control hyphenation of non-justified
pankso@16449 127 # text.
pankso@16449 128 #stretchability_factor=1
pankso@15747 129
pankso@15747 130 #-------------------------------------------------------------------------
pankso@2795 131 # PARSING SECTION
pankso@2795 132 #-------------------------------------------------------------------------
pankso@2795 133
pankso@2795 134 # If you prefer more accurate HTML bug diagnosis over better rendering
pankso@2795 135 # (page authors and webmasters) set the following to "NO".
pankso@2795 136 #
pankso@2795 137 #w3c_plus_heuristics=YES
pankso@2795 138
pankso@2795 139
pankso@2795 140 #-------------------------------------------------------------------------
pankso@2795 141 # NETWORK SECTION
pankso@2795 142 #-------------------------------------------------------------------------
pankso@2795 143
pankso@2795 144 # Set the start page.
pankso@2795 145 # start_page="about:blank"
pankso@2795 146 # start_page="http://www.dillo.org"
pankso@2795 147 # start_page="file:/home/jcid/custom_page.html"
pankso@16377 148 start_page="file:/usr/share/webhome/dillo.html"
pankso@2795 149
pankso@2795 150 # Set the home location
pankso@2795 151 # home="file:/home/jcid/HomePage/Home.html"
pankso@16377 152 home="file:/usr/share/webhome/dillo.html"
pankso@2795 153
pankso@15747 154 # Set the URLs used by the web search dialog.
pankso@2795 155 # "%s" is replaced with the search keywords separated by '+'.
pankso@15747 156 # Format: search_url="[<label> ]<url>"
pankso@15747 157 # You can enable multiple search_url strings at once and select from among
pankso@15747 158 # them at runtime, with the first being the default.
pankso@15747 159 search_url="http://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz"
pankso@15747 160 search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go"
pankso@15747 161 search_url="Free Dictionary http://www.thefreedictionary.com/%s"
pankso@15747 162 search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
pankso@15747 163
pankso@15747 164 # If set, dillo will ask web servers to send pages in this language.
pankso@15747 165 # This setting does NOT change dillo's user interface.
pankso@15747 166 # Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
pankso@15747 167 # Language-REGION values: www.iana.org/assignments/language-subtag-registry
pankso@15747 168 # (by default, no Accept-Language header is sent)
pankso@15747 169 # http_language="de"
pankso@15747 170 # http_language="pt-BR"
pankso@15747 171 # http_language="vi,de-CH,de;q=0.5,th;q=0.3"
pankso@16449 172 http_language="en,en_US"
pankso@15747 173
pankso@15747 174 # Maximum number of simultaneous TCP connections to a single server or proxy.
pankso@15747 175 # http_max_conns=6
pankso@2795 176
pankso@2795 177 # Set the proxy information for http.
pankso@15747 178 # Note that the http_proxy environment variable overrides this setting.
pankso@15747 179 # WARNING: FTP and downloads plugins use wget. To use a proxy with them,
pankso@15747 180 # you will need to configure wget accordingly. See
pankso@15747 181 # http://www.gnu.org/software/wget/manual/html_node/Proxies.html
pankso@2795 182 # http_proxy="http://localhost:8080/"
pankso@2795 183 #(by default, no proxy is used)
pankso@2795 184
pankso@2795 185 # If you need to provide a user/password pair for the proxy,
pankso@2795 186 # set the proxy user name here and Dillo will ask for the password later.
pankso@2795 187 # http_proxyuser="joe"
pankso@2795 188 #(by default, no proxy is used)
pankso@2795 189
pankso@2795 190 # Set the domains to access without proxy
pankso@2795 191 # no_proxy = ".hola.com .mynet.cl .hi.de"
pankso@15747 192 #no_proxy="localhost 127.0.0.1"
pankso@2795 193
pankso@2795 194 # Set the HTTP Referer (sic) header.
pankso@2795 195 # Note that there is no option to reveal the page that you came from because it
pankso@2795 196 # would endanger your privacy. 'host' and 'path' allow you to pretend that the
pankso@2795 197 # link you followed was on the same site that you're going to.
pankso@2795 198 # none : Don't send any Referer header at all.
pankso@2795 199 # host : Send the requested URI's hostname.
pankso@2795 200 # path : Send the requested URI's host and path.
pankso@2795 201 #http_referer=host
pankso@2795 202
pankso@15747 203 # Set the HTTP User-Agent header.
pankso@15747 204 # This can be useful for privacy and for working around servers who think
pankso@15747 205 # Dillo is less capable than it really is. However, if you pretend to use a
pankso@15747 206 # different browser, servers may send you pages that work with the features
pankso@15747 207 # and bugs of that other browser -- or even disallow access in cases like
pankso@15747 208 # wget or googlebot. Remember this before submitting bug reports.
pankso@15747 209 #
pankso@15747 210 # See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings.
pankso@15747 211 #
pankso@15747 212 # http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0"
pankso@15747 213 # http_user_agent="Wget/1.12 (linux-gnu)"
pankso@15747 214 #The default is "Dillo/"+current_version_number
pankso@16449 215 http_user_agent="Dillo/_dillo_version_ (SliTaz GNU/Linux)"
pankso@2795 216
pankso@2795 217 #-------------------------------------------------------------------------
pankso@2795 218 # COLORS SECTION
pankso@2795 219 #-------------------------------------------------------------------------
pankso@2795 220
pankso@15747 221 # Set the page background color
pankso@2795 222 # bg_color=gray
pankso@2795 223 # bg_color=0xd6d6c0
pankso@16375 224 bg_color=white
pankso@2795 225
pankso@2795 226 # If your eyes suffer with white backgrounds, change this.
pankso@16375 227 allow_white_bg=YES
pankso@2795 228
pankso@16449 229 # If allow_white_bg is set to NO, white backgrounds are replaced by
pankso@16449 230 # this color.
pankso@16449 231 #white_bg_replacement=0xe0e0a3
pankso@16449 232
pankso@2795 233 # When set to YES, the page author's visited link color may be overridden
pankso@2795 234 # to allow better contrast with text/links/background
pankso@2795 235 #contrast_visited_color=YES
pankso@2795 236
pankso@2795 237
pankso@2795 238 #-------------------------------------------------------------------------
pankso@2795 239 # USER INTERFACE SECTION
pankso@2795 240 #-------------------------------------------------------------------------
pankso@2795 241
pankso@15747 242 # UI theme
pankso@15747 243 # "none" is the default FLTK appearance, which "resembles old Windows...and
pankso@15747 244 # old GTK/KDE".
pankso@15747 245 # "plastic" "is inspired by the Aqua user interface on Mac OS X".
pankso@15747 246 # "gtk+" "is inspired by the Red Hat Bluecurve theme".
pankso@16375 247 theme=none
pankso@16375 248 #theme=gtk+
pankso@15747 249 #theme=plastic
pankso@15747 250
pankso@15747 251 # UI colors
pankso@15747 252 # The first four colors map to concepts in the underlying FLTK toolkit. Note
pankso@15747 253 # that FLTK may sometimes override colors, generally for contrast and
pankso@15747 254 # readability.
pankso@15747 255 #
pankso@15747 256 #ui_fg_color=black
pankso@15747 257 #ui_main_bg_color=silver
pankso@15747 258 #ui_text_bg_color=white
pankso@15747 259 #ui_selection_color=navy
pankso@15747 260 #
pankso@15747 261 # Background used when the mouse cursor is over a button.
pankso@15747 262 #ui_button_highlight_color=(by default, the main background color, lightened)
pankso@15747 263 #
pankso@15747 264 # Colors for the current tab.
pankso@15747 265 #ui_tab_active_bg_color=(by default, the text background color)
pankso@15747 266 #ui_tab_active_fg_color=(by default, the main foreground color)
pankso@15747 267 #
pankso@15747 268 # Colors for the other tabs.
pankso@15747 269 #ui_tab_bg_color=(by default, the main background color)
pankso@15747 270 #ui_tab_fg_color=(by default, the main foreground color)
pankso@15747 271
pankso@15747 272
pankso@15747 273 # Note to packagers: leaving these variables for the system to guess
pankso@15747 274 # gives different results in different environments, so we played it safe
pankso@15747 275 # by defining the traditional colors. Please choose the color theme that
pankso@15747 276 # better fits your distro.
pankso@15747 277
pankso@15747 278 #
pankso@15747 279 # SliTaz theme
pankso@15747 280 #
pankso@15747 281 ui_fg_color=black
pankso@15747 282 ui_main_bg_color=#ededed
pankso@15747 283 ui_text_bg_color=#d9d4ce
pankso@15747 284 ui_selection_color=#d66018
pankso@15747 285 ui_button_highlight_color=#a9a9a9
pankso@15747 286 ui_tab_active_bg_color=#333333
pankso@15747 287 ui_tab_active_fg_color=white
pankso@15747 288 ui_tab_bg_color=#dadada
pankso@15747 289
pankso@15747 290 #
pankso@15747 291 # Gray theme (traditional)
pankso@15747 292 #
pankso@15747 293 #ui_fg_color=black
pankso@15747 294 #ui_main_bg_color=#c6c6c6
pankso@15747 295 #ui_text_bg_color=bfdabf
pankso@15747 296 #ui_selection_color=#191970
pankso@15747 297 #ui_button_highlight_color=#a9a9a9
pankso@15747 298 #ui_tab_active_bg_color=#87aca7
pankso@15747 299 #ui_tab_active_fg_color=black
pankso@15747 300 #ui_tab_bg_color=#b7beb7
pankso@15747 301
pankso@15747 302 #
pankso@15747 303 # Earthly theme:
pankso@15747 304 #
pankso@15747 305 #ui_fg_color=#100404
pankso@15747 306 #ui_main_bg_color=#c2a47b
pankso@15747 307 #ui_text_bg_color=#cdc9a5
pankso@15747 308 #ui_selection_color=#763024
pankso@15747 309 #ui_tab_active_bg_color=#af4b3f
pankso@15747 310 #ui_tab_active_fg_color=white
pankso@15747 311 #ui_tab_bg_color=#d2b48c
pankso@15747 312
pankso@15747 313 #
pankso@15747 314 # Greenish theme:
pankso@15747 315 #
pankso@15747 316 #ui_fg_color=#100404
pankso@15747 317 #ui_main_bg_color=#c8d394
pankso@15747 318 #ui_text_bg_color=#bdd8b6
pankso@15747 319 #ui_selection_color=#7c5f42
pankso@15747 320 #ui_button_highlight_color=#adad70
pankso@15747 321 #ui_tab_active_bg_color=#b5b679
pankso@15747 322 #ui_tab_active_fg_color=#b60907
pankso@15747 323 #ui_tab_bg_color=#cac682
pankso@15747 324
pankso@15747 325
pankso@15747 326 # Size of dillo panel
pankso@15747 327 # tiny : buttons, location, and progress boxes in one row
pankso@15747 328 # small : location in one row, buttons + progress boxes in another
pankso@15747 329 # medium : adds text labels to buttons and boxes
pankso@16449 330 panel_size=tiny
pankso@16449 331 #panel_size=small
pankso@15747 332 #panel_size=medium
pankso@2795 333
pankso@2795 334 #small_icons=NO
pankso@2795 335
pankso@2795 336 # Here you can choose to hide some widgets of the dillo panel...
pankso@2795 337 #show_back=YES
pankso@2795 338 #show_forw=YES
pankso@2795 339 #show_home=YES
pankso@2795 340 #show_reload=YES
pankso@16375 341 show_save=NO
pankso@16375 342 show_stop=NO
pankso@2795 343 #show_bookmarks=YES
pankso@15747 344 #show_tools=YES
pankso@2795 345 #show_filemenu=YES
pankso@2795 346 #show_clear_url=YES
pankso@16375 347 #show_url=YES
pankso@2795 348 #show_search=YES
pankso@16375 349 show_help=NO
pankso@16375 350 show_progress_box=NO
pankso@2795 351
pankso@2795 352 # Start dillo with the panels hidden?
pankso@2795 353 #fullwindow_start=NO
pankso@2795 354
pankso@2795 355 # When filling out forms, our default behaviour is to submit on enterpress,
pankso@2795 356 # but only when there's a single text entry (to avoid incomplete submits).
pankso@2795 357 # OTOH, if you have to fill out the same form repeatedly, you may find it
pankso@2795 358 # useful to keep away from the mouse by forcing enter to submit.
pankso@2795 359 #enterpress_forces_submit=NO
pankso@2795 360
pankso@2795 361 # A mouse's middle click over a link opens a new Tab.
pankso@2795 362 # If you prefer to open a new Window instead, set it to NO.
pankso@2795 363 #middle_click_opens_new_tab=YES
pankso@2795 364
pankso@15747 365 # A mouse's middle click over a tab closes the Tab.
pankso@15747 366 # With mousewheel mouses, right click feels way better (set to YES).
pankso@15747 367 #right_click_closes_tab=NO
pankso@15747 368
pankso@15747 369 # Mouse middle click by default drives drag-scrolling.
pankso@15747 370 # To paste an URL into the window instead of scrolling, set it to NO.
pankso@15747 371 # Note: You could always paste the URL onto the URL box clear button.
pankso@15747 372 #middle_click_drags_page=YES
pankso@15747 373
pankso@2795 374 # Focus follows new Tabs.
pankso@2795 375 # You can hold SHIFT to temporarily revert this behaviour.
pankso@2795 376 #focus_new_tab=YES
pankso@2795 377
pankso@15747 378 # Ask before quitting Dillo with more than one window or tab open.
pankso@15747 379 #show_quit_dialog=YES
pankso@2795 380
pankso@2795 381 #-------------------------------------------------------------------------
pankso@2795 382 # DEBUG MESSAGES SECTION
pankso@2795 383 #-------------------------------------------------------------------------
pankso@2795 384
pankso@2795 385 # Soon we should add the "show_debug_messages=NO" option...
pankso@2795 386
pankso@2795 387 # Generic messages (mainly for debugging specific parts)
pankso@2795 388 # Change this to disable them.
pankso@2795 389 #show_msg=YES
pankso@2795 390
pankso@2795 391
pankso@2795 392 #-------------------------------------------------------------------------
pankso@2795 393 # HTML BUG MESSAGES SECTION
pankso@2795 394 #-------------------------------------------------------------------------
pankso@2795 395
pankso@2795 396 # Accepted by the W3C validator but "strongly discouraged" by the SPEC.
pankso@2795 397 # (Such as "TAB character inside <PRE>").
pankso@2795 398 #show_extra_warnings=NO
pankso@2795 399
pankso@2795 400
pankso@2795 401 # -----------------------------------------------------------------------
pankso@2795 402 # dillorc ends here.