summaryrefslogtreecommitdiff
path: root/content/fetchers
Commit message (Collapse)AuthorAgeFilesLines
* Rough implementation of httponly cookie supportDaniel Silverstone2012-11-091-1/+1
|
* Only disable TLS1.2 if it can be disabled.John-Mark Bell2012-11-041-0/+2
|
* Disable TLS1.2 support.John-Mark Bell2012-11-041-0/+2
|
* Disable SSL session ID caching.John-Mark Bell2012-11-041-0/+3
|
* Revert "Enable verbose curl debug"John-Mark Bell2012-11-041-4/+1
| | | | This reverts commit f5a98defaec97cf7a18516c8c9af49f10b93f0cf.
* Enable verbose curl debugJohn-Mark Bell2012-11-041-1/+4
|
* Revert "Suppress BEAST workaround."John-Mark Bell2012-11-041-3/+0
| | | | This reverts commit d31e8a7b29ea7b3dd3838c628fcfe30d2269859d.
* Suppress BEAST workaround.John-Mark Bell2012-11-041-0/+3
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2012-10-111-1/+1
|\
| * Fix bug #3576005: partial file means finished, not error.John-Mark Bell2012-10-101-1/+1
| |
* | Port to new urldb.Michael Drake2012-10-081-3/+3
|/
* If you pass CI_BUILD=xxx to make, it will build a CI #xxx into the version ↵Daniel Silverstone2012-10-061-0/+3
| | | | string and also mention it in the testament
* Use nsurl_parent.Michael Drake2012-10-061-9/+10
|
* Remove unused #include.Michael Drake2012-10-051-1/+0
|
* Avoid trying to mmap zero-length files.John-Mark Bell2012-09-191-11/+12
| | | | Remove buf size limit in mmap case: prevented processing entire file.
* alter file fetcher to use mmap where availableVincent Sanders2012-08-131-19/+100
|
* fix windows build format specifiersVincent Sanders2012-08-122-3/+3
| | | | add install target for windows - creates installer rather than actually installing
* Add about:welcome handler and enable resource:welcome.html.Michael Drake2012-07-212-2/+21
|
* limit url debug output to 140 charactersVincent Sanders2012-07-031-1/+1
|
* Testament generation now supports gitDaniel Silverstone2012-06-041-8/+13
| | | | svn path=/trunk/netsurf/; revision=13946
* Add support for sending DoNotTrack header.Chris Young2012-05-201-0/+4
| | | | svn path=/trunk/netsurf/; revision=13928
* Remove image cache status from user-facing listing.Michael Drake2012-04-131-12/+22
| | | | svn path=/trunk/netsurf/; revision=13865
* More work on about:imagecache entry listing table.Michael Drake2012-04-121-21/+22
| | | | svn path=/trunk/netsurf/; revision=13855
* Close paragraph tags and other minor imagecache page cleanups.Michael Drake2012-04-121-11/+13
| | | | svn path=/trunk/netsurf/; revision=13854
* Make more readable and fix use double quotes for href attribute value.Michael Drake2012-04-121-3/+13
| | | | svn path=/trunk/netsurf/; revision=13852
* Fix typo and unhide imagecache from about:aboutChris Young2012-04-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=13823
* about:imagecache gives URL links, and table is styled. This has revealed a ↵Rob Kendrick2012-03-251-4/+5
| | | | | | buffer overflow or similar here; reducing the buffer size to 1024 makes it very fragile with long URLs. svn path=/trunk/netsurf/; revision=13700
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-222-29/+33
| | | | svn path=/trunk/netsurf/; revision=13548
* Enable User CSS file.Michael Drake2012-03-061-0/+1
| | | | svn path=/trunk/netsurf/; revision=13507
* Rename nsurl_enquire to nsurl_has_component.Michael Drake2011-11-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=13183
* return;John Mark Bell2011-11-275-0/+30
| | | | | | Fix bug #3442642: allow scheme-specific fetchers to have a say in whether an URL can be fetched. svn path=/trunk/netsurf/; revision=13182
* Clean up fetch callback API. Inject some long-needed type safety.John Mark Bell2011-11-085-195/+259
| | | | svn path=/trunk/netsurf/; revision=13137
* Hack around curl complaining about junk gzip streamsJohn Mark Bell2011-11-051-2/+10
| | | | svn path=/trunk/netsurf/; revision=13129
* Fix "about:".Michael Drake2011-10-151-1/+2
| | | | svn path=/trunk/netsurf/; revision=13054
* Fix handling of URLs without an authorityJohn Mark Bell2011-10-141-17/+21
| | | | svn path=/trunk/netsurf/; revision=13053
* fix image cache summary information to properly use a format stringVincent Sanders2011-10-121-2/+22
| | | | | | | remove snprintf buffer overflow possibility fix the about:imagecache fetcher to contain the output formatting and use summary information formatting svn path=/trunk/netsurf/; revision=13039
* fix possible buffer overflowVincent Sanders2011-10-111-0/+6
| | | | svn path=/trunk/netsurf/; revision=13032
* If the about handler fails to intern its strings, return the error, cleaning ↵Daniel Silverstone2011-10-111-0/+6
| | | | | | up first svn path=/trunk/netsurf/; revision=13031
* add about:imagecache some of teh implementation needs cleaning upVincent Sanders2011-10-101-1/+86
| | | | svn path=/trunk/netsurf/; revision=13030
* make about fetcher use lwc_strings for url lookupsVincent Sanders2011-10-101-13/+32
| | | | svn path=/trunk/netsurf/; revision=13029
* prevent odd curl non completion behaviourVincent Sanders2011-10-091-2/+12
| | | | svn path=/trunk/netsurf/; revision=13024
* Use malloc, memcpy instead of strdup since we have the length.Michael Drake2011-10-081-2/+3
| | | | svn path=/trunk/netsurf/; revision=13006
* make resource fetcher cope with missing resources gracefullyVincent Sanders2011-10-071-11/+9
| | | | svn path=/trunk/netsurf/; revision=12994
* use resource:favicon.ico instead of resource:favicon.pngVincent Sanders2011-10-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=12982
* fix favicon default selection for non http(s) urlsVincent Sanders2011-10-071-0/+1
| | | | svn path=/trunk/netsurf/; revision=12981
* Build resource: map at start timeJohn Mark Bell2011-10-051-18/+82
| | | | | | Remove stylesheet url globals -- the core will always use resource:{default,quirks,adblock}.css as appropriate svn path=/trunk/netsurf/; revision=12949
* Port more internals to nsurl. Front ends may need updating.Michael Drake2011-10-032-13/+1
| | | | svn path=/trunk/netsurf/; revision=12926
* Store host as lwc_string in curl fetcher and obtain it via nsurl. Clean up ↵Michael Drake2011-10-011-29/+25
| | | | | | cached hosts on exit. svn path=/trunk/netsurf/; revision=12918
* Keep url as nsurl.Michael Drake2011-10-011-15/+14
| | | | svn path=/trunk/netsurf/; revision=12917
* Convert nsurl to string for log.Michael Drake2011-10-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=12916