aboutsummaryrefslogtreecommitdiff
path: root/src/cache.c
AgeCommit message (Collapse)Author
2010-01-09cookies use server date to interpret Expires attrcorvid
2009-11-11functions needn't be publicly visiblecorvid
2009-11-09Minor fix for 3f1501ae35c4 (only remove cache entries upon OfferDownload)Jorge Arellano Cid
2009-11-01ftp dpi: fixed download offer, streamed transfer, added HTML feedback.Jorge Arellano Cid
Now it behaves as HTTP. Also fixed a bug in dillo with lingering cache entries (when the file transfer was already done at abort time).
2009-10-25don't follow redirection when setting Content-Typecorvid
When a redirection page comes in, obviously we haven't followed the redirection yet, so we can't find the entry. This meant that the content type from the HTTP header could not be set. This was not so great for my new error message. Maybe circumstances where we'd want to follow the redirection here will reveal themselves, but I'd be surprised.
2009-10-25only complain about Content-Length for non-identity Transfer-Encodingcorvid
2009-10-25only require Content-Type HTTP header if there was, or should have been, a bodycorvid
2009-09-17use callback when offering download from Cache_process_queuecorvid
2009-09-01Added a missing initialization value (NewClient->BufSize)Jorge Arellano Cid
2009-08-18Remove empty cache entries on Stop-button press and new link request!Jorge Arellano Cid
2009-07-29fix segfault in a_Cache_process_dbuf()corvid
Was triggered by the URL data:text/plain;charset=iso-8859-2,%B5%B5 because dillo does not currently think that's likely to be text.
2009-06-22remove system includescorvid
2009-05-07Inlined Cache_client_make_key()Jeremy Henty
2009-05-06separate a_Capi_get_flags and a_Capi_get_flags_with_redirectioncorvid, Jorge Arellano Cid
2009-05-03Comment fix for a_Cache_open_url()Jeremy Henty
2009-05-03Fix a border case bug in Cache_client_make_key()Jeremy Henty
2009-02-17Fixed a memory leak introduced by 691053e40394Jorge Arellano Cid
2009-02-15Fixed handling of META's content-type with no MIME type (e.g. only charset).Jorge Arellano Cid
e.g. some links at http://git.kernel.org/gitweb.cgi didn't render. e.g. #2 This page didn't render: <html> <head> <meta http-equiv="content-type" content="; charset=utf-8"/> <title></title> </head> <body> Generating.... </body> </html>
2009-02-09whitespace cleanup: 's/ +$//g'Jorge Arellano Cid
2009-02-03Fix a race condition with charset, and the case of charset after CSS in HEADJorge Arellano Cid
Race condition example: www.blisty.cz charset after CSS ex. : http://www.daemonnews.org
2009-02-01Fixed a SEGFAULT bug on redirections without Locationcorvid
2009-01-31Avoid a compiler warning in cache.cJorge Arellano Cid
2009-01-23Cleanup and logic change in a_Cache_set_content_type().Jorge Arellano Cid
2009-01-23Bug fix: Made a_Cache_stop_client() also remove from the delayed queue.Jorge Arellano Cid
2009-01-23Changed a wrong a_UIcmd_set_page_prog() parameterJorge Arellano Cid
2009-01-22Fixed a memory leak in gzip decoder.Jorge Arellano Cid
2009-01-21Fixed charset decoding given in HTTP and META. (bugs and race condition)Jorge Arellano Cid
2009-01-14Make now-unused debug messages silent.Jorge Arellano Cid
2009-01-07Cleanup of cache.c WRT charset decoders.Jorge Arellano Cid
This patch gets rid of a series of valgrind complains with this page: http://selenic.com/pipermail/mercurial/
2009-01-05Free UTF8Data before changing its value.Jorge Arellano Cid
2009-01-01imported patch dicache-cleanup5Jorge Arellano Cid
2008-12-20Added basic authentication!Jorge Arellano Cid
2008-10-22- Allowed compilation with older machines by removing a few C99isms.jcid
- Added use of inttypes.h when stdint.h isn't found.
2008-10-21- Enabled OfferDownload for type mismatched root URLs.jcid
2008-09-30- s/todo:/TODO:/gjcid
2008-09-29- Removed the remaining DEBUG_MSG in src/jcid
2008-09-14- Extended Page size meter to include images.jcid
2008-09-14- Forbid dpi GET and POST from non dpi-generated urls.jcid
- Cleaned up a_Url_new().
2008-09-12- Fixed a crash bug with repush and non-viewable content.jcid
2008-09-09- Added a console message for non viewable content.jcid
2008-06-20- Incremented the HUGE_FILESIZE threshold to 15 MBjcid
2008-06-02- Moved charset decoding into cache.jcid
2008-05-30- more cleanups in html.cc.jcid
2008-05-29- Switched from charset to content-type for handling data.jcid
- Fixed data guesser to detect ASCII, LATIN1, UTF8, KOI8-R, CP-1251 as text.
2008-05-27- Made an input preserving decoder implementation.jcid
2008-05-26- Added getCurrentForm() method to html (cleanup).jcid
2008-05-10+ Fixed a bug in the code that remembers the scrolling position.jcid
2008-04-14- Added input image for FORMS.jcid
2008-03-29- Switched URL_DATA type from char* to a dStr.jcid
2008-03-26- Added a_Capi_get_flags(). It requests a cache entry's status as flags.jcid