summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Squash warningJohn Mark Bell2010-10-081-0/+1
| | | | svn path=/trunk/netsurf/; revision=10872
* Clean up framebuffer compile time font selectionVincent Sanders2010-10-076-89/+281
| | | | | | | Make framebuffer font documentation match reality Expose glyph cache size as a configuration option svn path=/trunk/netsurf/; revision=10871
* Fix menu shortcutsChris Young2010-10-072-3/+6
| | | | svn path=/trunk/netsurf/; revision=10870
* Less ambiguous wording; update bug reporting optionsChris Young2010-10-071-6/+4
| | | | svn path=/trunk/netsurf/; revision=10869
* If the cookies tree has not been initialised do not allow operations to be ↵Vincent Sanders2010-10-061-2/+6
| | | | | | scheduled upon it. svn path=/trunk/netsurf/; revision=10868
* Copy icons to theme dirChris Young2010-10-061-1/+2
| | | | svn path=/trunk/netsurf/; revision=10867
* Squash warningsJohn Mark Bell2010-10-051-2/+5
| | | | svn path=/trunk/netsurf/; revision=10866
* Merge treeview-redux to trunkJohn Mark Bell2010-10-05109-7531/+11096
| | | | svn path=/trunk/netsurf/; revision=10865
* Add seconds/microseconds wallclock time to log output, move header includes ↵Rob Kendrick2010-10-041-6/+19
| | | | | | to inside guard. svn path=/trunk/netsurf/; revision=10864
* Add flexible toolbar support and docuemnt itVincent Sanders2010-10-044-125/+467
| | | | svn path=/trunk/netsurf/; revision=10862
* Simplify detection of valid filetypes for ASLChris Young2010-10-031-14/+1
| | | | svn path=/trunk/netsurf/; revision=10861
* WebP image support, needs libwebp (from trunk/libwebp) and libvpx.Chris Young2010-10-0315-2/+231
| | | | | | Only enabled for Amiga build currently, may have colour issues on little-endian CPUs svn path=/trunk/netsurf/; revision=10860
* Ensure kiosk_mode and frame windows are (a) handled the same wrt menus and ↵Chris Young2010-09-284-11/+26
| | | | | | | | (b) not trying to manipulate non-existant menus svn path=/trunk/netsurf/; revision=10855
* Change "cache native bitmaps" default back to 0. The userbase's graphics ↵Chris Young2010-09-281-1/+1
| | | | | | | | cards are worse than anticipated. svn path=/trunk/netsurf/; revision=10853
* Fix OS4 static (non-Cairo) buildChris Young2010-09-212-2/+4
| | | | svn path=/trunk/netsurf/; revision=10808
* Revert previous changeChris Young2010-09-191-1/+5
| | | | svn path=/trunk/netsurf/; revision=10800
* Try to avoid corruption when moving cursor around in text boxesChris Young2010-09-191-2/+6
| | | | svn path=/trunk/netsurf/; revision=10799
* Restrict permissible content types for list marker imagesJohn Mark Bell2010-09-191-1/+2
| | | | svn path=/trunk/netsurf/; revision=10798
* move tabs menu somewhere less annoyingVincent Sanders2010-09-184-49/+41
| | | | svn path=/trunk/netsurf/; revision=10797
* Make the gtk menus fully translatableVincent Sanders2010-09-185-210/+206
| | | | | | clean up the macro madness a bit in gtk_menu.c svn path=/trunk/netsurf/; revision=10796
* Remove unused #includeChris Young2010-09-171-3/+0
| | | | svn path=/trunk/netsurf/; revision=10795
* move the gtk menu creation into gtk_menu.c from gtk_scaffolding.cVincent Sanders2010-09-173-195/+208
| | | | | | This causes the menu creation to be concentrated in one place removing the need for numerous external linkages svn path=/trunk/netsurf/; revision=10794
* Remove bogus assertionJohn Mark Bell2010-09-171-2/+2
| | | | svn path=/trunk/netsurf/; revision=10793
* Fix crash on receipt of a 304 response: it turns out that FETCH_HEADER may ↵John Mark Bell2010-09-161-12/+13
| | | | | | | | be called before any decision about how to process the response is made. Move FETCH_HEADER handler to start of switch statement to reflect this. svn path=/trunk/netsurf/; revision=10792
* Ensure that candidate count is reduced if a conditional request results in a ↵John Mark Bell2010-09-161-0/+34
| | | | | | non-304 response svn path=/trunk/netsurf/; revision=10791
* Change back to using tree directly because element navigation functions ↵James Bursa2010-09-161-2/+4
| | | | | | require libxml2 2.7.3 which is not available everywhere. svn path=/trunk/netsurf/; revision=10790
* Prevent assert on non-HTML contentsChris Young2010-09-161-1/+4
| | | | svn path=/trunk/netsurf/; revision=10789
* Use libxml functions to loop through elements in html_head() instead of ↵James Bursa2010-09-161-5/+2
| | | | | | checking all nodes. Remove logging. svn path=/trunk/netsurf/; revision=10788
* perpetrate a neatness to centralise all the low level cache cache control ↵Vincent Sanders2010-09-161-20/+21
| | | | | | data invalidation svn path=/trunk/netsurf/; revision=10787
* Fix heap corruptionJohn Mark Bell2010-09-161-2/+7
| | | | svn path=/trunk/netsurf/; revision=10786
* Fix validation of invalidated cache entries.John Mark Bell2010-09-161-7/+13
| | | | svn path=/trunk/netsurf/; revision=10785
* Ensure we free etags before invalidating cache control dataDaniel Silverstone2010-09-161-0/+10
| | | | svn path=/trunk/netsurf/; revision=10784
* Use ETag to validate file: URLs, returning 304 if there's no change.John Mark Bell2010-09-151-25/+37
| | | | | | | | Force directories to be uncacheable. Don't emit a Last-Modified header for files, as it may result in a cached object being considered fresh (c.f. RFC2616 $13.2.3/4) Fix leak of file descriptor on failure to allocate buffer. svn path=/trunk/netsurf/; revision=10782
* Purge last vestiges of file: cruft from curl bindingJohn Mark Bell2010-09-151-17/+0
| | | | svn path=/trunk/netsurf/; revision=10781
* Forcibly invalidate contents with response codes that aren't 200 or 203.John Mark Bell2010-09-151-9/+25
| | | | svn path=/trunk/netsurf/; revision=10780
* Replace all instances of NUL with U+FFFDJohn Mark Bell2010-09-131-4/+14
| | | | svn path=/trunk/netsurf/; revision=10771
* Replace use of iconv with a parserutils inputstreamJohn Mark Bell2010-09-132-72/+99
| | | | svn path=/trunk/netsurf/; revision=10770
* Give markup peepers a slightly easier time of it.Michael Drake2010-09-131-14/+17
| | | | svn path=/trunk/netsurf/; revision=10769
* Improve error reporting, and reflow to 80 columns.John Mark Bell2010-09-131-35/+67
| | | | svn path=/trunk/netsurf/; revision=10768
* Fix riscos path_add_part, to cope with the fact that newpart is unix-formatJohn Mark Bell2010-09-131-3/+15
| | | | svn path=/trunk/netsurf/; revision=10767
* Fix indirected text size for theme author.James Bursa2010-09-131-1/+1
| | | | svn path=/trunk/netsurf/; revision=10766
* Remove themes.c and themes.h. Not used and implementation was never done.James Bursa2010-09-122-188/+0
| | | | svn path=/trunk/netsurf/; revision=10765
* Rename wndWarning to nsgtk_warning_window. Remove some unnecessary includes.James Bursa2010-09-121-5/+3
| | | | svn path=/trunk/netsurf/; revision=10764
* Simplify a browser_window_go_post() to browser_window_go().James Bursa2010-09-121-2/+1
| | | | svn path=/trunk/netsurf/; revision=10762
* Ensure the file that is read for info is in the platform's native path ↵Chris Young2010-09-121-9/+12
| | | | | | | | format, whilst the path used for any links is in the correct URL format. svn path=/trunk/netsurf/; revision=10761
* Stop launch-handler from reporting unknown protocols more than onceChris Young2010-09-121-4/+77
| | | | svn path=/trunk/netsurf/; revision=10760
* Use core file fetcherChris Young2010-09-125-395/+3
| | | | svn path=/trunk/netsurf/; revision=10759
* Updated translation from Samir HawamdehChris Young2010-09-121-34/+34
| | | | svn path=/trunk/netsurf/; revision=10758
* missing declarationVincent Sanders2010-09-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=10757
* hell with it, heres a version which should result in fewer portability ↵Vincent Sanders2010-09-116-87/+75
| | | | | | complaints svn path=/trunk/netsurf/; revision=10756