wok-next diff dillo/stuff/dillorc @ rev 11998
c_icap: Fix receipt
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Mar 04 22:37:40 2012 +0100 (2012-03-04) |
parents | |
children | a5485afde222 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dillo/stuff/dillorc Sun Mar 04 22:37:40 2012 +0100 1.3 @@ -0,0 +1,232 @@ 1.4 +# dillorc 1.5 +# Sample dillo initialization file. 1.6 +# 1.7 +# Lines that start with a '#' are comments. 1.8 +# "#option=..." shows the built-in default. 1.9 +# "# option=..." is an additional example. 1.10 +# "option=..." overrides the built-in value. 1.11 + 1.12 +#------------------------------------------------------------------------- 1.13 +# FIRST SECTION :) 1.14 +#------------------------------------------------------------------------- 1.15 + 1.16 +# Set the desired initial browser size 1.17 +# geometry=650x545+0+20 1.18 +#geometry=780x580 1.19 + 1.20 +# Change this if you want to have text-only browsing from the start. 1.21 +# (there's a toggle button near the bug meter to change this on-the-fly) 1.22 +#load_images=YES 1.23 + 1.24 + 1.25 +# Change the buffering scheme for drawing 1.26 +# 0 no double buffering - useful for debugging 1.27 +# 1 light buffering using a single back buffer for all windows 1.28 +# 2 full fltk-based double buffering for all windows 1.29 +#buffered_drawing=1 1.30 + 1.31 +# Set your default directory for download/save operations 1.32 +#save_dir=/tmp 1.33 + 1.34 +#------------------------------------------------------------------------- 1.35 +# RENDERING SECTION 1.36 +#------------------------------------------------------------------------- 1.37 + 1.38 +# Fontname for variable width rendering (most of the text). 1.39 +# - some fonts may slow down rendering. 1.40 +# - try to tune a fontname/font_factor combination. 1.41 +# Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...} 1.42 +# vw_fontname="new century schoolbook" 1.43 +# vw_fontname="helvetica" 1.44 +# vw_fontname="times" 1.45 +# vw_fontname="Bitstream vera Serif" 1.46 +# vw_fontname="arial" 1.47 +#vw_fontname="DejaVu Sans" 1.48 + 1.49 +# Fontname for fixed width rendering (mainly text quoted with <pre>) 1.50 +# fw_fontname=courier 1.51 +# fw_fontname="Bitstream Vera Sans Mono" 1.52 +# fw_fontname="Andale Mono" 1.53 +#fw_fontname="DejaVu Sans Mono" 1.54 + 1.55 +# All fontsizes are scaled by this value 1.56 +# font_factor=1.5 1.57 +#font_factor=1.0 1.58 + 1.59 +# Show tooltip popup for images? 1.60 +# Note: We use the "title" attribute and not "alt". 1.61 +# More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537 1.62 +# *** NOT HOOKED UP YET *** 1.63 +# 1.64 +#show_tooltip=YES 1.65 + 1.66 +# Set this to YES if you want to limit the word wrap width to the viewport 1.67 +# width (may be useful for iPAQ) 1.68 +# *** NOT HOOKED UP YET *** 1.69 +# 1.70 +#limit_text_width=NO 1.71 + 1.72 + 1.73 +#------------------------------------------------------------------------- 1.74 +# PARSING SECTION 1.75 +#------------------------------------------------------------------------- 1.76 + 1.77 +# If you prefer more accurate HTML bug diagnosis over better rendering 1.78 +# (page authors and webmasters) set the following to "NO". 1.79 +# 1.80 +#w3c_plus_heuristics=YES 1.81 + 1.82 + 1.83 +#------------------------------------------------------------------------- 1.84 +# NETWORK SECTION 1.85 +#------------------------------------------------------------------------- 1.86 + 1.87 +# Set the start page. 1.88 +# start_page="about:blank" 1.89 +# start_page="http://www.dillo.org" 1.90 +# start_page="file:/home/jcid/custom_page.html" 1.91 +start_page="file:/usr/share/webhome/index.html" 1.92 + 1.93 +# Set the home location 1.94 +# home="file:/home/jcid/HomePage/Home.html" 1.95 +home="file:/usr/share/webhome/index.html" 1.96 + 1.97 +# Set the URL used by the web search dialog. 1.98 +# "%s" is replaced with the search keywords separated by '+'. 1.99 +# search_url="http://search.lycos.com/?query=%s" 1.100 +# search_url="http://www.alltheweb.com/search?cat=web&query=%s" 1.101 +#search_url="http://www.google.com/search?q=%s" 1.102 + 1.103 +# Set the proxy information for http. 1.104 +# WARNING: dillo uses wget for ftp and https. To use a proxy for those 1.105 +# protocols, you will need to configure wget. 1.106 +# http_proxy="http://localhost:8080/" 1.107 +#(by default, no proxy is used) 1.108 + 1.109 +# If you need to provide a user/password pair for the proxy, 1.110 +# set the proxy user name here and Dillo will ask for the password later. 1.111 +# http_proxyuser="joe" 1.112 +#(by default, no proxy is used) 1.113 + 1.114 +# Set the domains to access without proxy 1.115 +# no_proxy = ".hola.com .mynet.cl .hi.de" 1.116 +#(by default, no proxy is used) 1.117 + 1.118 +# Set the HTTP Referer (sic) header. 1.119 +# Note that there is no option to reveal the page that you came from because it 1.120 +# would endanger your privacy. 'host' and 'path' allow you to pretend that the 1.121 +# link you followed was on the same site that you're going to. 1.122 +# none : Don't send any Referer header at all. 1.123 +# host : Send the requested URI's hostname. 1.124 +# path : Send the requested URI's host and path. 1.125 +#http_referer=host 1.126 + 1.127 + 1.128 +#------------------------------------------------------------------------- 1.129 +# COLORS SECTION 1.130 +#------------------------------------------------------------------------- 1.131 + 1.132 +# Here we can use the HTML color names or C syntax. 1.133 + 1.134 +# Set the background color 1.135 +# bg_color=gray 1.136 +# bg_color=0xd6d6c0 1.137 +bg_color=ffffff 1.138 + 1.139 +# Set the text color 1.140 +#text_color=black 1.141 + 1.142 +# Set the link color 1.143 +#link_color=blue 1.144 + 1.145 +# If your eyes suffer with white backgrounds, change this. 1.146 +#allow_white_bg=YES 1.147 + 1.148 +# Use the same colors with all documents? 1.149 +#force_my_colors=NO 1.150 + 1.151 +# When set to YES, the page author's visited link color may be overridden 1.152 +# to allow better contrast with text/links/background 1.153 +#contrast_visited_color=YES 1.154 + 1.155 +# Colors for widgets inside forms. 1.156 +# YES = toolkit's default colors, NO = use page's text and background color. 1.157 +# ("NO" looks less traditional but more stylish). 1.158 +standard_widget_colors=YES 1.159 + 1.160 + 1.161 +#------------------------------------------------------------------------- 1.162 +# USER INTERFACE SECTION 1.163 +#------------------------------------------------------------------------- 1.164 + 1.165 +# Size of dillo panel (used to enlarge the browsing area) 1.166 +# tiny : recommended for iPAQ (with small_icons) 1.167 +# small : very nice! (it's "medium" without icon titles) 1.168 +# medium : nice! 1.169 +# large : Traditional 1.170 +# panel_size=tiny 1.171 +# panel_size=small 1.172 +# panel_size=medium 1.173 +panel_size=small 1.174 + 1.175 +#small_icons=NO 1.176 + 1.177 +# Here you can choose to hide some widgets of the dillo panel... 1.178 +#show_back=YES 1.179 +#show_forw=YES 1.180 +#show_home=YES 1.181 +#show_reload=YES 1.182 +#show_save=YES 1.183 +#show_stop=YES 1.184 +#show_bookmarks=YES 1.185 +#show_filemenu=YES 1.186 +#show_clear_url=YES 1.187 +#show_url=YES 1.188 +#show_search=YES 1.189 +#show_progress_box=YES 1.190 + 1.191 +# Start dillo with the panels hidden? 1.192 +#fullwindow_start=NO 1.193 + 1.194 +# When filling out forms, our default behaviour is to submit on enterpress, 1.195 +# but only when there's a single text entry (to avoid incomplete submits). 1.196 +# OTOH, if you have to fill out the same form repeatedly, you may find it 1.197 +# useful to keep away from the mouse by forcing enter to submit. 1.198 +#enterpress_forces_submit=NO 1.199 + 1.200 +# Some forms lack a submit button, and dillo can generate a custom one 1.201 +# internally. Unfortunately there's no guarantee for it to work. :( 1.202 +# (my experience is that forms that lack a submit rely on Javascript) 1.203 +#generate_submit=NO 1.204 + 1.205 +# A mouse's middle click over a link opens a new Tab. 1.206 +# If you prefer to open a new Window instead, set it to NO. 1.207 +#middle_click_opens_new_tab=YES 1.208 + 1.209 +# Focus follows new Tabs. 1.210 +# You can hold SHIFT to temporarily revert this behaviour. 1.211 +#focus_new_tab=YES 1.212 + 1.213 + 1.214 +#------------------------------------------------------------------------- 1.215 +# DEBUG MESSAGES SECTION 1.216 +#------------------------------------------------------------------------- 1.217 + 1.218 +# Soon we should add the "show_debug_messages=NO" option... 1.219 + 1.220 +# Generic messages (mainly for debugging specific parts) 1.221 +# Change this to disable them. 1.222 +#show_msg=YES 1.223 + 1.224 + 1.225 +#------------------------------------------------------------------------- 1.226 +# HTML BUG MESSAGES SECTION 1.227 +#------------------------------------------------------------------------- 1.228 + 1.229 +# Accepted by the W3C validator but "strongly discouraged" by the SPEC. 1.230 +# (Such as "TAB character inside <PRE>"). 1.231 +#show_extra_warnings=NO 1.232 + 1.233 + 1.234 +# ----------------------------------------------------------------------- 1.235 +# dillorc ends here.