summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* Fix formatting of copied or saved text selections.Michael Drake2008-03-312-61/+159
| | | | svn path=/trunk/netsurf/; revision=4063
* Ensure adjust drags before selection adjust selection start point.Michael Drake2008-03-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=4061
* Selection adjustments always change the selection end when click is inside ↵Michael Drake2008-03-292-7/+2
| | | | | | the existing selection. svn path=/trunk/netsurf/; revision=4059
* Change meaning of c->redraw_time to be the earliest time to reflow during ↵Rob Kendrick2008-03-112-3/+3
| | | | | | page asset fetch. Have the time selected vary depending on how long the last reflow took. svn path=/trunk/netsurf/; revision=3925
* Initial attempt at implementing data: URLs. Needs cleaning and verifying ↵Rob Kendrick2008-03-051-0/+1
| | | | | | that I'm using the fetcher API correctly. Appears to work, though. svn path=/trunk/netsurf/; revision=3882
* Squash warnings differently.Michael Drake2008-03-031-4/+3
| | | | svn path=/trunk/netsurf/; revision=3879
* Squash two warnings.Michael Drake2008-03-031-2/+3
| | | | svn path=/trunk/netsurf/; revision=3878
* Periodically reflow the page while fetching a page's objects. Make buffer ↵Michael Drake2008-02-292-5/+17
| | | | | | all rendering default. svn path=/trunk/netsurf/; revision=3874
* Make content_reset actually do what it's meant to (i.e. reset the ↵John Mark Bell2008-02-271-2/+8
| | | | | | | | appropriate members) Fix up CONTENT_MSG_REFRESH scheduled events to gracefully the refresh URL disappearing from under them. svn path=/trunk/netsurf/; revision=3870
* SignednessWarnings.squash()John Mark Bell2008-02-253-47/+66
| | | | | | Aside from a number of instances of const being cast away (mostly relating to the urldb, which is correct to only export const data) this now builds warning-free with GCC 4 on x86, which is nice. svn path=/trunk/netsurf/; revision=3868
* Set default max fetchers per host option to 2.Michael Drake2008-02-251-1/+1
| | | | svn path=/trunk/netsurf/; revision=3865
* Prevent tabbing into textfields whose styling is display: none;John Mark Bell2008-02-071-4/+10
| | | | svn path=/trunk/netsurf/; revision=3849
* Add url_fragment to extract fragment from URLJohn Mark Bell2008-02-031-25/+46
| | | | | | | | Optionally allow url_compare to ignore fragments in comparison Fix handling of url_compare result in a few places Fix redirects which contain fragments in the Location header svn path=/trunk/netsurf/; revision=3826
* Rework handling of HTTP redirects -- we now count the number of redirects ↵John Mark Bell2008-01-281-18/+0
| | | | | | | | | | | | | | | | | | | | followed for a given item and abort if a fixed limit is reached. This fixes sites which have pages that redirect to themselves. Redirect handling is now transparent to clients of fetchcache. The new scheme works as follows: 1) Request content for URL (fetchcache() 2) Start fetch of content (fetchcache_go() 3) If no redirect, continue through LOADING, READY, DONE etc. states as before If redirect, receive NEWPTR for each redirect that occurs, then continue through LOADING, READY, DONE etc. states as before. The upshot of this is that redirects result in extra contents being created. It also means that, until LOADING has been received, the content (and thus the URL being fetched) may change. Therefore, fetchcache clients should expect to have to deal with transient data prior to LOADING occurring. As a necessary side-effect of this, the HTML object URLs and CSS @import URLs are no longer stored alongside the relevant contents. These URLs can be accessed by interrogating the url member of struct content anyway, so it was a rather redundant scheme before. svn path=/trunk/netsurf/; revision=3787
* Fixes for targetting NetBSD (Thanks to Adam Hoka)John Mark Bell2008-01-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=3775
* Implement path plotter (for SVGs within a page).James Bursa2007-12-111-6/+4
| | | | svn path=/trunk/netsurf/; revision=3663
* Increase default font size and line spacing.Michael Drake2007-12-091-2/+2
| | | | svn path=/trunk/netsurf/; revision=3660
* Add empty path plotters to stop crashes.James Bursa2007-11-291-2/+13
| | | | svn path=/trunk/netsurf/; revision=3653
* Add break; (these things help, now and again)John Mark Bell2007-11-041-11/+13
| | | | | | Add ACTION_NONE case to the deferred action switch (shuts GCC up) svn path=/trunk/netsurf/; revision=3649
* Fix frame-related crash (images.google) caused by destruction of current ↵Adrian Lees2007-11-041-11/+22
| | | | | | window when clicking URL/submitting form svn path=/trunk/netsurf/; revision=3644
* Ignore SIGPIPE on all platforms, not just RISC OS.John Mark Bell2007-10-311-0/+9
| | | | svn path=/trunk/netsurf/; revision=3638
* Bug fixes by Franz Korntner.James Bursa2007-10-283-10/+5
| | | | svn path=/trunk/netsurf/; revision=3636
* Remove the old and crap gesture coreDaniel Silverstone2007-09-144-412/+0
| | | | svn path=/trunk/netsurf/; revision=3537
* Fix for Shift+Adjust clicks on links by Christopher Martin.Michael Drake2007-08-261-4/+5
| | | | svn path=/trunk/netsurf/; revision=3533
* Rename default scale option back to "scale" (changed to "option_scale" by ↵James Bursa2007-08-131-1/+1
| | | | | | mistake). svn path=/trunk/netsurf/; revision=3512
* Update all source code file headers to reflect GPL version 2 only and ↵Vincent Sanders2007-08-0826-86/+364
| | | | | | contain appropriate licence text svn path=/trunk/netsurf/; revision=3486
* Fix division by 0 caused by uninitialised scale value.John Mark Bell2007-08-073-26/+41
| | | | | | Break out initialisation of common parts of struct browser_window into their own function. svn path=/trunk/netsurf/; revision=3481
* Add path plotter (for SVG). Requires other implementations.James Bursa2007-08-071-0/+9
| | | | svn path=/trunk/netsurf/; revision=3479
* Move window scaling from platform-specific code to desktop/browser.c. Modify ↵James Bursa2007-08-076-12/+41
| | | | | | gtk gui to handle scaling in the same way as RO. svn path=/trunk/netsurf/; revision=3478
* Add option_suppress_curl_debug and default it to trueDaniel Silverstone2007-06-272-0/+5
| | | | svn path=/trunk/netsurf/; revision=3373
* Add ca_path option which sets CURLOPT_CAPATH.Daniel Silverstone2007-06-272-0/+4
| | | | svn path=/trunk/netsurf/; revision=3369
* Changes to allow building on Solaris.Rob Kendrick2007-06-151-1/+3
| | | | | | | | | * Tested on Solaris Express: Developer Edition, which is between Solaris 10 and 11. * Used gcc, libmng etc packages using pkg-get and blastwave's resources. * Had to build lemon and re2c manually. svn path=/trunk/netsurf/; revision=3350
* Remove the netsurf/ from the include paths and rationalise use of <> vs "" ↵Daniel Silverstone2007-05-3018-121/+121
| | | | | | | | | | | | | | in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
* Add a -v option to enable debug logging. Pass -v by default to the RO runimage.Daniel Silverstone2007-05-302-0/+11
| | | | svn path=/trunk/netsurf/; revision=3306
* Switch version to "2.0 (Development)".James Bursa2007-05-221-2/+2
| | | | svn path=/trunk/netsurf/; revision=3300
* Log libxml2 version in lib_init().James Bursa2007-05-061-3/+10
| | | | svn path=/trunk/netsurf/; revision=3268
* Fix null pointer use when a content with no title is in the local history ↵James Bursa2007-04-181-17/+35
| | | | | | (history_update() was making title null). svn path=/trunk/netsurf/; revision=3256
* Don't block new windows for Adjust-click on target='_blank' links.Richard Wilson2007-04-081-1/+4
| | | | svn path=/trunk/netsurf/; revision=3253
* Fix return value checkJohn Mark Bell2007-04-071-4/+4
| | | | svn path=/trunk/netsurf/; revision=3249
* Open window targets with a new name in a new window. Fix handling of ↵Richard Wilson2007-04-074-46/+68
| | | | | | Adjust-click on a form submit when new window opening is disabled. svn path=/trunk/netsurf/; revision=3248
* Silence noisy loggingJohn Mark Bell2007-04-071-15/+8
| | | | svn path=/trunk/netsurf/; revision=3244
* 1) Fix corruption of history data structure on cloningJohn Mark Bell2007-04-071-2/+2
| | | | | | | | | 2) Only destroy urldb's thumbnail bitmap if it's not the same as the new one. This needs revisiting at a later date such that the mess surrounding who owns bitmap objects is sorted (and so that urldb doesn't need to know about bitmaps) svn path=/trunk/netsurf/; revision=3243
* Add loggingJohn Mark Bell2007-04-071-2/+20
| | | | svn path=/trunk/netsurf/; revision=3242
* Support insertion into textbox after optional trailing space.John Mark Bell2007-04-061-11/+25
| | | | svn path=/trunk/netsurf/; revision=3237
* Minor tidyingJohn Mark Bell2007-03-251-9/+2
| | | | svn path=/trunk/netsurf/; revision=3224
* Content handlers should not call warn_user - they should broadcast the John Mark Bell2007-03-111-1/+5
| | | | | | | | | | error using content_broadcast and leave it to the content owner(s) to decide what to do about it. Only use warn_user for top-level contents. svn path=/trunk/netsurf/; revision=3204
* Apply Darren Salt's keypress callbacl claiming patch, with addition of doc ↵Rob Kendrick2007-03-062-31/+43
| | | | | | comment updates svn path=/trunk/netsurf/; revision=3201
* Stop iframe contents from appearing in global history. Fix by JMB.Michael Drake2007-03-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=3198
* Fix handling of cookies in unverifiable transactions caused by a redirect ↵John Mark Bell2007-02-021-12/+19
| | | | | | from a fetch into a browser window which was varifiable. svn path=/trunk/netsurf/; revision=3165
* Revert r3156 (content cleaner frequency reduction) as it introduces John Mark Bell2007-01-311-15/+1
| | | | | | potential stability issues. svn path=/trunk/netsurf/; revision=3160