wok-current diff dillo/stuff/dillorc @ rev 16022
syslinux/iso2exe: add zimage support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 06 19:57:41 2014 +0000 (2014-03-06) |
parents | 1ac0ba1a2795 |
children | c93c5dacf687 |
line diff
1.1 --- a/dillo/stuff/dillorc Tue Apr 28 15:38:14 2009 +0200 1.2 +++ b/dillo/stuff/dillorc Thu Mar 06 19:57:41 2014 +0000 1.3 @@ -15,9 +15,16 @@ 1.4 #geometry=780x580 1.5 1.6 # Change this if you want to have text-only browsing from the start. 1.7 -# (there's a toggle button near the bug meter to change this on-the-fly) 1.8 -#load_images=YES 1.9 +# (While browsing, this can be changed from the tools/settings menu.) 1.10 +load_images=YES 1.11 1.12 +# Change this if you want to disable loading of CSS stylesheets initially. 1.13 +# (While browsing, this can be changed from the tools/settings menu.) 1.14 +load_stylesheets=YES 1.15 + 1.16 +# Change this if you want to disable parsing of embedded CSS initially. 1.17 +# (While browsing, this can be changed from the tools/settings menu.) 1.18 +parse_embedded_css=YES 1.19 1.20 # Change the buffering scheme for drawing 1.21 # 0 no double buffering - useful for debugging 1.22 @@ -32,42 +39,85 @@ 1.23 # RENDERING SECTION 1.24 #------------------------------------------------------------------------- 1.25 1.26 -# Fontname for variable width rendering (most of the text). 1.27 -# - some fonts may slow down rendering. 1.28 -# - try to tune a fontname/font_factor combination. 1.29 -# Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...} 1.30 -# vw_fontname="new century schoolbook" 1.31 -# vw_fontname="helvetica" 1.32 -# vw_fontname="times" 1.33 -# vw_fontname="Bitstream vera Serif" 1.34 -# vw_fontname="arial" 1.35 -#vw_fontname="DejaVu Sans" 1.36 +# Default fonts: 1.37 +# 1.38 +# If FLTK has been configured with Xft enabled (the default), you can use 1.39 +# scalable fonts such as DejaVu or Liberation (try running 1.40 +# "fc-list : family | cut -d ',' -f 2 | sort"). 1.41 +#font_serif="DejaVu Serif" 1.42 +#font_sans_serif="DejaVu Sans" 1.43 +#font_cursive="URW Chancery L" 1.44 +#font_fantasy="DejaVu Sans" 1.45 +#font_monospace="DejaVu Sans Mono" 1.46 +# 1.47 +# Otherwise, use bitmapped fonts like the following (for a list, try running 1.48 +# "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq"). 1.49 +# font_serif="times" 1.50 +# font_sans_serif="helvetica" 1.51 +# font_cursive="helvetica" 1.52 +# font_fantasy="helvetica" 1.53 +# font_monospace="courier" 1.54 1.55 -# Fontname for fixed width rendering (mainly text quoted with <pre>) 1.56 -# fw_fontname=courier 1.57 -# fw_fontname="Bitstream Vera Sans Mono" 1.58 -# fw_fontname="Andale Mono" 1.59 -#fw_fontname="DejaVu Sans Mono" 1.60 - 1.61 -# All fontsizes are scaled by this value 1.62 +# All font sizes are scaled by this value 1.63 # font_factor=1.5 1.64 #font_factor=1.0 1.65 1.66 -# Show tooltip popup for images? 1.67 -# Note: We use the "title" attribute and not "alt". 1.68 -# More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537 1.69 -# *** NOT HOOKED UP YET *** 1.70 -# 1.71 +# Maximum font size in pixels 1.72 +#font_max_size=100 1.73 + 1.74 +# Minimum font size in pixels 1.75 +#font_min_size=6 1.76 + 1.77 +# Show tooltip popups for UI and for HTML title attributes 1.78 #show_tooltip=YES 1.79 1.80 # Set this to YES if you want to limit the word wrap width to the viewport 1.81 # width (may be useful for iPAQ) 1.82 -# *** NOT HOOKED UP YET *** 1.83 -# 1.84 #limit_text_width=NO 1.85 1.86 1.87 #------------------------------------------------------------------------- 1.88 +# PENALTIES 1.89 +#------------------------------------------------------------------------- 1.90 + 1.91 +# Penalties are used to control good and bad break points. The bigger 1.92 +# the penalty for a given break point, the less likely the line is 1.93 +# broken here. "inf" means that breaking is prohibited, "-inf" means 1.94 +# that a line *must* be broken here. (The latter should not be used 1.95 +# here, however.) Normal spaces get a penalty of 0. The exact 1.96 +# definition can be found in doc/dw-line-breaking.doc. 1.97 + 1.98 +# Penalties for hyphenation breaks; this covers automatic hyphenation, 1.99 +# soft hyphens, and unconditional hyphens. Since hyphenation should 1.100 +# rather be avoided, the default values are larger than 0. 1.101 + 1.102 +# This is used for hyphenation points, when there is no hyphen or dash 1.103 +# before: 1.104 +#penalty_hyphen = 1 1.105 + 1.106 +# This is used for hyphenation points, when the line before ends 1.107 +# already with a hyphen or a dash. Consequent lines ending with 1.108 +# hyphens or dashes should be avoided, so this value is bigger than 1.109 +# "penalty_hyphen": 1.110 +#penalty_hyphen_2 = 8 1.111 + 1.112 +# The same for a break right of an em-dash, when there are no spaces 1.113 +# surrounding it (as in English). The default values are the same as 1.114 +# for hyphens: 1.115 +#penalty_em_dash_right = 1 1.116 +#penalty_em_dash_right_2 = 8 1.117 + 1.118 +# Penalty for a break *left* of an em-dash. Since a line ending with 1.119 +# an em-dash (and so breaking right of the em-dash) looks better than 1.120 +# a line beginning with an em-dash (breaking left of an em-dash), the 1.121 +# default value is bigger than "penalty_em_dash_right": 1.122 +#penalty_em_dash_left = 8 1.123 + 1.124 +# Notice that there is no "penalty_em_dash_left_2", since breaking 1.125 +# left of an em-dash makes the line *begin*, not *end* with a dash. 1.126 + 1.127 + 1.128 +#------------------------------------------------------------------------- 1.129 # PARSING SECTION 1.130 #------------------------------------------------------------------------- 1.131 1.132 @@ -91,15 +141,33 @@ 1.133 # home="file:/home/jcid/HomePage/Home.html" 1.134 home="file:/usr/share/webhome/index.html" 1.135 1.136 -# Set the URL used by the web search dialog. 1.137 +# Set the URLs used by the web search dialog. 1.138 # "%s" is replaced with the search keywords separated by '+'. 1.139 -# search_url="http://search.lycos.com/?query=%s" 1.140 -# search_url="http://www.alltheweb.com/search?cat=web&query=%s" 1.141 -#search_url="http://www.google.com/search?q=%s" 1.142 +# Format: search_url="[<label> ]<url>" 1.143 +# You can enable multiple search_url strings at once and select from among 1.144 +# them at runtime, with the first being the default. 1.145 +search_url="http://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz" 1.146 +search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go" 1.147 +search_url="Free Dictionary http://www.thefreedictionary.com/%s" 1.148 +search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" 1.149 + 1.150 +# If set, dillo will ask web servers to send pages in this language. 1.151 +# This setting does NOT change dillo's user interface. 1.152 +# Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 1.153 +# Language-REGION values: www.iana.org/assignments/language-subtag-registry 1.154 +# (by default, no Accept-Language header is sent) 1.155 +# http_language="de" 1.156 +# http_language="pt-BR" 1.157 +# http_language="vi,de-CH,de;q=0.5,th;q=0.3" 1.158 + 1.159 +# Maximum number of simultaneous TCP connections to a single server or proxy. 1.160 +# http_max_conns=6 1.161 1.162 # Set the proxy information for http. 1.163 -# WARNING: dillo uses wget for ftp and https. To use a proxy for those 1.164 -# protocols, you will need to configure wget. 1.165 +# Note that the http_proxy environment variable overrides this setting. 1.166 +# WARNING: FTP and downloads plugins use wget. To use a proxy with them, 1.167 +# you will need to configure wget accordingly. See 1.168 +# http://www.gnu.org/software/wget/manual/html_node/Proxies.html 1.169 # http_proxy="http://localhost:8080/" 1.170 #(by default, no proxy is used) 1.171 1.172 @@ -110,7 +178,7 @@ 1.173 1.174 # Set the domains to access without proxy 1.175 # no_proxy = ".hola.com .mynet.cl .hi.de" 1.176 -#(by default, no proxy is used) 1.177 +#no_proxy="localhost 127.0.0.1" 1.178 1.179 # Set the HTTP Referer (sic) header. 1.180 # Note that there is no option to reveal the page that you came from because it 1.181 @@ -121,53 +189,131 @@ 1.182 # path : Send the requested URI's host and path. 1.183 #http_referer=host 1.184 1.185 +# Set the HTTP User-Agent header. 1.186 +# This can be useful for privacy and for working around servers who think 1.187 +# Dillo is less capable than it really is. However, if you pretend to use a 1.188 +# different browser, servers may send you pages that work with the features 1.189 +# and bugs of that other browser -- or even disallow access in cases like 1.190 +# wget or googlebot. Remember this before submitting bug reports. 1.191 +# 1.192 +# See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings. 1.193 +# 1.194 +# http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0" 1.195 +# http_user_agent="Wget/1.12 (linux-gnu)" 1.196 +#The default is "Dillo/"+current_version_number 1.197 1.198 #------------------------------------------------------------------------- 1.199 # COLORS SECTION 1.200 #------------------------------------------------------------------------- 1.201 1.202 -# Here we can use the HTML color names or C syntax. 1.203 - 1.204 -# Set the background color 1.205 +# Set the page background color 1.206 # bg_color=gray 1.207 # bg_color=0xd6d6c0 1.208 -bg_color=ffffff 1.209 - 1.210 -# Set the text color 1.211 -#text_color=black 1.212 - 1.213 -# Set the link color 1.214 -#link_color=blue 1.215 +#bg_color=0xdcd1ba 1.216 1.217 # If your eyes suffer with white backgrounds, change this. 1.218 #allow_white_bg=YES 1.219 1.220 -# Use the same colors with all documents? 1.221 -#force_my_colors=NO 1.222 - 1.223 # When set to YES, the page author's visited link color may be overridden 1.224 # to allow better contrast with text/links/background 1.225 #contrast_visited_color=YES 1.226 1.227 -# Colors for widgets inside forms. 1.228 -# YES = toolkit's default colors, NO = use page's text and background color. 1.229 -# ("NO" looks less traditional but more stylish). 1.230 -standard_widget_colors=YES 1.231 - 1.232 1.233 #------------------------------------------------------------------------- 1.234 # USER INTERFACE SECTION 1.235 #------------------------------------------------------------------------- 1.236 1.237 -# Size of dillo panel (used to enlarge the browsing area) 1.238 -# tiny : recommended for iPAQ (with small_icons) 1.239 -# small : very nice! (it's "medium" without icon titles) 1.240 -# medium : nice! 1.241 -# large : Traditional 1.242 -# panel_size=tiny 1.243 -# panel_size=small 1.244 -# panel_size=medium 1.245 +# UI theme 1.246 +# "none" is the default FLTK appearance, which "resembles old Windows...and 1.247 +# old GTK/KDE". 1.248 +# "plastic" "is inspired by the Aqua user interface on Mac OS X". 1.249 +# "gtk+" "is inspired by the Red Hat Bluecurve theme". 1.250 +#theme=none 1.251 +theme=gtk+ 1.252 +#theme=plastic 1.253 + 1.254 +# UI colors 1.255 +# The first four colors map to concepts in the underlying FLTK toolkit. Note 1.256 +# that FLTK may sometimes override colors, generally for contrast and 1.257 +# readability. 1.258 +# 1.259 +#ui_fg_color=black 1.260 +#ui_main_bg_color=silver 1.261 +#ui_text_bg_color=white 1.262 +#ui_selection_color=navy 1.263 +# 1.264 +# Background used when the mouse cursor is over a button. 1.265 +#ui_button_highlight_color=(by default, the main background color, lightened) 1.266 +# 1.267 +# Colors for the current tab. 1.268 +#ui_tab_active_bg_color=(by default, the text background color) 1.269 +#ui_tab_active_fg_color=(by default, the main foreground color) 1.270 +# 1.271 +# Colors for the other tabs. 1.272 +#ui_tab_bg_color=(by default, the main background color) 1.273 +#ui_tab_fg_color=(by default, the main foreground color) 1.274 + 1.275 + 1.276 +# Note to packagers: leaving these variables for the system to guess 1.277 +# gives different results in different environments, so we played it safe 1.278 +# by defining the traditional colors. Please choose the color theme that 1.279 +# better fits your distro. 1.280 + 1.281 +# 1.282 +# SliTaz theme 1.283 +# 1.284 +ui_fg_color=black 1.285 +ui_main_bg_color=#ededed 1.286 +ui_text_bg_color=#d9d4ce 1.287 +ui_selection_color=#d66018 1.288 +ui_button_highlight_color=#a9a9a9 1.289 +ui_tab_active_bg_color=#333333 1.290 +ui_tab_active_fg_color=white 1.291 +ui_tab_bg_color=#dadada 1.292 + 1.293 +# 1.294 +# Gray theme (traditional) 1.295 +# 1.296 +#ui_fg_color=black 1.297 +#ui_main_bg_color=#c6c6c6 1.298 +#ui_text_bg_color=bfdabf 1.299 +#ui_selection_color=#191970 1.300 +#ui_button_highlight_color=#a9a9a9 1.301 +#ui_tab_active_bg_color=#87aca7 1.302 +#ui_tab_active_fg_color=black 1.303 +#ui_tab_bg_color=#b7beb7 1.304 + 1.305 +# 1.306 +# Earthly theme: 1.307 +# 1.308 +#ui_fg_color=#100404 1.309 +#ui_main_bg_color=#c2a47b 1.310 +#ui_text_bg_color=#cdc9a5 1.311 +#ui_selection_color=#763024 1.312 +#ui_tab_active_bg_color=#af4b3f 1.313 +#ui_tab_active_fg_color=white 1.314 +#ui_tab_bg_color=#d2b48c 1.315 + 1.316 +# 1.317 +# Greenish theme: 1.318 +# 1.319 +#ui_fg_color=#100404 1.320 +#ui_main_bg_color=#c8d394 1.321 +#ui_text_bg_color=#bdd8b6 1.322 +#ui_selection_color=#7c5f42 1.323 +#ui_button_highlight_color=#adad70 1.324 +#ui_tab_active_bg_color=#b5b679 1.325 +#ui_tab_active_fg_color=#b60907 1.326 +#ui_tab_bg_color=#cac682 1.327 + 1.328 + 1.329 +# Size of dillo panel 1.330 +# tiny : buttons, location, and progress boxes in one row 1.331 +# small : location in one row, buttons + progress boxes in another 1.332 +# medium : adds text labels to buttons and boxes 1.333 +#panel_size=tiny 1.334 panel_size=small 1.335 +#panel_size=medium 1.336 1.337 #small_icons=NO 1.338 1.339 @@ -179,10 +325,11 @@ 1.340 #show_save=YES 1.341 #show_stop=YES 1.342 #show_bookmarks=YES 1.343 +#show_tools=YES 1.344 #show_filemenu=YES 1.345 #show_clear_url=YES 1.346 -#show_url=YES 1.347 #show_search=YES 1.348 +#show_help=YES 1.349 #show_progress_box=YES 1.350 1.351 # Start dillo with the panels hidden? 1.352 @@ -194,19 +341,25 @@ 1.353 # useful to keep away from the mouse by forcing enter to submit. 1.354 #enterpress_forces_submit=NO 1.355 1.356 -# Some forms lack a submit button, and dillo can generate a custom one 1.357 -# internally. Unfortunately there's no guarantee for it to work. :( 1.358 -# (my experience is that forms that lack a submit rely on Javascript) 1.359 -#generate_submit=NO 1.360 - 1.361 # A mouse's middle click over a link opens a new Tab. 1.362 # If you prefer to open a new Window instead, set it to NO. 1.363 #middle_click_opens_new_tab=YES 1.364 1.365 +# A mouse's middle click over a tab closes the Tab. 1.366 +# With mousewheel mouses, right click feels way better (set to YES). 1.367 +#right_click_closes_tab=NO 1.368 + 1.369 +# Mouse middle click by default drives drag-scrolling. 1.370 +# To paste an URL into the window instead of scrolling, set it to NO. 1.371 +# Note: You could always paste the URL onto the URL box clear button. 1.372 +#middle_click_drags_page=YES 1.373 + 1.374 # Focus follows new Tabs. 1.375 # You can hold SHIFT to temporarily revert this behaviour. 1.376 #focus_new_tab=YES 1.377 1.378 +# Ask before quitting Dillo with more than one window or tab open. 1.379 +#show_quit_dialog=YES 1.380 1.381 #------------------------------------------------------------------------- 1.382 # DEBUG MESSAGES SECTION