summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-29trim old releases from READMErelease-2_2-rc1corvid
2010-01-29update splash pagecorvid
2010-01-28prepare 2.2 release candidate 1Johannes Hofmann
2010-01-28update user helpJohannes Hofmann
2010-01-28update READMEJohannes Hofmann
2010-01-28mercurial ignore test/cookiescorvid
2010-01-25dpidc usagecorvid
I wanted to print an explanation of what dpidc is.
2010-01-25install-dpi-local try a 'dpidc stop' to stop running dpid.corvid
2010-01-25dpidc exit status 1 on errorcorvid
2010-01-25install-dpi-local cp dpidrccorvid
2010-01-24install-dpi-local strip dpidccorvid
2010-01-24ChangeLogcorvid
2010-01-24dpi send response when setting cookiesJorge Arellano Cid
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-21fix building of new cookies test program on *BSDJohannes Hofmann
2010-01-20more cookies testscorvid
2010-01-20cookies improve clock skew handlingcorvid
2010-01-20cookies test programcorvid
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-18cookies allow Expires attr's value to be quoted.corvid
sourceforge sends cookies this way. It seems that quotes around values are generally to be ignored, i.e., not stripped or anything, but I asked the draft spec author about this case, and he reports that he has fixed his algorithm to allow leading and trailing delimiters around cookie-date. If I/someone eventually does make the timestamp code follow the algorithm more closely, the stripping would no longer need to be done here. As for whether we'd want to continue to use that code for the stricter server_date that we get from the HTTP Date header, I'm not sure at the moment. I've already added one case to it that wouldn't be legal for the header, though...
2010-01-15linkcorvid
2010-01-14fix DISABLE_COOKIES (reported by furaisanjin)corvid
2010-01-14Be careful not to delete domain_cookies while still using it.corvid
And don't leak nodes. I never saw any crashing -- and the problem was already in the code before I got to it -- but I was alerted to the matter when puzzling over why there was another round of searching for domain_cookies near the bottom of Cookies_add_cookie.
2010-01-14handle nameless/valueless cookies in cookies.txtcorvid
2010-01-13cookies: be more robust in rejecting IP addr partial matchescorvid
The code was already such that, even if we accepted 123.45 as a domain for host 1.2.123.45, it wouldn't be sent back to anyone. But it would be easy to make some small change later that would break that, so...
2010-01-13cookies fix ipv6 checkcorvid
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-12don't bother to save expired cookiescorvid
2010-01-11add quirk to reset font properties in tables (fixes e.g. gmail)Johannes Hofmann
2010-01-10cookies update TLDscorvid
2010-01-10cookies doccorvid
2010-01-10cookie handle time overflowcorvid
Jeremy pointed out http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007144.html that time_t could in principle be a floating type. The cookies dpi assumes that it is an integer type.
2010-01-10ChangeLogcorvid
2010-01-10make cookies very chatty for nowcorvid
2010-01-09unnecessary testcorvid
2010-01-09when too many cookies for domain, rm least recently usedcorvid
2010-01-09cookies: a little cleaningcorvid
2010-01-09don't look for Set-Cookie2 headercorvid
2010-01-09cookies use server date to interpret Expires attrcorvid
2010-01-09timestamps a little less strictcorvid
2010-01-09cookies follow draft spec's simple parsingcorvid
2010-01-09cookies follow draft spec for domainscorvid
2010-01-09cookies follow draft spec for pathscorvid
2010-01-09cookies: rm version, comment, comment url, port, Cookie2corvid
2010-01-09rm support for ancient ~/.dillo/cookies filecorvid
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.