summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Squash leaksJohn Mark Bell2009-02-181-0/+3
| | | | svn path=/trunk/netsurf/; revision=6559
* Fix ucs4->utf8 conversion. It probably helps to return the number of bytes ↵John Mark Bell2009-02-181-1/+1
| | | | | | in the buffer, rather than the free space. svn path=/trunk/netsurf/; revision=6558
* add simplistic filled polygon plotterVincent Sanders2009-02-181-10/+187
| | | | svn path=/trunk/netsurf/; revision=6557
* fix missing free on errorVincent Sanders2009-02-181-1/+3
| | | | svn path=/trunk/netsurf/; revision=6556
* AUTO <> YES.John Mark Bell2009-02-181-1/+1
| | | | svn path=/trunk/netsurf/; revision=6555
* Remove redundant PNGs.Michael Drake2009-02-182-0/+0
| | | | svn path=/trunk/netsurf/; revision=6554
* Add some initial toolbar icon PNGs.Michael Drake2009-02-185-0/+0
| | | | svn path=/trunk/netsurf/; revision=6553
* Remove misleading commentJohn Mark Bell2009-02-171-2/+0
| | | | svn path=/trunk/netsurf/; revision=6552
* Make framebuffer frontend's nsfont_width use the number of characters to ↵John Mark Bell2009-02-171-1/+1
| | | | | | calculate the width of a string. svn path=/trunk/netsurf/; revision=6551
* Port our UTF-8 routines to parserutils (only enabled when building against ↵John Mark Bell2009-02-173-100/+257
| | | | | | | | | Hubbub). Sync our temporary internal copies of these functions with parserutils (which is rather better tested and fixes a number of known bugs in NetSurf's previous UTF-8 handling). Ideally, this will be the only place in NetSurf that has any dependency on parserutils, so port the amiga font code to our internal APIs. svn path=/trunk/netsurf/; revision=6550
* switch to tlsas imagesVincent Sanders2009-02-173-50/+124
| | | | svn path=/trunk/netsurf/; revision=6549
* add stop buttonVincent Sanders2009-02-174-4/+150
| | | | svn path=/trunk/netsurf/; revision=6548
* Account for new paths to search for libs & headers in Haiku.François Revel2009-02-171-0/+5
| | | | svn path=/trunk/netsurf/; revision=6547
* Add new pointer PNGs.Michael Drake2009-02-1715-0/+0
| | | | svn path=/trunk/netsurf/; revision=6546
* Whoops. It looks like I broke the framebuffer and debug builds.John Mark Bell2009-02-171-7/+3
| | | | svn path=/trunk/netsurf/; revision=6545
* Divorce PDF export and printing.John Mark Bell2009-02-179-202/+202
| | | | | | At some point, the RISC OS printing code should be ported to the core page-based output engine. svn path=/trunk/netsurf/; revision=6544
* Squash warnings from GTK.John Mark Bell2009-02-173-2914/+2049
| | | | | | | | | | Rework export_pdf and print menu handlers to not leak memory, actually check return values, and stop processing in those cases. Many pedantic whitespace changes. Remove 3 spurious labels from the tab notebook in netsurf.glade. Make PDF export menu entry sensitive by default. Make Print preview menu entry insensitive, as it's unsupported. svn path=/trunk/netsurf/; revision=6543
* Make redirects behave as a NOP wrt the verifiability of fetches.John Mark Bell2009-02-163-2/+34
| | | | | | Apparently, the interweb depends on this. svn path=/trunk/netsurf/; revision=6542
* Fix BeOS build. Please try to patch all platforms when breaking things like ↵François Revel2009-02-161-2/+3
| | | | | | this :p svn path=/trunk/netsurf/; revision=6541
* Squash warning when built without WITH_SSLJohn Mark Bell2009-02-151-0/+4
| | | | svn path=/trunk/netsurf/; revision=6540
* make pointer image change Vincent Sanders2009-02-155-18/+62
| | | | svn path=/trunk/netsurf/; revision=6538
* Need an additional softlink to stop the build failing if no libcrypto.a is ↵Chris Young2009-02-151-0/+1
| | | | | | | | present and we are linking with shared objects. svn path=/trunk/netsurf/; revision=6531
* Remove some more options that aren't needed with latest SDKChris Young2009-02-151-2/+2
| | | | svn path=/trunk/netsurf/; revision=6530
* Remove dummy librariesChris Young2009-02-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=6529
* Fix Amiga SSL buildChris Young2009-02-152-1/+4
| | | | svn path=/trunk/netsurf/; revision=6528
* Re-enable the ability to control the SSL certificate UI's inclusion. As a ↵Daniel Silverstone2009-02-153-13/+60
| | | | | | side-effect, NetSurf won't build SSL unless the cURL on the system is linked against OpenSSL svn path=/trunk/netsurf/; revision=6526
* Fix silly mistake moving cursor to top left all the timeVincent Sanders2009-02-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=6502
* Add VNC server framebuffer frontendVincent Sanders2009-02-144-0/+359
| | | | svn path=/trunk/netsurf/; revision=6501
* fix type warning in LOG statementVincent Sanders2009-02-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=6493
* Fix character sign issue causing corrupt characters to be plottedVincent Sanders2009-02-143-23/+27
| | | | | | Fixed warnings from making signs explicit svn path=/trunk/netsurf/; revision=6491
* fix mouse over co-ordinates to take into account scroll offsetsVincent Sanders2009-02-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=6489
* Fix resource handling buy copying the GTK approachVincent Sanders2009-02-1411-77/+129
| | | | | | Cleanup mouse movement handlig svn path=/trunk/netsurf/; revision=6486
* Fix a bug where public screens would remain open if NetSurf was the last visitorChris Young2009-02-141-0/+5
| | | | | | window to close. svn path=/trunk/netsurf/; revision=6485
* move mouse movement handling to common place and make it cope with Vincent Sanders2009-02-142-3/+24
| | | | | | passing movement to browser window if inside svn path=/trunk/netsurf/; revision=6475
* make url bar workVincent Sanders2009-02-1310-415/+696
| | | | | | | make SDL frontend keypresses more sensible split out inline image data into a seperate source file svn path=/trunk/netsurf/; revision=6469
* Ensure that neither the current fetch host nor the referrer is an IP address ↵John Mark Bell2009-02-131-3/+15
| | | | | | before attempting to domain match them. svn path=/trunk/netsurf/; revision=6466
* make statusbar workVincent Sanders2009-02-133-2/+28
| | | | svn path=/trunk/netsurf/; revision=6465
* alter mouse click handling so browser window is uses the same interface Vincent Sanders2009-02-137-32/+72
| | | | | | as other root window widgets svn path=/trunk/netsurf/; revision=6464
* Even fuzzier domain matching.John Mark Bell2009-02-131-23/+45
| | | | svn path=/trunk/netsurf/; revision=6463
* Inintial implementation of framebuffer widgetsVincent Sanders2009-02-124-9/+454
| | | | svn path=/trunk/netsurf/; revision=6462
* Fix default CSS file path.Michael Drake2009-02-121-29/+29
| | | | svn path=/trunk/netsurf/; revision=6457
* Fix window clipping and introduce concept of "root" framebuffer window to ↵Vincent Sanders2009-02-129-24/+160
| | | | | | allow for navigation and status bars svn path=/trunk/netsurf/; revision=6456
* add some instrructions on building teh framebuffer port, heavily based on ↵Vincent Sanders2009-02-121-0/+172
| | | | | | GTK document svn path=/trunk/netsurf/; revision=6455
* add history navigationVincent Sanders2009-02-123-1/+20
| | | | svn path=/trunk/netsurf/; revision=6451
* Symlink Aliases file into framebuffer resourcesJohn Mark Bell2009-02-121-0/+1
| | | | svn path=/trunk/netsurf/; revision=6450
* Enable support for hubbub in the framebuffer frontend.John Mark Bell2009-02-122-0/+25
| | | | svn path=/trunk/netsurf/; revision=6449
* stop SDL frontend consuming all available CPU when idelVincent Sanders2009-02-114-8/+11
| | | | svn path=/trunk/netsurf/; revision=6448
* make schedule_run return if it has active jobs to scheduleVincent Sanders2009-02-116-10/+15
| | | | svn path=/trunk/netsurf/; revision=6447
* Fix SDL frontend inputVincent Sanders2009-02-119-11/+114
| | | | svn path=/trunk/netsurf/; revision=6446
* Add limits.h to fb_gui.c for INT_MAXRob Kendrick2009-02-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=6429