summaryrefslogtreecommitdiff
path: root/content
Commit message (Collapse)AuthorAgeFilesLines
* 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
* metadata links stored in contentsVincent Sanders2011-10-073-5/+121
| | | | | | browser uses metadata links for favicons svn path=/trunk/netsurf/; revision=12977
* initial favicon supportVincent Sanders2011-10-061-1/+7
| | | | svn path=/trunk/netsurf/; revision=12975
* Avoid making a new nsurl to remove fragment if there is no fragment.Michael Drake2011-10-051-5/+10
| | | | svn path=/trunk/netsurf/; revision=12958
* Build resource: map at start timeJohn Mark Bell2011-10-052-20/+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-037-58/+18
| | | | svn path=/trunk/netsurf/; revision=12926
* Optimise fetch item selection when fetching many items from same host.Michael Drake2011-10-021-0/+10
| | | | svn path=/trunk/netsurf/; revision=12920
* 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
* Convert fetchers to nsurl.Michael Drake2011-09-297-32/+30
| | | | svn path=/trunk/netsurf/; revision=12910
* Make llcache_handle_get_url return a nsurl.Michael Drake2011-09-283-15/+20
| | | | svn path=/trunk/netsurf/; revision=12905
* Port llcache to nsurl.Michael Drake2011-09-283-154/+130
| | | | svn path=/trunk/netsurf/; revision=12904
* fetch_can_fetch can take const nsurl.Michael Drake2011-09-272-2/+2
| | | | svn path=/trunk/netsurf/; revision=12902
* Port fetch layer to nsurl. Remove unused fetch_get_referer function.Michael Drake2011-09-273-101/+123
| | | | svn path=/trunk/netsurf/; revision=12899
* Reflect differences between draft-abarth-mime-sniff-06 and ↵John Mark Bell2011-09-272-12/+81
| | | | | | | | draft-ietf-websec-mime-sniff-03 (and thus, http://mimesniff.spec.whatwg.org) In summary: audio/x-wave becomes audio/wave and we add sniffing for mp4 video svn path=/trunk/netsurf/; revision=12897
* Document fetch_add_fetcher.Michael Drake2011-09-261-0/+12
| | | | svn path=/trunk/netsurf/; revision=12892
* Fetchers register with an lwc_string, rather than a string.Michael Drake2011-09-267-55/+119
| | | | svn path=/trunk/netsurf/; revision=12891
* Disable fetch debug loops when not debugging.Michael Drake2011-09-261-5/+3
| | | | svn path=/trunk/netsurf/; revision=12890
* Remember to free host, now it's not kept for anything.Michael Drake2011-09-261-0/+1
| | | | svn path=/trunk/netsurf/; revision=12886
* Remove unused host from fetch info struct.Michael Drake2011-09-261-3/+0
| | | | svn path=/trunk/netsurf/; revision=12885
* Correctly create a sentinel and initialise user_list with it when cloning a ↵John Mark Bell2011-09-181-0/+8
| | | | | | content svn path=/trunk/netsurf/; revision=12804
* Only lock content around its reformat call. This means it is not now locked ↵Michael Drake2011-09-171-2/+4
| | | | | | when reformat message is broadcast. Prevents the browser window callback asking the core to redraw a content before it gets unlocked. svn path=/trunk/netsurf/; revision=12802
* Virtualise content handler finalisation calls. Remove pointless implementations.John Mark Bell2011-09-153-11/+7
| | | | svn path=/trunk/netsurf/; revision=12797
* Clean up content_factory_register_handler API -- content handlers no longer ↵John Mark Bell2011-09-152-25/+15
| | | | | | use the mime type, so don't require it to be interned up front svn path=/trunk/netsurf/; revision=12796
* Make high level cache, low level cache and image cache all be initialised ↵Vincent Sanders2011-09-103-103/+131
| | | | | | | | | from passed parameters Calculate all cache sizes from single memory cache size option and sanity check have a single global struct to hold all parameters instead of several individual variables svn path=/trunk/netsurf/; revision=12784
* Move length calculation outside loopJohn Mark Bell2011-09-081-1/+2
| | | | svn path=/trunk/netsurf/; revision=12781
* make high level cache take a parameter structureVincent Sanders2011-09-082-43/+87
| | | | | | make hlcache have a single global container svn path=/trunk/netsurf/; revision=12779
* Handle zero-length documents correctlyJohn Mark Bell2011-09-082-2/+37
| | | | svn path=/trunk/netsurf/; revision=12778
* Cope with zero-length filesJohn Mark Bell2011-09-081-3/+2
| | | | svn path=/trunk/netsurf/; revision=12777
* Content interface to get at contextual content at point.Michael Drake2011-09-063-0/+20
| | | | svn path=/trunk/netsurf/; revision=12753
* Fix string leakageJohn Mark Bell2011-09-041-1/+3
| | | | svn path=/trunk/netsurf/; revision=12708
* Sniff content types where appropriate.John Mark Bell2011-09-048-109/+918
| | | | | | We never sniff for CSS, nor for non-page artefacts (e.g. treeview icons) svn path=/trunk/netsurf/; revision=12707
* Remove mime_type parameter from content handler content_type callback APIJohn Mark Bell2011-09-033-5/+5
| | | | svn path=/trunk/netsurf/; revision=12704
* refactor bitmap out of generic content structureVincent Sanders2011-08-313-8/+57
| | | | svn path=/trunk/netsurf/; revision=12686
* Initial image content handler refactorVincent Sanders2011-08-271-0/+45
| | | | svn path=/trunk/netsurf/; revision=12671
* Fix transition from LOADING to ERROR state after content has been locked for ↵John Mark Bell2011-07-202-2/+14
| | | | | | conversion svn path=/trunk/netsurf/; revision=12614
* Fix race when stopping an HTML content mid-loadJohn Mark Bell2011-07-191-4/+2
| | | | svn path=/trunk/netsurf/; revision=12611
* Fix selection for non-gui browser windows (iframes).Michael Drake2011-07-133-0/+18
| | | | | | | Selection no longer uses current_redraw_browser. Fix long-standing selection bugs on platforms that use action on release behaviour. svn path=/trunk/netsurf/; revision=12598
* Refactor http utilitiesJohn Mark Bell2011-07-083-43/+16
| | | | svn path=/trunk/netsurf/; revision=12595
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-303-4/+10
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Less broken WWW-Authenticate header parserJohn Mark Bell2011-06-291-12/+12
| | | | svn path=/trunk/netsurf/; revision=12542
* Unify content_redraw params in content_redraw_data struct. Core and RISC OS ↵Michael Drake2011-06-283-15/+28
| | | | | | content handlers updated. svn path=/trunk/netsurf/; revision=12529
* Enable content redraw request without hlcache_handle.Michael Drake2011-06-272-2/+20
| | | | svn path=/trunk/netsurf/; revision=12518
* If iframes are reformatted due to containing document reflow, don't need to ↵Michael Drake2011-06-243-5/+13
| | | | | | redraw them since they will be redrawn when the containing document is redrawn. Make iframe handling more robust. svn path=/trunk/netsurf/; revision=12497
* Log CA optionsJohn Mark Bell2011-05-191-2/+6
| | | | svn path=/trunk/netsurf/; revision=12436
* Handle case where configured curl handle cache limit is 0John Mark Bell2011-05-161-6/+12
| | | | svn path=/trunk/netsurf/; revision=12420
* Squash static analyser warningJohn Mark Bell2011-05-161-2/+1
| | | | svn path=/trunk/netsurf/; revision=12419
* Implement todoJohn Mark Bell2011-05-161-4/+1
| | | | svn path=/trunk/netsurf/; revision=12418