# HG changeset patch # User Christophe Lincoln # Date 1388741370 -3600 # Node ID a5485afde222fd43cc2ef8c5abdc2e2948f13e01 # Parent e0611ce967eabdbaa87877f95c6b5f81cb3ce22a Up: dillo (3.0.3) with better integration for JWM flavor diff -r e0611ce967ea -r a5485afde222 dillo/receipt --- a/dillo/receipt Fri Jan 03 00:18:36 2014 +0100 +++ b/dillo/receipt Fri Jan 03 10:29:30 2014 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="dillo" -VERSION="3.0.2" +VERSION="3.0.3" CATEGORY="network" SHORT_DESC="Light and fast web browse using FLTK." MAINTAINER="pankso@slitaz.org" @@ -11,9 +11,8 @@ WGET_URL="http://www.dillo.org/download/$TARBALL" TAGS="browser" -DEPENDS="fltk libpng jpeg zlib openssl xorg-libXi xorg-libXinerama \ -gcc-lib-base" -BUILD_DEPENDS="$DEPENDS fltk-dev libpng-dev jpeg-dev zlib-dev" +DEPENDS="fltk libpng jpeg zlib openssl xorg-libX11 gcc-lib-base" +BUILD_DEPENDS="$DEPENDS fltk-dev libpng-dev jpeg-dev zlib-dev openssl-dev" # Rules to configure and make the package. compile_rules() @@ -22,6 +21,7 @@ ./configure \ --sysconfdir=/etc \ --prefix=/usr \ + --enable-ssl \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install diff -r e0611ce967ea -r a5485afde222 dillo/stuff/dillorc --- a/dillo/stuff/dillorc Fri Jan 03 00:18:36 2014 +0100 +++ b/dillo/stuff/dillorc Fri Jan 03 10:29:30 2014 +0100 @@ -15,9 +15,16 @@ #geometry=780x580 # Change this if you want to have text-only browsing from the start. -# (there's a toggle button near the bug meter to change this on-the-fly) -#load_images=YES +# (While browsing, this can be changed from the tools/settings menu.) +load_images=YES +# Change this if you want to disable loading of CSS stylesheets initially. +# (While browsing, this can be changed from the tools/settings menu.) +load_stylesheets=YES + +# Change this if you want to disable parsing of embedded CSS initially. +# (While browsing, this can be changed from the tools/settings menu.) +parse_embedded_css=YES # Change the buffering scheme for drawing # 0 no double buffering - useful for debugging @@ -32,42 +39,85 @@ # RENDERING SECTION #------------------------------------------------------------------------- -# Fontname for variable width rendering (most of the text). -# - some fonts may slow down rendering. -# - try to tune a fontname/font_factor combination. -# Ex. {helvetica, lucida, times, "new century schoolbook", utopia, ...} -# vw_fontname="new century schoolbook" -# vw_fontname="helvetica" -# vw_fontname="times" -# vw_fontname="Bitstream vera Serif" -# vw_fontname="arial" -#vw_fontname="DejaVu Sans" +# Default fonts: +# +# If FLTK has been configured with Xft enabled (the default), you can use +# scalable fonts such as DejaVu or Liberation (try running +# "fc-list : family | cut -d ',' -f 2 | sort"). +#font_serif="DejaVu Serif" +#font_sans_serif="DejaVu Sans" +#font_cursive="URW Chancery L" +#font_fantasy="DejaVu Sans" +#font_monospace="DejaVu Sans Mono" +# +# Otherwise, use bitmapped fonts like the following (for a list, try running +# "xlsfonts -fn *-iso10646-1 | grep -v -e -0-0 | cut -d - -f 3 | sort | uniq"). +# font_serif="times" +# font_sans_serif="helvetica" +# font_cursive="helvetica" +# font_fantasy="helvetica" +# font_monospace="courier" -# Fontname for fixed width rendering (mainly text quoted with
)
-# fw_fontname=courier
-# fw_fontname="Bitstream Vera Sans Mono"
-# fw_fontname="Andale Mono"
-#fw_fontname="DejaVu Sans Mono"
-
-# All fontsizes are scaled by this value
+# All font sizes are scaled by this value
 # font_factor=1.5
 #font_factor=1.0
 
-# Show tooltip popup for images?
-# Note: We use the "title" attribute and not "alt".
-#       More info at: http://bugzilla.mozilla.org/show_bug.cgi?id=25537
-# *** NOT HOOKED UP YET ***
-#
+# Maximum font size in pixels
+#font_max_size=100
+
+# Minimum font size in pixels
+#font_min_size=6
+
+# Show tooltip popups for UI and for HTML title attributes
 #show_tooltip=YES
 
 # Set this to YES if you want to limit the word wrap width to the viewport
 # width (may be useful for iPAQ)
-# *** NOT HOOKED UP YET ***
-#
 #limit_text_width=NO
 
 
 #-------------------------------------------------------------------------
+#                               PENALTIES
+#-------------------------------------------------------------------------
+
+# Penalties are used to control good and bad break points. The bigger
+# the penalty for a given break point, the less likely the line is
+# broken here. "inf" means that breaking is prohibited, "-inf" means
+# that a line *must* be broken here. (The latter should not be used
+# here, however.) Normal spaces get a penalty of 0. The exact
+# definition can be found in doc/dw-line-breaking.doc.
+
+# Penalties for hyphenation breaks; this covers automatic hyphenation,
+# soft hyphens, and unconditional hyphens. Since hyphenation should
+# rather be avoided, the default values are larger than 0.
+
+# This is used for hyphenation points, when there is no hyphen or dash
+# before:
+#penalty_hyphen = 1
+
+# This is used for hyphenation points, when the line before ends
+# already with a hyphen or a dash. Consequent lines ending with
+# hyphens or dashes should be avoided, so this value is bigger than
+# "penalty_hyphen":
+#penalty_hyphen_2 = 8
+
+# The same for a break right of an em-dash, when there are no spaces
+# surrounding it (as in English). The default values are the same as
+# for hyphens:
+#penalty_em_dash_right = 1
+#penalty_em_dash_right_2 = 8
+
+# Penalty for a break *left* of an em-dash. Since a line ending with
+# an em-dash (and so breaking right of the em-dash) looks better than
+# a line beginning with an em-dash (breaking left of an em-dash), the
+# default value is bigger than "penalty_em_dash_right":
+#penalty_em_dash_left = 8
+
+# Notice that there is no "penalty_em_dash_left_2", since breaking
+# left of an em-dash makes the line *begin*, not *end* with a dash.
+
+
+#-------------------------------------------------------------------------
 #                            PARSING SECTION
 #-------------------------------------------------------------------------
 
@@ -91,15 +141,33 @@
 # home="file:/home/jcid/HomePage/Home.html"
 home="file:/usr/share/webhome/index.html"
 
-# Set the URL used by the web search dialog.
+# Set the URLs used by the web search dialog.
 # "%s" is replaced with the search keywords separated by '+'.
-# search_url="http://search.lycos.com/?query=%s"
-# search_url="http://www.alltheweb.com/search?cat=web&query=%s"
-#search_url="http://www.google.com/search?q=%s"
+# Format: search_url="[