summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Allow building of AmigaOS4 Cairo and non-Cairo versions of NetSurf in same ↵Chris Young2010-05-033-4/+6
| | | | | | source tree svn path=/trunk/netsurf/; revision=10544
* Ensure we are using the libpng 1.2 includes, as OS4 Cairo is using a deprecatedChris Young2010-05-033-4/+4
| | | | | | function which does not exist in libpng 1.4. svn path=/trunk/netsurf/; revision=10543
* Lay out to correct paper width for printing.Steve Fryatt2010-05-021-3/+2
| | | | svn path=/trunk/netsurf/; revision=10542
* Remove erroneous assertion: there may be no bitmap object if there was no ↵John Mark Bell2010-05-011-0/+9
| | | | | | PNG data. svn path=/trunk/netsurf/; revision=10540
* Forcibly disable PDF export support until it gets fixed.John Mark Bell2010-05-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=10539
* Update root certificatesChris Young2010-05-011-13/+655
| | | | svn path=/trunk/netsurf/; revision=10538
* Update 2 SObjs installation (create links for updated libpng and unnecessary ↵Chris Young2010-04-302-8/+36
| | | | | | | | clutter for libz) svn path=/trunk/netsurf/; revision=10537
* Restyle developer list.Michael Drake2010-04-301-56/+77
| | | | svn path=/trunk/netsurf/; revision=10536
* Correct name.Steve Fryatt2010-04-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=10535
* Update definition of "NetSurf Developers". Pedantic spelling changes.John Mark Bell2010-04-301-10/+60
| | | | svn path=/trunk/netsurf/; revision=10533
* Tweak for OS4.1 Update 2Chris Young2010-04-301-2/+2
| | | | svn path=/trunk/netsurf/; revision=10532
* Fix assert when clicking empty text boxesChris Young2010-04-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=10531
* Consolidate several 'myrealloc' functions into ns_realloc, rename one which ↵Daniel Silverstone2010-04-3010-108/+42
| | | | | | *is* different, thereby eliminating the word 'myrealloc' from the NS codebase svn path=/trunk/netsurf/; revision=10530
* Include as many of the licence texts, and which components they apply to, ↵Rob Kendrick2010-04-306-23/+1817
| | | | | | for as much as I can think of to the about document. svn path=/trunk/netsurf/; revision=10529
* ensure widget redraw flag is correctly updatedVincent Sanders2010-04-301-0/+2
| | | | svn path=/trunk/netsurf/; revision=10528
* Add missing includesJohn Mark Bell2010-04-302-0/+2
| | | | svn path=/trunk/netsurf/; revision=10525
* It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by ↵John Mark Bell2010-04-3014-30/+76
| | | | | | | | the C standard (whereas realloc(NULL, size) --> malloc(size) is). Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
* Don't check if the next character is outside the printable string, if it is ↵Chris Young2010-04-291-15/+6
| | | | | | | | it'll pick up the NULL terminator anyway. svn path=/trunk/netsurf/; revision=10523
* Text kerningChris Young2010-04-291-17/+58
| | | | svn path=/trunk/netsurf/; revision=10522
* More correct font width calculations/placingChris Young2010-04-291-4/+10
| | | | svn path=/trunk/netsurf/; revision=10518
* Possibly more accurate text placementChris Young2010-04-291-3/+3
| | | | svn path=/trunk/netsurf/; revision=10517
* Change schedule_run to a BOOL as this more standard for platform code.Chris Young2010-04-292-4/+2
| | | | svn path=/trunk/netsurf/; revision=10516
* fix pending redraw discoveryVincent Sanders2010-04-284-10/+21
| | | | svn path=/trunk/netsurf/; revision=10515
* The schedule_run function is only called by the frontends so remove it from ↵Vincent Sanders2010-04-288-15/+47
| | | | | | | | | the core header and add its definition to the frontend headers. Alter the framebuffer schedule_run to return the time untill the next event. svn path=/trunk/netsurf/; revision=10512
* Update fonts immediately after requester use/saveChris Young2010-04-281-0/+3
| | | | svn path=/trunk/netsurf/; revision=10511
* Don't list unvisited pagesChris Young2010-04-281-0/+3
| | | | svn path=/trunk/netsurf/; revision=10510
* Ensure ami_remove_timer_event code doesn't get executed unless necessary.Chris Young2010-04-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=10509
* Bump max memory cache size from 6.4MB to 64MB.Michael Drake2010-04-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=10506
* fill bottom right hand corner of framebuffer furnitureVincent Sanders2010-04-284-1/+31
| | | | svn path=/trunk/netsurf/; revision=10505
* Reformat all tabs when window size changesChris Young2010-04-271-4/+18
| | | | svn path=/trunk/netsurf/; revision=10504
* Unref uri after sending it to hlcache when requesting a css pending import, ↵Daniel Silverstone2010-04-271-0/+3
| | | | | | so that we don't leak the uris svn path=/trunk/netsurf/; revision=10503
* Log any remaining interned strings (there should be none)John Mark Bell2010-04-271-0/+7
| | | | svn path=/trunk/netsurf/; revision=10502
* First step to fixing memory leaks -- Box model no longer leaks computed stylesDaniel Silverstone2010-04-276-36/+56
| | | | svn path=/trunk/netsurf/; revision=10500
* Improve handling of percentage margins and paddings on floats. Fixes ↵Michael Drake2010-04-271-10/+39
| | | | | | pond.org.uk. This is still not ideal and there are cases where we don't match other browsers. svn path=/trunk/netsurf/; revision=10497
* Fix vertical placement of absolute positioned inlines using staic position. ↵Michael Drake2010-04-271-17/+25
| | | | | | Simplify placement of inlines on a line. svn path=/trunk/netsurf/; revision=10495
* Clean up caches on exitJohn Mark Bell2010-04-275-5/+122
| | | | svn path=/trunk/netsurf/; revision=10494
* Make sure that an event occurred before inspecting itJohn Mark Bell2010-04-271-5/+5
| | | | svn path=/trunk/netsurf/; revision=10493
* Ensure that we clean up the root browser windowJohn Mark Bell2010-04-271-9/+5
| | | | svn path=/trunk/netsurf/; revision=10492
* Fix float wrap issue. (Amiga.org nav bar.)Michael Drake2010-04-261-1/+2
| | | | svn path=/trunk/netsurf/; revision=10490
* hopefully fix the _GNU_SOURCE messVincent Sanders2010-04-262-9/+19
| | | | svn path=/trunk/netsurf/; revision=10487
* Custom version of SearchEngines file rather than modifying it during ↵Chris Young2010-04-251-0/+21
| | | | | | | | installation (fixes crash with Installer) svn path=/trunk/netsurf/; revision=10484
* Remove SearchEngines linkChris Young2010-04-251-1/+0
| | | | svn path=/trunk/netsurf/; revision=10483
* Custom version of SearchEngines file rather than modifying it during ↵Chris Young2010-04-251-11/+0
| | | | | | | | installation (fixes crash with Installer) svn path=/trunk/netsurf/; revision=10482
* Update comment for new cache.Michael Drake2010-04-251-1/+1
| | | | svn path=/trunk/netsurf/; revision=10481
* Don't show export options if PDF export disabled. Use options if present.Chris Young2010-04-252-3/+5
| | | | svn path=/trunk/netsurf/; revision=10480
* Squash warnings in RISC OS build.John Mark Bell2010-04-242-6/+9
| | | | | | Replace use of strnlen with strlen and max. svn path=/trunk/netsurf/; revision=10479
* Fix typo.Michael Drake2010-04-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=10478
* Ensure menu state is correct when switching tabsChris Young2010-04-243-38/+50
| | | | svn path=/trunk/netsurf/; revision=10476
* Avoid errors running makepackageChris Young2010-04-242-1/+0
| | | | | | | | fitr was written by me, and included for convenience (the install script needs it). There are no distribution restrictions when using it wrt the OS4 version of NetSurf. See http://www.unsatisfactorysoftware.co.uk/fitr svn path=/trunk/netsurf/; revision=10475
* remove _GNU_SOURCE define from everywhere.Vincent Sanders2010-04-2422-39/+13
| | | | | | strndup is not standard so provide an implementation. svn path=/trunk/netsurf/; revision=10474