wok-next rev 20761
dillo: up (3.0.5)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jun 05 12:11:44 2018 +0300 (2018-06-05) |
parents | fc15bece1af6 |
children | b20af2ba07a2 |
files | dillo/receipt dillo/stuff/dillo.html dillo/stuff/dillorc dillo/stuff/patches/dillorc.patch dillo/stuff/patches/fltk-1.3.3.u dillo/stuff/patches/series dillo/stuff/webhome/dillo.html |
line diff
1.1 --- a/dillo/receipt Sat Jun 02 17:02:49 2018 +0300 1.2 +++ b/dillo/receipt Tue Jun 05 12:11:44 2018 +0300 1.3 @@ -1,42 +1,36 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="dillo" 1.7 -VERSION="3.0.4" 1.8 +VERSION="3.0.5" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Light and fast web browse using FLTK" 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL3" 1.13 -WEB_SITE="http://www.dillo.org/" 1.14 +WEB_SITE="https://www.dillo.org/" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WGET_URL="http://www.dillo.org/download/$TARBALL" 1.18 +WGET_URL="https://www.dillo.org/download/$TARBALL" 1.19 1.20 -BUILD_DEPENDS="fltk-dev libpng16-dev jpeg-dev zlib-dev openssl-dev \ 1.21 -xorg-libX11-dev" 1.22 +BUILD_DEPENDS="fltk-dev xorg-libX11-dev libjpeg-turbo-dev zlib-dev \ 1.23 +libpng16-dev openssl10-dev" 1.24 1.25 compile_rules() { 1.26 - cp -f $stuff/pixmaps.slitaz.h src/pixmaps.h && 1.27 + cp -f $stuff/pixmaps.slitaz.h src/pixmaps.h 1.28 + 1.29 + export CPPFLAGS="$CPPFLAGS -I/usr/include/openssl-1.0" 1.30 + export LDFLAGS="$LDFLAGS -L/usr/lib/openssl-1.0" 1.31 1.32 ./configure \ 1.33 --enable-ssl \ 1.34 $CONFIGURE_ARGS && 1.35 make && 1.36 - make install 1.37 + make install || return 1 1.38 + 1.39 + install -Dm644 $stuff/dillo.html $install/usr/share/webhome/dillo.html 1.40 } 1.41 1.42 genpkg_rules() { 1.43 - mkdir -p $fs/usr/lib $fs/usr/share 1.44 - cp -a $install/usr/bin $fs/usr 1.45 - cp -a $install/usr/lib/dillo $fs/usr/lib 1.46 - strip -s $fs/usr/lib/dillo/dpi/*/* 1.47 - chmod +x $fs/usr/bin/* 1.48 - # Config files with custom dillorc to have webhome 1.49 - cp -a $install/etc $fs 1.50 - cp -a $stuff/dillorc $fs/etc/dillo 1.51 - cp -a $stuff/webhome $fs/usr/share 1.52 - # Dillo version for user agent string 1.53 - sed -i s"/_dillo_version_/$VERSION/" $fs/etc/dillo/dillorc 1.54 - chown -R root.root $fs 1.55 - DEPENDS="fltk libpng16 jpeg zlib openssl xorg-libX11 gcc-lib-base" 1.56 + copy @std 1.57 + DEPENDS="fltk libjpeg-turbo libpng16 openssl10 xorg-libX11 zlib" 1.58 TAGS="web-browser" 1.59 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/dillo/stuff/dillo.html Tue Jun 05 12:11:44 2018 +0300 2.3 @@ -0,0 +1,50 @@ 2.4 +<!DOCTYPE html> 2.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 2.6 +<head> 2.7 + <title>SliTaz Dillo Home</title> 2.8 + <meta charset="utf-8" /> 2.9 + <link rel="stylesheet" type="text/css" href="style.css" /> 2.10 +</head> 2.11 +<body> 2.12 + 2.13 +<!-- Header --> 2.14 +<div id="header"> 2.15 + <h1>SliTaz Dillo Home</h1> 2.16 +</div> 2.17 + 2.18 +<!-- Content --> 2.19 +<div id="content"> 2.20 + 2.21 +<div class="searchbox"> 2.22 + <form method="get" action="https://duckduckgo.com/"> 2.23 + <p> 2.24 + <input type="text" name="q" size="24" style="width: 70%;" 2.25 + maxlength="255" /> 2.26 + <input type="submit" name="" value="Search" /> 2.27 + <input type="hidden" name="t" value="slitaz" /> 2.28 + </p> 2.29 + </form> 2.30 +</div> 2.31 + 2.32 +<!-- SliTaz Social --> 2.33 +<div id="social"> 2.34 + <p> 2.35 + SliTaz @ 2.36 + <a href="http://twitter.com/slitaz">Twitter</a> 2.37 + <a href="http://www.facebook.com/slitaz">Facebook</a> 2.38 + <a href="http://distrowatch.com/slitaz">Distrowatch</a> 2.39 + <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a> 2.40 + <a href="http://flattr.com/profile/slitaz">Flattr</a> 2.41 + </p> 2.42 + <p> 2.43 + <a href="http://www.slitaz.org/">SliTaz Website</a> 2.44 + - <a href="http://arm.slitaz.org/">SliTaz ARM</a> 2.45 + - <a href="http://www.dillo.org/">Dillo Website</a> 2.46 + </p> 2.47 +</div> 2.48 + 2.49 +<!-- End of content --> 2.50 +</div> 2.51 + 2.52 +</body> 2.53 +</html>
3.1 --- a/dillo/stuff/dillorc Sat Jun 02 17:02:49 2018 +0300 3.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 3.3 @@ -1,402 +0,0 @@ 3.4 -# dillorc 3.5 -# Sample dillo initialization file. 3.6 -# 3.7 -# Lines that start with a '#' are comments. 3.8 -# "#option=..." shows the built-in default. 3.9 -# "# option=..." is an additional example. 3.10 -# "option=..." overrides the built-in value. 3.11 - 3.12 -#------------------------------------------------------------------------- 3.13 -# FIRST SECTION :) 3.14 -#------------------------------------------------------------------------- 3.15 - 3.16 -# Set the desired initial browser size 3.17 -# geometry=650x545+0+20 3.18 -#geometry=780x580 3.19 - 3.20 -# Change this if you want to have text-only browsing from the start. 3.21 -# (While browsing, this can be changed from the tools/settings menu.) 3.22 -load_images=YES 3.23 - 3.24 -# Change this if you want background images to be loaded initially. 3.25 -# (While browsing, this can be changed from the tools/settings menu.) 3.26 -#load_background_images=FALSE 3.27 - 3.28 -# Change this if you want to disable loading of CSS stylesheets initially. 3.29 -# (While browsing, this can be changed from the tools/settings menu.) 3.30 -load_stylesheets=YES 3.31 - 3.32 -# Change this if you want to disable parsing of embedded CSS initially. 3.33 -# (While browsing, this can be changed from the tools/settings menu.) 3.34 -parse_embedded_css=YES 3.35 - 3.36 -# Change the buffering scheme for drawing 3.37 -# 0 no double buffering - useful for debugging 3.38 -# 1 light buffering using a single back buffer for all windows 3.39 -# 2 full fltk-based double buffering for all windows 3.40 -#buffered_drawing=1 3.41 - 3.42 -# Set your default directory for download/save operations 3.43 -#save_dir=/tmp 3.44 - 3.45 -#------------------------------------------------------------------------- 3.46 -# RENDERING SECTION 3.47 -#------------------------------------------------------------------------- 3.48 - 3.49 -# Default fonts: 3.50 -# 3.51 -# If FLTK has been configured with Xft enabled (the default), you can use 3.52 -# scalable fonts such as DejaVu or Liberation (try running 3.53 -# "fc-list : family | cut -d ',' -f 2 | sort"). 3.54 -#font_serif="DejaVu Serif" 3.55 -#font_sans_serif="DejaVu Sans" 3.56 -#font_cursive="URW Chancery L" 3.57 -#font_fantasy="DejaVu Sans" 3.58 -#font_monospace="DejaVu Sans Mono" 3.59 -# 3.60 -# Otherwise, use bitmapped fonts like the following (for a list, try running 3.61 -# "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq"). 3.62 -# font_serif="times" 3.63 -# font_sans_serif="helvetica" 3.64 -# font_cursive="helvetica" 3.65 -# font_fantasy="helvetica" 3.66 -# font_monospace="courier" 3.67 - 3.68 -# All font sizes are scaled by this value 3.69 -# font_factor=1.5 3.70 -#font_factor=1.0 3.71 - 3.72 -# Maximum font size in pixels 3.73 -#font_max_size=100 3.74 - 3.75 -# Minimum font size in pixels 3.76 -#font_min_size=6 3.77 - 3.78 -# Show tooltip popups for UI and for HTML title attributes 3.79 -#show_tooltip=YES 3.80 - 3.81 -# Set this to YES if you want to limit the word wrap width to the viewport 3.82 -# width (may be useful for iPAQ) 3.83 -#limit_text_width=NO 3.84 - 3.85 - 3.86 -#------------------------------------------------------------------------- 3.87 -# PENALTIES 3.88 -#------------------------------------------------------------------------- 3.89 - 3.90 -# Penalties are used to control good and bad break points. The bigger 3.91 -# the penalty for a given break point, the less likely the line is 3.92 -# broken here. "inf" means that breaking is prohibited, "-inf" means 3.93 -# that a line *must* be broken here. (The latter should not be used 3.94 -# here, however.) Normal spaces get a penalty of 0. The exact 3.95 -# definition can be found in doc/dw-line-breaking.doc. 3.96 - 3.97 -# Penalties for hyphenation breaks; this covers automatic hyphenation, 3.98 -# soft hyphens, and unconditional hyphens. Since hyphenation should 3.99 -# rather be avoided, the default values are larger than 0. 3.100 - 3.101 -# This is used for hyphenation points, when there is no hyphen or dash 3.102 -# before: 3.103 -#penalty_hyphen = 1 3.104 - 3.105 -# This is used for hyphenation points, when the line before ends 3.106 -# already with a hyphen or a dash. Consequent lines ending with 3.107 -# hyphens or dashes should be avoided, so this value is bigger than 3.108 -# "penalty_hyphen": 3.109 -#penalty_hyphen_2 = 8 3.110 - 3.111 -# The same for a break right of an em-dash, when there are no spaces 3.112 -# surrounding it (as in English). The default values are the same as 3.113 -# for hyphens: 3.114 -#penalty_em_dash_right = 1 3.115 -#penalty_em_dash_right_2 = 8 3.116 - 3.117 -# Penalty for a break *left* of an em-dash. Since a line ending with 3.118 -# an em-dash (and so breaking right of the em-dash) looks better than 3.119 -# a line beginning with an em-dash (breaking left of an em-dash), the 3.120 -# default value is bigger than "penalty_em_dash_right": 3.121 -#penalty_em_dash_left = 8 3.122 - 3.123 -# Notice that there is no "penalty_em_dash_left_2", since breaking 3.124 -# left of an em-dash makes the line *begin*, not *end* with a dash. 3.125 - 3.126 -# This factor is multiplied with the line height to get the 3.127 -# stretchability of a non-justified line. The larger this factor (and 3.128 -# thus, the stretchability), the less likely the words are hyphenated; 3.129 -# so you can use this value to control hyphenation of non-justified 3.130 -# text. 3.131 -#stretchability_factor=1 3.132 - 3.133 -#------------------------------------------------------------------------- 3.134 -# PARSING SECTION 3.135 -#------------------------------------------------------------------------- 3.136 - 3.137 -# If you prefer more accurate HTML bug diagnosis over better rendering 3.138 -# (page authors and webmasters) set the following to "NO". 3.139 -# 3.140 -#w3c_plus_heuristics=YES 3.141 - 3.142 - 3.143 -#------------------------------------------------------------------------- 3.144 -# NETWORK SECTION 3.145 -#------------------------------------------------------------------------- 3.146 - 3.147 -# Set the start page. 3.148 -# start_page="about:blank" 3.149 -# start_page="http://www.dillo.org" 3.150 -# start_page="file:/home/jcid/custom_page.html" 3.151 -start_page="file:/usr/share/webhome/dillo.html" 3.152 - 3.153 -# Set the home location 3.154 -# home="file:/home/jcid/HomePage/Home.html" 3.155 -home="file:/usr/share/webhome/dillo.html" 3.156 - 3.157 -# Set the URLs used by the web search dialog. 3.158 -# "%s" is replaced with the search keywords separated by '+'. 3.159 -# Format: search_url="[<label> ]<url>" 3.160 -# You can enable multiple search_url strings at once and select from among 3.161 -# them at runtime, with the first being the default. 3.162 -search_url="http://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz" 3.163 -search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go" 3.164 -search_url="Free Dictionary http://www.thefreedictionary.com/%s" 3.165 -search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" 3.166 - 3.167 -# If set, dillo will ask web servers to send pages in this language. 3.168 -# This setting does NOT change dillo's user interface. 3.169 -# Format explained: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 3.170 -# Language-REGION values: www.iana.org/assignments/language-subtag-registry 3.171 -# (by default, no Accept-Language header is sent) 3.172 -# http_language="de" 3.173 -# http_language="pt-BR" 3.174 -# http_language="vi,de-CH,de;q=0.5,th;q=0.3" 3.175 -http_language="en,en_US" 3.176 - 3.177 -# Maximum number of simultaneous TCP connections to a single server or proxy. 3.178 -# http_max_conns=6 3.179 - 3.180 -# Set the proxy information for http. 3.181 -# Note that the http_proxy environment variable overrides this setting. 3.182 -# WARNING: FTP and downloads plugins use wget. To use a proxy with them, 3.183 -# you will need to configure wget accordingly. See 3.184 -# http://www.gnu.org/software/wget/manual/html_node/Proxies.html 3.185 -# http_proxy="http://localhost:8080/" 3.186 -#(by default, no proxy is used) 3.187 - 3.188 -# If you need to provide a user/password pair for the proxy, 3.189 -# set the proxy user name here and Dillo will ask for the password later. 3.190 -# http_proxyuser="joe" 3.191 -#(by default, no proxy is used) 3.192 - 3.193 -# Set the domains to access without proxy 3.194 -# no_proxy = ".hola.com .mynet.cl .hi.de" 3.195 -#no_proxy="localhost 127.0.0.1" 3.196 - 3.197 -# Set the HTTP Referer (sic) header. 3.198 -# Note that there is no option to reveal the page that you came from because it 3.199 -# would endanger your privacy. 'host' and 'path' allow you to pretend that the 3.200 -# link you followed was on the same site that you're going to. 3.201 -# none : Don't send any Referer header at all. 3.202 -# host : Send the requested URI's hostname. 3.203 -# path : Send the requested URI's host and path. 3.204 -#http_referer=host 3.205 - 3.206 -# Set the HTTP User-Agent header. 3.207 -# This can be useful for privacy and for working around servers who think 3.208 -# Dillo is less capable than it really is. However, if you pretend to use a 3.209 -# different browser, servers may send you pages that work with the features 3.210 -# and bugs of that other browser -- or even disallow access in cases like 3.211 -# wget or googlebot. Remember this before submitting bug reports. 3.212 -# 3.213 -# See http://zytrax.com/tech/web/browser_ids.htm for a compilation of strings. 3.214 -# 3.215 -# http_user_agent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0" 3.216 -# http_user_agent="Wget/1.12 (linux-gnu)" 3.217 -#The default is "Dillo/"+current_version_number 3.218 -http_user_agent="Dillo/_dillo_version_ (SliTaz GNU/Linux)" 3.219 - 3.220 -#------------------------------------------------------------------------- 3.221 -# COLORS SECTION 3.222 -#------------------------------------------------------------------------- 3.223 - 3.224 -# Set the page background color 3.225 -# bg_color=gray 3.226 -# bg_color=0xd6d6c0 3.227 -bg_color=white 3.228 - 3.229 -# If your eyes suffer with white backgrounds, change this. 3.230 -allow_white_bg=YES 3.231 - 3.232 -# If allow_white_bg is set to NO, white backgrounds are replaced by 3.233 -# this color. 3.234 -#white_bg_replacement=0xe0e0a3 3.235 - 3.236 -# When set to YES, the page author's visited link color may be overridden 3.237 -# to allow better contrast with text/links/background 3.238 -#contrast_visited_color=YES 3.239 - 3.240 - 3.241 -#------------------------------------------------------------------------- 3.242 -# USER INTERFACE SECTION 3.243 -#------------------------------------------------------------------------- 3.244 - 3.245 -# UI theme 3.246 -# "none" is the default FLTK appearance, which "resembles old Windows...and 3.247 -# old GTK/KDE". 3.248 -# "plastic" "is inspired by the Aqua user interface on Mac OS X". 3.249 -# "gtk+" "is inspired by the Red Hat Bluecurve theme". 3.250 -theme=none 3.251 -#theme=gtk+ 3.252 -#theme=plastic 3.253 - 3.254 -# UI colors 3.255 -# The first four colors map to concepts in the underlying FLTK toolkit. Note 3.256 -# that FLTK may sometimes override colors, generally for contrast and 3.257 -# readability. 3.258 -# 3.259 -#ui_fg_color=black 3.260 -#ui_main_bg_color=silver 3.261 -#ui_text_bg_color=white 3.262 -#ui_selection_color=navy 3.263 -# 3.264 -# Background used when the mouse cursor is over a button. 3.265 -#ui_button_highlight_color=(by default, the main background color, lightened) 3.266 -# 3.267 -# Colors for the current tab. 3.268 -#ui_tab_active_bg_color=(by default, the text background color) 3.269 -#ui_tab_active_fg_color=(by default, the main foreground color) 3.270 -# 3.271 -# Colors for the other tabs. 3.272 -#ui_tab_bg_color=(by default, the main background color) 3.273 -#ui_tab_fg_color=(by default, the main foreground color) 3.274 - 3.275 - 3.276 -# Note to packagers: leaving these variables for the system to guess 3.277 -# gives different results in different environments, so we played it safe 3.278 -# by defining the traditional colors. Please choose the color theme that 3.279 -# better fits your distro. 3.280 - 3.281 -# 3.282 -# SliTaz theme 3.283 -# 3.284 -ui_fg_color=black 3.285 -ui_main_bg_color=#ededed 3.286 -ui_text_bg_color=#d9d4ce 3.287 -ui_selection_color=#d66018 3.288 -ui_button_highlight_color=#a9a9a9 3.289 -ui_tab_active_bg_color=#333333 3.290 -ui_tab_active_fg_color=white 3.291 -ui_tab_bg_color=#dadada 3.292 - 3.293 -# 3.294 -# Gray theme (traditional) 3.295 -# 3.296 -#ui_fg_color=black 3.297 -#ui_main_bg_color=#c6c6c6 3.298 -#ui_text_bg_color=bfdabf 3.299 -#ui_selection_color=#191970 3.300 -#ui_button_highlight_color=#a9a9a9 3.301 -#ui_tab_active_bg_color=#87aca7 3.302 -#ui_tab_active_fg_color=black 3.303 -#ui_tab_bg_color=#b7beb7 3.304 - 3.305 -# 3.306 -# Earthly theme: 3.307 -# 3.308 -#ui_fg_color=#100404 3.309 -#ui_main_bg_color=#c2a47b 3.310 -#ui_text_bg_color=#cdc9a5 3.311 -#ui_selection_color=#763024 3.312 -#ui_tab_active_bg_color=#af4b3f 3.313 -#ui_tab_active_fg_color=white 3.314 -#ui_tab_bg_color=#d2b48c 3.315 - 3.316 -# 3.317 -# Greenish theme: 3.318 -# 3.319 -#ui_fg_color=#100404 3.320 -#ui_main_bg_color=#c8d394 3.321 -#ui_text_bg_color=#bdd8b6 3.322 -#ui_selection_color=#7c5f42 3.323 -#ui_button_highlight_color=#adad70 3.324 -#ui_tab_active_bg_color=#b5b679 3.325 -#ui_tab_active_fg_color=#b60907 3.326 -#ui_tab_bg_color=#cac682 3.327 - 3.328 - 3.329 -# Size of dillo panel 3.330 -# tiny : buttons, location, and progress boxes in one row 3.331 -# small : location in one row, buttons + progress boxes in another 3.332 -# medium : adds text labels to buttons and boxes 3.333 -panel_size=tiny 3.334 -#panel_size=small 3.335 -#panel_size=medium 3.336 - 3.337 -#small_icons=NO 3.338 - 3.339 -# Here you can choose to hide some widgets of the dillo panel... 3.340 -#show_back=YES 3.341 -#show_forw=YES 3.342 -#show_home=YES 3.343 -#show_reload=YES 3.344 -show_save=NO 3.345 -show_stop=NO 3.346 -#show_bookmarks=YES 3.347 -#show_tools=YES 3.348 -#show_filemenu=YES 3.349 -#show_clear_url=YES 3.350 -#show_url=YES 3.351 -#show_search=YES 3.352 -show_help=NO 3.353 -show_progress_box=NO 3.354 - 3.355 -# Start dillo with the panels hidden? 3.356 -#fullwindow_start=NO 3.357 - 3.358 -# When filling out forms, our default behaviour is to submit on enterpress, 3.359 -# but only when there's a single text entry (to avoid incomplete submits). 3.360 -# OTOH, if you have to fill out the same form repeatedly, you may find it 3.361 -# useful to keep away from the mouse by forcing enter to submit. 3.362 -#enterpress_forces_submit=NO 3.363 - 3.364 -# A mouse's middle click over a link opens a new Tab. 3.365 -# If you prefer to open a new Window instead, set it to NO. 3.366 -#middle_click_opens_new_tab=YES 3.367 - 3.368 -# A mouse's middle click over a tab closes the Tab. 3.369 -# With mousewheel mouses, right click feels way better (set to YES). 3.370 -#right_click_closes_tab=NO 3.371 - 3.372 -# Mouse middle click by default drives drag-scrolling. 3.373 -# To paste an URL into the window instead of scrolling, set it to NO. 3.374 -# Note: You could always paste the URL onto the URL box clear button. 3.375 -#middle_click_drags_page=YES 3.376 - 3.377 -# Focus follows new Tabs. 3.378 -# You can hold SHIFT to temporarily revert this behaviour. 3.379 -#focus_new_tab=YES 3.380 - 3.381 -# Ask before quitting Dillo with more than one window or tab open. 3.382 -#show_quit_dialog=YES 3.383 - 3.384 -#------------------------------------------------------------------------- 3.385 -# DEBUG MESSAGES SECTION 3.386 -#------------------------------------------------------------------------- 3.387 - 3.388 -# Soon we should add the "show_debug_messages=NO" option... 3.389 - 3.390 -# Generic messages (mainly for debugging specific parts) 3.391 -# Change this to disable them. 3.392 -#show_msg=YES 3.393 - 3.394 - 3.395 -#------------------------------------------------------------------------- 3.396 -# HTML BUG MESSAGES SECTION 3.397 -#------------------------------------------------------------------------- 3.398 - 3.399 -# Accepted by the W3C validator but "strongly discouraged" by the SPEC. 3.400 -# (Such as "TAB character inside <PRE>"). 3.401 -#show_extra_warnings=NO 3.402 - 3.403 - 3.404 -# ----------------------------------------------------------------------- 3.405 -# dillorc ends here.
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/dillo/stuff/patches/dillorc.patch Tue Jun 05 12:11:44 2018 +0300 4.3 @@ -0,0 +1,103 @@ 4.4 +--- a/dillorc 4.5 ++++ b/dillorc 4.6 +@@ -146,10 +146,12 @@ 4.7 + # start_page="http://www.dillo.org" 4.8 + # start_page="file:/home/jcid/custom_page.html" 4.9 + #start_page="about:splash" 4.10 ++start_page="file:/usr/share/webhome/dillo.html" 4.11 + 4.12 + # Set the home location 4.13 + # home="file:/home/jcid/HomePage/Home.html" 4.14 + #home="http://www.dillo.org/" 4.15 ++home="file:/usr/share/webhome/dillo.html" 4.16 + 4.17 + # Set the URLs used by the web search dialog. 4.18 + # "%s" is replaced with the search keywords separated by '+'. 4.19 +@@ -157,7 +159,7 @@ 4.20 + # You can enable multiple search_url strings at once and select from among 4.21 + # them at runtime, with the first being the default. 4.22 + # (the prefix serves to search from the Location Bar. e.g. "dd dillo image") 4.23 +-search_url="dd DuckDuckGo (https) https://duckduckgo.com/lite/?kp=-1&q=%s" 4.24 ++search_url="dd DuckDuckGo (https) https://duckduckgo.com/lite/?kp=-1&q=%s&t=slitaz" 4.25 + search_url="Wikipedia http://www.wikipedia.org/w/index.php?search=%s&go=Go" 4.26 + search_url="Free Dictionary http://www.thefreedictionary.com/%s" 4.27 + search_url="Startpage (https) https://www.startpage.com/do/search?query=%s" 4.28 +@@ -222,6 +224,7 @@ 4.29 + # bg_color=gray 4.30 + # bg_color=0xd6d6c0 4.31 + #bg_color=0xdcd1ba 4.32 ++bg_color=white 4.33 + 4.34 + # If your eyes suffer with white backgrounds, change this. 4.35 + #allow_white_bg=YES 4.36 +@@ -281,14 +284,14 @@ 4.37 + # 4.38 + # Gray theme (traditional) 4.39 + # 4.40 +-ui_fg_color=black 4.41 +-ui_main_bg_color=#c6c6c6 4.42 +-ui_text_bg_color=#bfdabf 4.43 +-ui_selection_color=#191970 4.44 +-ui_button_highlight_color=#a9a9a9 4.45 +-ui_tab_active_bg_color=#87aca7 4.46 +-ui_tab_active_fg_color=black 4.47 +-ui_tab_bg_color=#b7beb7 4.48 ++#ui_fg_color=black 4.49 ++#ui_main_bg_color=#c6c6c6 4.50 ++#ui_text_bg_color=#bfdabf 4.51 ++#ui_selection_color=#191970 4.52 ++#ui_button_highlight_color=#a9a9a9 4.53 ++#ui_tab_active_bg_color=#87aca7 4.54 ++#ui_tab_active_fg_color=black 4.55 ++#ui_tab_bg_color=#b7beb7 4.56 + 4.57 + # 4.58 + # Earthly theme: 4.59 +@@ -313,7 +316,19 @@ 4.60 + #ui_tab_active_fg_color=#b60907 4.61 + #ui_tab_bg_color=#cac682 4.62 + 4.63 ++# 4.64 ++# SliTaz theme 4.65 ++# 4.66 ++ui_fg_color=black 4.67 ++ui_main_bg_color=#ededed 4.68 ++ui_text_bg_color=#d9d4ce 4.69 ++ui_selection_color=#d66018 4.70 ++ui_button_highlight_color=#a9a9a9 4.71 ++ui_tab_active_bg_color=#333333 4.72 ++ui_tab_active_fg_color=white 4.73 ++ui_tab_bg_color=#dadada 4.74 + 4.75 ++ 4.76 + # Size of dillo panel 4.77 + # tiny : buttons, location, and progress boxes in one row 4.78 + # small : location in one row, buttons + progress boxes in another 4.79 +@@ -321,6 +336,7 @@ 4.80 + # panel_size=tiny 4.81 + # panel_size=small 4.82 + #panel_size=medium 4.83 ++panel_size=tiny 4.84 + 4.85 + #small_icons=NO 4.86 + 4.87 +@@ -330,7 +346,9 @@ 4.88 + #show_home=YES 4.89 + #show_reload=YES 4.90 + #show_save=YES 4.91 ++show_save=NO 4.92 + #show_stop=YES 4.93 ++show_stop=NO 4.94 + #show_bookmarks=YES 4.95 + #show_tools=YES 4.96 + #show_filemenu=YES 4.97 +@@ -338,7 +356,9 @@ 4.98 + #show_url=YES 4.99 + #show_search=YES 4.100 + #show_help=YES 4.101 ++show_help=NO 4.102 + #show_progress_box=YES 4.103 ++show_progress_box=NO 4.104 + 4.105 + # Show tooltip popups for the UI 4.106 + #show_ui_tooltip=YES
5.1 --- a/dillo/stuff/patches/fltk-1.3.3.u Sat Jun 02 17:02:49 2018 +0300 5.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 5.3 @@ -1,22 +0,0 @@ 5.4 ---- dw/fltkviewbase.cc 5.5 -+++ dw/fltkviewbase.cc 5.6 -@@ -27,8 +27,6 @@ 5.7 - #include <stdio.h> 5.8 - #include "../lout/msg.h" 5.9 - 5.10 --extern Fl_Widget* fl_oldfocus; 5.11 -- 5.12 - using namespace lout::object; 5.13 - using namespace lout::container::typed; 5.14 - 5.15 -@@ -364,7 +362,9 @@ 5.16 - } 5.17 - return 1; 5.18 - case FL_UNFOCUS: 5.19 -- focused_child = fl_oldfocus; 5.20 -+ //focused_child = fl_oldfocus; 5.21 -+ for (Fl_Widget *p = this; p; p = p->parent()) 5.22 -+ focused_child = p; 5.23 - return 0; 5.24 - case FL_KEYBOARD: 5.25 - if (Fl::event_key() == FL_Tab)
6.1 --- a/dillo/stuff/patches/series Sat Jun 02 17:02:49 2018 +0300 6.2 +++ b/dillo/stuff/patches/series Tue Jun 05 12:11:44 2018 +0300 6.3 @@ -1,1 +1,1 @@ 6.4 --p0|fltk-1.3.3.u 6.5 +dillorc.patch
7.1 --- a/dillo/stuff/webhome/dillo.html Sat Jun 02 17:02:49 2018 +0300 7.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 7.3 @@ -1,50 +0,0 @@ 7.4 -<!DOCTYPE html> 7.5 -<html xmlns="http://www.w3.org/1999/xhtml"> 7.6 -<head> 7.7 - <title>SliTaz Dillo Home</title> 7.8 - <meta charset="utf-8" /> 7.9 - <link rel="stylesheet" type="text/css" href="style.css" /> 7.10 -</head> 7.11 -<body> 7.12 - 7.13 -<!-- Header --> 7.14 -<div id="header"> 7.15 - <h1>SliTaz Dillo Home</h1> 7.16 -</div> 7.17 - 7.18 -<!-- Content --> 7.19 -<div id="content"> 7.20 - 7.21 -<div class="searchbox"> 7.22 - <form method="get" action="https://duckduckgo.com/"> 7.23 - <p> 7.24 - <input type="text" name="q" size="24" style="width: 70%;" 7.25 - maxlength="255" /> 7.26 - <input type="submit" name="" value="Search" /> 7.27 - <input type="hidden" name="t" value="slitaz" /> 7.28 - </p> 7.29 - </form> 7.30 -</div> 7.31 - 7.32 -<!-- SliTaz Social --> 7.33 -<div id="social"> 7.34 - <p> 7.35 - SliTaz @ 7.36 - <a href="http://twitter.com/slitaz">Twitter</a> 7.37 - <a href="http://www.facebook.com/slitaz">Facebook</a> 7.38 - <a href="http://distrowatch.com/slitaz">Distrowatch</a> 7.39 - <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a> 7.40 - <a href="http://flattr.com/profile/slitaz">Flattr</a> 7.41 - </p> 7.42 - <p> 7.43 - <a href="http://www.slitaz.org/">SliTaz Website</a> 7.44 - - <a href="http://arm.slitaz.org/">SliTaz ARM</a> 7.45 - - <a href="http://www.dillo.org/">Dillo Website</a> 7.46 - </p> 7.47 -</div> 7.48 - 7.49 -<!-- End of content --> 7.50 -</div> 7.51 - 7.52 -</body> 7.53 -</html>