summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-11prepare 2.2 releaserelease-2_2Johannes Hofmann
2010-02-10Added tag release-2_2-rc3 for changeset 93e4655f8a92Johannes Hofmann
2010-02-10prepare rc3release-2_2-rc3Johannes Hofmann
2010-02-10call dpid cleanup handler on SIGHUPJohannes Hofmann
Depending on the system dpid can get a SIGHUP on shutdown before it will receive SIGTERM / SIGKILL from init. Make sure we also cleanup in this case so that ~/.dillo/dpid_comm_keys is removed on reboot.
2010-02-09suppress unused parameter warningJohannes Hofmann
This solution was pointed out by corvid and Jorge.
2010-02-08Added tag release-2_2-rc2 for changeset 3cc3dd19e50dJohannes Hofmann
2010-02-08prepare rc2release-2_2-rc2Johannes Hofmann
2010-02-08remove ~/.dillo/dpid_comm_keys on exit of dpidJohannes Hofmann
This avoids that dillo instances connect to stale ports after dpid is no longer running (e.g. after a reboot). This is mainly a problem if the machine is configured to silently ignore connection attempts to unused ports (net.inet.tcp.blackhole=1 on *BSD). http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007247.html
2010-02-04cookies doccorvid
I also wanted to find something to replace the dead junkbusters link, but didn't find anything good.
2010-02-02fix HostConnection_t leakJohannes Hofmann
Found by Jeremy's automatic valgrind logs, pointed out by corvid.
2010-02-02READMEcorvid
2010-02-02decrease cookies chattinesscorvid
2010-02-02check for fgets() return value - avoids a warningJorge Arellano Cid
2010-01-29Added tag release-2_2-rc1 for changeset 0c2299a1362dJohannes Hofmann
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.