Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-11 | prepare 2.2 releaserelease-2_2 | Johannes Hofmann | |
2010-02-02 | fix HostConnection_t leak | Johannes Hofmann | |
Found by Jeremy's automatic valgrind logs, pointed out by corvid. | |||
2010-01-29 | update splash page | corvid | |
2010-01-24 | limit the number of simultaneous connections | Johannes 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-18 | Added a help button. It tries a local help file then dillo.org's one. | corvid, jcid | |
2010-01-18 | merge | Jorge Arellano Cid | |
2010-01-18 | Changed the default background color when allow_white_bg=NO (part 2) | Jorge Arellano Cid | |
2010-01-14 | fix DISABLE_COOKIES (reported by furaisanjin) | corvid | |
2010-01-13 | use TCP_NODELAY for DPI communication | Johannes Hofmann | |
2010-01-12 | backout: That way would make no_proxy complicated. | corvid | |
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007167.html | |||
2010-01-12 | If 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-11 | add quirk to reset font properties in tables (fixes e.g. gmail) | Johannes Hofmann | |
2010-01-09 | don't look for Set-Cookie2 header | corvid | |
2010-01-09 | cookies use server date to interpret Expires attr | corvid | |
2010-01-09 | cookies: rm version, comment, comment url, port, Cookie2 | corvid | |
2010-01-07 | make Doctree a non-virtual class | Johannes 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-07 | also try bindir when looking for dpid | corvid | |
2009-12-20 | recognize text-{top,bottom} as vertical-align values | corvid | |
2009-12-19 | merge | Johannes Hofmann | |
2009-12-19 | fix CSS_SHORTHAND_DIRECTIONS case in CssParser | Johannes 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-18 | Changed the default background color when allow_white_bg=NO | Jorge Arellano Cid | |
2009-12-18 | merge | Jorge Arellano Cid | |
2009-12-18 | support border-width: thin | medium | thick | Johannes Hofmann | |
2009-12-17 | focus main on enter | Johannes Hofmann | |
submitted by furaisanjin <furaisanjin@gmail.com> | |||
2009-12-09 | remove DISPLAY_LAST | Johannes Hofmann | |
2009-12-08 | add DISPLAY_NONE | Johannes Hofmann | |
2009-12-08 | add support for CSS property list-style-position | Johannes Hofmann | |
2009-12-04 | add dummy word for empty lines in plain.cc | Johannes Hofmann | |
2009-12-02 | set style.display in StyleEngine | Johannes Hofmann | |
2009-11-29 | respect 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-27 | use a_UIcmd_open_url() instead of a_Nav_push() in dillo.cc | Johannes Hofmann | |
2009-11-27 | no longer include nav.h from form.cc | Johannes Hofmann | |
2009-11-27 | garbage collect now unused a_Nav_push_nw() | Johannes Hofmann | |
2009-11-27 | adjust 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-27 | fix nested <ul> handling in user agent style | Johannes 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-22 | split up long lines in plain.cc to avoid X11 coordinate overflows | Johannes Hofmann | |
2009-11-21 | trim the labels of the stylesheet menu | Jeremy Henty | |
2009-11-20 | warn when preferred font(s) not found | corvid | |
2009-11-20 | don't loop on unterminated CSS comments | Johannes Hofmann | |
2009-11-20 | Set 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-19 | ignore XML comment markers in CSS | Johannes Hofmann | |
2009-11-19 | enable font face setting via <font> element | Johannes Hofmann | |
2009-11-17 | comments | Johannes Hofmann | |
2009-11-17 | properly handle comma separated lists of font names in CSS | Johannes Hofmann | |
2009-11-16 | DilloLinkImage -> DilloHtmlImage | corvid | |
2009-11-15 | merge | Johannes Hofmann | |
2009-11-15 | use first font name in comma separated list in StyleEngine | Johannes Hofmann | |
This is just a bandaid until we find a way to test whether a given font exists on the system. | |||
2009-11-15 | properly parse comma separated list of font-family names in CSS parser | Johannes Hofmann | |
2009-11-11 | use macro | corvid | |
2009-11-11 | unnecessary include | corvid | |