summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* First write-up of build instructions for AmigaOSChris Young2009-01-101-0/+206
| | | | svn path=/trunk/netsurf/; revision=6021
* Updated URLs in default hotlistAdrian Lees2009-01-101-2/+2
| | | | svn path=/trunk/netsurf/; revision=6011
* Assorted saving-related changes (WIP)Adrian Lees2009-01-108-85/+368
| | | | svn path=/trunk/netsurf/; revision=6010
* Silence a bunch of warnings caused by cURL's typecheck-gcc stuff being ↵Daniel Silverstone2009-01-081-28/+41
| | | | | | strict and in one case cURL simply being daft (whoever heard of a signed HTTP response code?). svn path=/trunk/netsurf/; revision=5991
* Charset fallbacks. If we don't support the charset declared in the HTTP ↵John Mark Bell2009-01-061-0/+27
| | | | | | header, fall back to autodetect. If we don't support the charset declared in a meta charset, fall back to Windows-1252. svn path=/trunk/netsurf/; revision=5974
* It's probably a good idea if we're consistent in which allocation routines ↵John Mark Bell2009-01-061-3/+6
| | | | | | we're using. svn path=/trunk/netsurf/; revision=5972
* Fix warnings and formattingRob Kendrick2009-01-024-57/+68
| | | | svn path=/trunk/netsurf/; revision=5956
* Remove unnecessary storage of page number in tab addDaniel Silverstone2009-01-021-2/+2
| | | | svn path=/trunk/netsurf/; revision=5955
* Silence lack of return value check warning on fgets()Daniel Silverstone2009-01-021-1/+2
| | | | svn path=/trunk/netsurf/; revision=5954
* Silence format-string warningDaniel Silverstone2009-01-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=5953
* Fix unchecked result warnings for realpathDaniel Silverstone2009-01-021-13/+20
| | | | svn path=/trunk/netsurf/; revision=5952
* A bit of tidying of the GTK options dialog code. Still not ideal, still not ↵Daniel Silverstone2009-01-021-135/+160
| | | | | | warning free. svn path=/trunk/netsurf/; revision=5951
* More lenient refresh delay parsingJohn Mark Bell2008-12-301-2/+10
| | | | svn path=/trunk/netsurf/; revision=5948
* If a GIF has insufficient frame data, display the frames that have been decoded.Chris Young2008-12-301-3/+2
| | | | svn path=/trunk/netsurf/; revision=5947
* Improve pasting into password boxesAdrian Lees2008-12-301-14/+26
| | | | svn path=/trunk/netsurf/; revision=5946
* More efficient layers clippingChris Young2008-12-292-8/+16
| | | | svn path=/trunk/netsurf/; revision=5945
* Complete set of Cairo plotters (from gtk_plotters.c).Chris Young2008-12-291-3/+72
| | | | | | | | | | | All except the polygon plotter - as the graphics.library implementation has problems - are disabled, but can be enabled by defining NS_AMIGA_CAIRO_ALL. Using only the Cairo plotters is much slower than using only the graphics.library plotters (especially clipping which is adding several seconds to rendering with Cairo) and the default "mixed" Cairo state is the recommended configuration for now. svn path=/trunk/netsurf/; revision=5944
* Some bitmap caching - not making much difference and using up a lot of gfx ↵Chris Young2008-12-283-59/+126
| | | | | | | | mem, may need to make this a configurable option. svn path=/trunk/netsurf/; revision=5943
* Update for new SDKChris Young2008-12-282-22/+4
| | | | svn path=/trunk/netsurf/; revision=5942
* Fix crash when launching NetSurf if it is already running.Chris Young2008-12-281-38/+24
| | | | svn path=/trunk/netsurf/; revision=5941
* Minor changes for Amiga Cairo buildChris Young2008-12-284-61/+54
| | | | svn path=/trunk/netsurf/; revision=5940
* SVG support for Amiga version using libsvgtiny and libcairoChris Young2008-12-283-3/+166
| | | | | | | | | Cairo plotter for arcs Cairo support is experimental and can be enabled with option NETSURF_AMIGA_USE_CAIRO For some reason linking against shared objects breaks forms. svn path=/trunk/netsurf/; revision=5939
* Unicode text display. Painfully slow and needs some work wrt text ↵Chris Young2008-12-272-3/+35
| | | | | | | | alignment, colours. The nsfont_width etc functions also need adjustment. svn path=/trunk/netsurf/; revision=5938
* Missed oneChris Young2008-12-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=5937
* Handle opaqueness a bitChris Young2008-12-271-15/+17
| | | | | | | | | | Appears that Composite() has the same problem as BitMapScale() in that trying to scale to a negative co-ordinate destination doesn't work. Still seems a bit faster after adding the additional blit, although www.bbc.co.uk scrolls at a snail's pace since adding alpha blits. svn path=/trunk/netsurf/; revision=5936
* Handle opaqueness a bitChris Young2008-12-272-6/+24
| | | | svn path=/trunk/netsurf/; revision=5935
* Only increase the root element's redraw box to cover margin, if the redraw ↵Michael Drake2008-12-271-18/+28
| | | | | | box isn't already bigger due to protruding descendants. svn path=/trunk/netsurf/; revision=5934
* Update to new APIChris Young2008-12-271-5/+8
| | | | svn path=/trunk/netsurf/; revision=5933
* Fix crash bug.Michael Drake2008-12-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=5932
* Handle replaced inline borders and backgrounds like blocks.Michael Drake2008-12-271-5/+7
| | | | svn path=/trunk/netsurf/; revision=5930
* Do our default page margin with a margin on BODY, like other browsers and ↵Michael Drake2008-12-271-1/+1
| | | | | | the CSS 2.1 spec example default style sheet for HTML 4.01. svn path=/trunk/netsurf/; revision=5928
* Plot backgrounds on the root element over margin box, as per CSS 2.1 spec.Michael Drake2008-12-271-19/+78
| | | | svn path=/trunk/netsurf/; revision=5927
* Reduce memory usageChris Young2008-12-262-67/+79
| | | | svn path=/trunk/netsurf/; revision=5926
* Respect alpha channel in bitmaps, and use Composite() instead of ↵Chris Young2008-12-261-34/+98
| | | | | | | | BitMapScale() under OS4.1 (potentially a little quicker). svn path=/trunk/netsurf/; revision=5925
* Fix display of inline borders when inline has no background.Michael Drake2008-12-261-1/+2
| | | | svn path=/trunk/netsurf/; revision=5924
* Fix some wrap to 80 chars and tabs for indentation.Michael Drake2008-12-261-94/+90
| | | | svn path=/trunk/netsurf/; revision=5923
* A few usability tweaksAdrian Lees2008-12-267-21/+102
| | | | svn path=/trunk/netsurf/; revision=5922
* Don't apply text decoration if the box isn't text.Michael Drake2008-12-221-0/+2
| | | | svn path=/trunk/netsurf/; revision=5921
* C89François Revel2008-12-211-59/+64
| | | | svn path=/trunk/netsurf/; revision=5919
* Rewrite inline rendering. Fixes issues with borders,Michael Drake2008-12-214-119/+393
| | | | | | | | | background colour and background image display when inlines have margins and paddings. Support for background position on inlines. Fix BOX_INLINE descendant calculation to include BOX_INLINE_END. svn path=/trunk/netsurf/; revision=5916
* Update for new SDKChris Young2008-12-205-28/+39
| | | | svn path=/trunk/netsurf/; revision=5915
* Fix css_len2pt conversion from px and use it in the RO front end code.Michael Drake2008-12-162-3/+2
| | | | svn path=/trunk/netsurf/; revision=5914
* Actually check for the existance of the icon before attempting to copy it.Chris Young2008-12-141-7/+11
| | | | svn path=/trunk/netsurf/; revision=5913
* Remove error pageChris Young2008-12-141-4/+3
| | | | svn path=/trunk/netsurf/; revision=5912
* Minor mailto: improvements and infoChris Young2008-12-143-73/+21
| | | | svn path=/trunk/netsurf/; revision=5911
* First attempt at mailto: fetcher using openurl.library.Chris Young2008-12-132-0/+345
| | | | | | | | Doesn't quite work properly because it never calls the callback :) Probably also gets into an infinite loop if "send mailto: URLs to email application" is not ticked in OpenURL Prefs. svn path=/trunk/netsurf/; revision=5910
* Save objectChris Young2008-12-132-10/+36
| | | | svn path=/trunk/netsurf/; revision=5909
* Clear display area when switching tabsChris Young2008-12-131-44/+87
| | | | | | | | Remove always_open_tabs Move pointer filenames to theme files svn path=/trunk/netsurf/; revision=5908
* More changes for search function.Chris Young2008-12-134-17/+89
| | | | | | | Open local file requester now has a hook which filters out files with MIME types that NetSurf does not recognise. svn path=/trunk/netsurf/; revision=5907
* Remove Amiga-specific force_tabsChris Young2008-12-132-13/+4
| | | | svn path=/trunk/netsurf/; revision=5906