summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-02-02fix HostConnection_t leakJohannes Hofmann
Found by Jeremy's automatic valgrind logs, pointed out by corvid.
2010-01-29update splash pagecorvid
2010-01-24limit the number of simultaneous connectionsJohannes Hofmann
The number of simultaneous connections to a single server is now limited by prefs.http_max_conns (default 6). This avoids opening hundreds of connections on pages with many images (BUG 685). This commit is partly based on a prototype by Jorge Arellano Cid.
2010-01-18Added a help button. It tries a local help file then dillo.org's one.corvid, jcid
2010-01-18mergeJorge Arellano Cid
2010-01-18Changed the default background color when allow_white_bg=NO (part 2)Jorge Arellano Cid
2010-01-14fix DISABLE_COOKIES (reported by furaisanjin)corvid
2010-01-13use TCP_NODELAY for DPI communicationJohannes Hofmann
2010-01-12backout: That way would make no_proxy complicated.corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007167.html
2010-01-12If http_proxy pref set, but env var not set, then set env var (for wget).corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-December/007131.html
2010-01-11add quirk to reset font properties in tables (fixes e.g. gmail)Johannes Hofmann
2010-01-09don't look for Set-Cookie2 headercorvid
2010-01-09cookies use server date to interpret Expires attrcorvid
2010-01-09cookies: rm version, comment, comment url, port, Cookie2corvid
2010-01-07make Doctree a non-virtual classJohannes Hofmann
Doctree now is a proper class with it's own implementation. StyleEngine no longer needs to provide the Doctree interface itself. This hopefully make the code easier to understand and should also be a bit faster as no virtual methods are involved.
2010-01-07also try bindir when looking for dpidcorvid
2009-12-20recognize text-{top,bottom} as vertical-align valuescorvid
2009-12-19mergeJohannes Hofmann
2009-12-19fix CSS_SHORTHAND_DIRECTIONS case in CssParserJohannes Hofmann
* Don't modify type parameter in tokenMatchesProperty() if there is no match. * Use correct type for each of the values parsed in a CSS_SHORTHAND_DIRECTIONS-style declaration.
2009-12-18Changed the default background color when allow_white_bg=NOJorge Arellano Cid
2009-12-18mergeJorge Arellano Cid
2009-12-18support border-width: thin | medium | thickJohannes Hofmann
2009-12-17focus main on enterJohannes Hofmann
submitted by furaisanjin <furaisanjin@gmail.com>
2009-12-09remove DISPLAY_LASTJohannes Hofmann
2009-12-08add DISPLAY_NONEJohannes Hofmann
2009-12-08add support for CSS property list-style-positionJohannes Hofmann
2009-12-04add dummy word for empty lines in plain.ccJohannes Hofmann
2009-12-02set style.display in StyleEngineJohannes Hofmann
2009-11-29respect UTF-8 when splitting long lines in plain.cc (noticed by corvid)Johannes Hofmann
When splitting long lines in plain text to avoid X11 coordinate overflows we need to make sure that multibyte UTF-8 chars are not split. Additionally combining chars like accents should stay together with their base char.
2009-11-27use a_UIcmd_open_url() instead of a_Nav_push() in dillo.ccJohannes Hofmann
2009-11-27no longer include nav.h from form.ccJohannes Hofmann
2009-11-27garbage collect now unused a_Nav_push_nw()Johannes Hofmann
2009-11-27adjust focus handling with new tabs and windows (suggested by furaisanjin)Johannes Hofmann
When opening a new BrowserWindow (tab or real window) we focus Location if we don't yet have an URL, main otherwise.
2009-11-27fix nested <ul> handling in user agent styleJohannes Hofmann
Originally I hoped that <ul> elements would be nested like this: <ul> <li>foo</li> <ul> <li>bar</li> </ul> </ul> in which case we could use ul > ul. But instead it seems to be common to use: <ul> <li>foo</li> <li> <ul> <li>bar</li> </ul> </li> </ul> The child selector ('>') is slightly more efficient than the general descendant (' ') selector, but it doesn't seem to matter much anyway.
2009-11-22split up long lines in plain.cc to avoid X11 coordinate overflowsJohannes Hofmann
2009-11-21trim the labels of the stylesheet menuJeremy Henty
2009-11-20warn when preferred font(s) not foundcorvid
2009-11-20don't loop on unterminated CSS commentsJohannes Hofmann
2009-11-20Set a_Nav_reload() behind a timeout (fixes a race condition)Jorge Arellano Cid
Note: the timeout lets CCC operations end before making the request.
2009-11-19ignore XML comment markers in CSSJohannes Hofmann
2009-11-19enable font face setting via <font> elementJohannes Hofmann
2009-11-17commentsJohannes Hofmann
2009-11-17properly handle comma separated lists of font names in CSSJohannes Hofmann
2009-11-16DilloLinkImage -> DilloHtmlImagecorvid
2009-11-15mergeJohannes Hofmann
2009-11-15use first font name in comma separated list in StyleEngineJohannes Hofmann
This is just a bandaid until we find a way to test whether a given font exists on the system.
2009-11-15properly parse comma separated list of font-family names in CSS parserJohannes Hofmann
2009-11-11use macrocorvid
2009-11-11unnecessary includecorvid
2009-11-11functions needn't be publicly visiblecorvid