summaryrefslogtreecommitdiff
path: root/content
Commit message (Collapse)AuthorAgeFilesLines
* Ensure handle options are reset appropriately (fixes 1668354)John Mark Bell2007-02-251-3/+17
| | | | svn path=/trunk/netsurf/; revision=3189
* Fix RING_FINDBYHOST to actually find things. jmb found the bug, I verified ↵Daniel Silverstone2007-02-221-2/+5
| | | | | | his patch and committed it svn path=/trunk/netsurf/; revision=3186
* Fix handling of cookies in unverifiable transactions caused by a redirect ↵John Mark Bell2007-02-025-14/+26
| | | | | | from a fetch into a browser window which was varifiable. svn path=/trunk/netsurf/; revision=3165
* Bring handling of submission of blank file inputs in line with other browsers.John Mark Bell2007-01-301-12/+44
| | | | | | Tidy up fetch_post_convert while I'm at it. svn path=/trunk/netsurf/; revision=3159
* Generates and use a User-Agent: string based on new ↵Rob Kendrick2007-01-301-1/+5
| | | | | | netsurf_version_major/minor values, and results of uname(). svn path=/trunk/netsurf/; revision=3158
* Make time taken that is displayed in status bar use gettimeofday()-based ↵Rob Kendrick2007-01-302-7/+6
| | | | | | time rather than clock()-based time svn path=/trunk/netsurf/; revision=3157
* Make GTK build compile on FreeBSD.James Bursa2007-01-295-3/+9
| | | | svn path=/trunk/netsurf/; revision=3154
* Handle strdup failureJohn Mark Bell2007-01-281-2/+7
| | | | svn path=/trunk/netsurf/; revision=3153
* Improve domain matching of referer and host.John Mark Bell2007-01-281-19/+30
| | | | | | | Lose comparison of schemes - this was spurious and wrong. Fixes 1646417. svn path=/trunk/netsurf/; revision=3152
* Handle cookies in unverifiable transactionsJohn Mark Bell2007-01-277-48/+121
| | | | svn path=/trunk/netsurf/; revision=3151
* Revert hack around broken pipe (not caching fetch handles used for SSL John Mark Bell2007-01-181-6/+2
| | | | | | | | connections). Ignore SIGPIPE completely as nothing other than OpenSSL is expected to generate it. svn path=/trunk/netsurf/; revision=3145
* Fix parsing error when an empty HTML data is returned. Add HTTP status and ↵James Bursa2007-01-133-8/+64
| | | | | | other information to status bar. svn path=/trunk/netsurf/; revision=3140
* Add fetch_http_code() to retrieve the HTTP status code of a fetch.James Bursa2007-01-132-26/+43
| | | | svn path=/trunk/netsurf/; revision=3139
* Update the file comment for fetch.c as requested.Daniel Silverstone2007-01-021-3/+5
| | | | svn path=/trunk/netsurf/; revision=3133
* Add option to set Accept-Charset header (Stefaan Claes)John Mark Bell2006-12-281-0/+8
| | | | svn path=/trunk/netsurf/; revision=3124
* Fix typo.John Mark Bell2006-12-282-2/+2
| | | | | | Default type -> text/plain svn path=/trunk/netsurf/; revision=3123
* Add URLdb destruction functionalityJohn Mark Bell2006-12-082-0/+143
| | | | svn path=/trunk/netsurf/; revision=3115
* Further fixes and tidying to urldb. Also squash some memory leaks.John Mark Bell2006-12-041-48/+93
| | | | svn path=/trunk/netsurf/; revision=3104
* Improved tracking of memory usage. c->size is now exclusive of talloc size, ↵James Bursa2006-12-032-8/+6
| | | | | | and the two are added to find the full size. svn path=/trunk/netsurf/; revision=3103
* Lose debug.Richard Wilson2006-12-011-16/+0
| | | | svn path=/trunk/netsurf/; revision=3088
* Fix 1535120, 1528673Richard Wilson2006-12-011-34/+60
| | | | svn path=/trunk/netsurf/; revision=3087
* Fix 1597646Richard Wilson2006-12-011-8/+17
| | | | svn path=/trunk/netsurf/; revision=3086
* Fix 1563546, plug possible memory leak.Richard Wilson2006-12-011-5/+5
| | | | svn path=/trunk/netsurf/; revision=3085
* Update project URL.Michael Drake2006-11-279-9/+9
| | | | svn path=/trunk/netsurf/; revision=3073
* Documentation moved to Docs/01-contentJames Bursa2006-11-111-88/+0
| | | | svn path=/trunk/netsurf/; revision=3050
* Log hostname on insertion failure.John Mark Bell2006-10-121-1/+3
| | | | svn path=/trunk/netsurf/; revision=3000
* Ignore body data from 401 replies to prevent disruption of auth login handlingChris Williams2006-10-011-0/+19
| | | | svn path=/trunk/netsurf/; revision=2972
* Ensure urldb_add_path always has a path.John Mark Bell2006-09-171-14/+23
| | | | | | Extract hostname from url authority returned by url_get_components. svn path=/trunk/netsurf/; revision=2958
* Lower overhead of urldb calls by using url component calls.Richard Wilson2006-09-021-104/+84
| | | | svn path=/trunk/netsurf/; revision=2908
* Experimental new frames code.Richard Wilson2006-09-023-1/+67
| | | | svn path=/trunk/netsurf/; revision=2906
* Detect attempted fetches using protocols we can't handle.John Mark Bell2006-08-061-4/+36
| | | | | | Mark content in error in a couple of cases that I'd missed ages ago. svn path=/trunk/netsurf/; revision=2816
* Fix edge case in cookie search code when handling Path=/fooJohn Mark Bell2006-07-171-4/+39
| | | | svn path=/trunk/netsurf/; revision=2776
* Allow the user to delete cookies.Richard Wilson2006-07-162-1/+54
| | | | svn path=/trunk/netsurf/; revision=2770
* Extent cookie_update API to allow notification of deleted domains. Fix nodes ↵Richard Wilson2006-07-162-8/+9
| | | | | | not being re-calculated. svn path=/trunk/netsurf/; revision=2765
* Display session cookies' expiry correctlyJohn Mark Bell2006-07-151-0/+5
| | | | | | | Fix urldb debug build Fix GTK build's cookie_update API svn path=/trunk/netsurf/; revision=2752
* Further url completion fixesRichard Wilson2006-07-131-2/+2
| | | | svn path=/trunk/netsurf/; revision=2744
* Fix url completionRichard Wilson2006-07-131-7/+11
| | | | svn path=/trunk/netsurf/; revision=2743
* Add basic cookie viewer, make trees use textarea components for UTF8 ↵Richard Wilson2006-07-132-48/+95
| | | | | | editing, trim headers, fix tree redraw issues. svn path=/trunk/netsurf/; revision=2739
* Don't cache curl handles that were used to fetch https URLs; with any John Mark Bell2006-07-091-2/+6
| | | | | | luck, this should fix broken pipe crashes. svn path=/trunk/netsurf/; revision=2723
* Generate directory listings (fix 1397934)Richard Wilson2006-07-062-0/+8
| | | | svn path=/trunk/netsurf/; revision=2719
* Implement component-wise URL comparisonJohn Mark Bell2006-07-021-1/+5
| | | | svn path=/trunk/netsurf/; revision=2697
* Fix conversion of URLs beginning "file://". Additionally, John Mark Bell2006-07-011-6/+2
| | | | | | | file://host/... isn't likely, so assume file://path & convert to file:///path svn path=/trunk/netsurf/; revision=2685
* Relax domain matching to allow host a.com to match .a.comJohn Mark Bell2006-07-011-2/+12
| | | | svn path=/trunk/netsurf/; revision=2684
* Fix crash when url_* failsJohn Mark Bell2006-06-291-12/+20
| | | | svn path=/trunk/netsurf/; revision=2678
* Only accept cookies from cookie-enabled transactionsJohn Mark Bell2006-06-291-1/+2
| | | | svn path=/trunk/netsurf/; revision=2668
* Rewrite cookie parser to be more tolerant of junk inputJohn Mark Bell2006-06-242-235/+224
| | | | | | No longer need urldb_init; remove it. svn path=/trunk/netsurf/; revision=2643
* Strip day names from date strings before parsing; these are too variable John Mark Bell2006-06-241-1/+26
| | | | | | | to bother with (and carry no information useful to us) Make expires avpair handling cater for dates after 2038. svn path=/trunk/netsurf/; revision=2642
* Remove assertion of invalid assumption (fixes #1509118)John Mark Bell2006-06-201-2/+2
| | | | svn path=/trunk/netsurf/; revision=2637
* Make cookie file parser more strict (cookies with spaces in the value John Mark Bell2006-06-201-56/+52
| | | | | | | have been seen in the wild). Fix lookup of cookies for top-level paths (i.e. a path segment of "/") svn path=/trunk/netsurf/; revision=2636
* Fix handling of broken Expires avpairsJohn Mark Bell2006-06-191-5/+41
| | | | svn path=/trunk/netsurf/; revision=2633