Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-03-09 | Use Doxygen comments for C files | Rodrigo Arias Mallo | |
2023-12-30 | Add support for OpenSSL, mbedTLS 2 and mbedTLS 3 | Rodrigo Arias Mallo | |
Brings the previous OpenSSL implementation into src/IO/tls_openssl.c. Now, the TLS functions have the implementation name as prefix, like a_Tls_openssl_connect(). The generic interface at IO/tls.h hides the implementation which is selected at configure time. The appropriate functions of that implementation are called from IO/tls.c to IO/tls_<impl>.c. In this way, support for more TLS libraries can easily be added. In the case of mbedTLS, there are some incompatible changes from version 2 to 3, so we use some ifdefs to fix the differences. | |||
2016-07-03 | status msg | corvid | |
2016-04-09 | if we get an error (e.g. ECONNRESET) while reading, abort the read and show ↵ | corvid | |
a status message | |||
2015-07-04 | permit secure->insecure redirection for now, add large comment | corvid | |
2015-07-03 | let's disallow mixed content | corvid | |
2015-05-08 | https: the rest :) | corvid | |
Normally I really like to make commits in small pieces that all compile and make sense in isolation, but with this https work, the effort vs the reward just wasn't going to make sense. | |||
2015-03-04 | better error msg when we can't save a file from cache | corvid | |
2015-01-22 | Fix for segfault when there's no dpid and view source is requested. | Jorge Arellano Cid | |
2014-12-21 | more (and indentation in one spot) | corvid | |
2014-10-19 | free web when Domain denies open_url | corvid | |
2014-09-05 | persistent connections: reply complete only if cache didn't abort | corvid | |
I'm amazed that it took me something like six months to encounter this case. | |||
2014-08-08 | abort failed queries | corvid | |
http://lists.dillo.org/pipermail/dillo-dev/2014-July/010190.html and no one objected, and it hasn't given me any trouble, so... | |||
2014-07-17 | http persistent connections initial patch | corvid | |
2014-03-16 | Separate 'Accept:' values for images and the rest | corvid | |
2012-12-30 | a_Capi_open_url(): warn when ignoring an uncached/undownloadable download ↵ | Jeremy Henty | |
request. | |||
2012-11-26 | MSG_ERR when https query truncated | corvid | |
e.g., uploading image data via file input | |||
2012-10-03 | introduce domainrc mechanism | p37sitdu, corvid | |
2012-10-02 | rm filter_auto_requests | corvid | |
2011-11-17 | never treat URI schemes case-sensitively | corvid | |
2011-11-11 | locale-independent ASCII character case handling | corvid | |
Basically, I and i are different letters in Turkic languages, and this causes problems for str(n)casecmp and toupper/tolower in these locales when dillo is dealing with ASCII. | |||
2011-11-08 | Allow "view source" to reload upon user request | Jorge Arellano Cid | |
2011-09-18 | rename fn | corvid | |
Trying to make it a little clearer. It's surprising how there isn't a good, brief, clear term for this. Discussion of the concept tends to start using words like "administration" and "control". | |||
2011-09-16 | don't print ALLOW MSGs in Capi_filters_test | corvid | |
2011-09-16 | put public suffix comparison directly in url.c | corvid | |
2011-09-14 | privacy: never send cookies in third-party requests | corvid | |
as mentioned in section 7.1 of RFC 6265 | |||
2011-09-02 | Cancel the expected URL after offering a download, part 2 (BUG#982) | Jorge Arellano Cid | |
There was a convoluted way of using an already freed bw: first, one bw asks for a page, and that becomes conn->bw, and then another bw starts also asking for the page, and the first bw closes, invalidating the conn->bw, and then the second bw closes and the cancel expect code tries to use the old bw. Fixed now. | |||
2011-07-29 | Workaround: request to only check the root URL's certificate (https). | Jorge Arellano Cid | |
This avoids the dialog bombing that stems from loading multiple https images/resources in a single page. A proper fix would take either to implement the https-dpi as a server (with state), or to move back https handling into dillo. | |||
2011-07-19 | Cancel the expected URL after offering a download (BUG#982) | Jorge Arellano Cid | |
After showing the download dialog, the original link remained unresponsive. | |||
2010-11-24 | trim some spaces | corvid | |
2010-11-24 | spelling | corvid | |
2010-08-24 | filter msg (grows increasingly similar to Jeremy's proposal) | corvid | |
2010-08-24 | Capi_filters_allow msg | corvid | |
2010-07-30 | clearer Capi_filters_allow msg | Jeremy Henty, corvid | |
2010-04-27 | const qualifier | corvid | |
2010-04-27 | filter allow if nohost -> nohost | corvid | |
2010-04-20 | no-host is "", not NULL | corvid | |
2010-04-20 | filter allow data: uri | corvid | |
2010-04-06 | filter automatic requests | corvid | |
same_domain option in preference so that spying on users isn't so easy. | |||
2010-03-04 | Fix "view source" for POST URLs | Jorge Arellano Cid | |
2010-03-01 | free send_source cmd | corvid | |
2010-02-27 | trim some spaces | corvid | |
2010-02-26 | Allow view source for GET URLs | Jorge Arellano Cid | |
2010-02-23 | Handle vsource dpi inside a_Capi_open_url(); more orthogonality. | Jorge Arellano Cid | |
Also added better error handling. | |||
2010-02-20 | Interim patch for view source | Jorge Arellano Cid | |
2010-02-17 | Implement the view source functionality as a dpi | Jorge Arellano Cid | |
2010-02-17 | Add the a_Capi_dpi_send_data() function | Jorge Arellano Cid | |
2009-11-01 | ftp 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-08-23 | Bugfix for a race condition SEGFAULT in capi | Jorge Arellano Cid | |
2009-08-18 | Remove empty cache entries on Stop-button press and new link request! | Jorge Arellano Cid | |