summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove defines that were never or are no longer used.James Bursa2007-04-301-11/+1
| | | | svn path=/trunk/netsurf/; revision=3259
* Add a few asserts to catch some bugs.James Bursa2007-04-302-4/+20
| | | | svn path=/trunk/netsurf/; revision=3258
* Update NetSurf URL.Michael Drake2007-04-201-1/+1
| | | | svn path=/trunk/netsurf/; revision=3257
* 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
* Fix casts in parameter to gdk_window_raise().James Bursa2007-04-181-3/+3
| | | | svn path=/trunk/netsurf/; revision=3255
* Don't block new windows for Adjust-click on target='_blank' links.Richard Wilson2007-04-081-1/+4
| | | | svn path=/trunk/netsurf/; revision=3253
* Revert last changeJohn Mark Bell2007-04-072-2/+0
| | | | svn path=/trunk/netsurf/; revision=3252
* Add loggingJohn Mark Bell2007-04-072-0/+2
| | | | svn path=/trunk/netsurf/; revision=3251
* nsgtk warning squashesRob Kendrick2007-04-071-4/+5
| | | | svn path=/trunk/netsurf/; revision=3250
* 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
* Remove redundant close window calls.Richard Wilson2007-04-073-3/+0
| | | | svn path=/trunk/netsurf/; revision=3247
* Set minimum META refresh delay to 1sRichard Wilson2007-04-071-0/+5
| | | | svn path=/trunk/netsurf/; revision=3246
* Construct cookies treeview correctly (fixes 1675328)John Mark Bell2007-04-071-7/+5
| | | | svn path=/trunk/netsurf/; revision=3245
* 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-072-3/+3
| | | | | | | | | 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
* Object sizes do not apply when calculating the extent of descendent John Mark Bell2007-04-071-11/+0
| | | | | | bounding boxes. (fixes 1601881) svn path=/trunk/netsurf/; revision=3240
* Fix embedded object + display: none; crash (1695751) (c.f r3236)John Mark Bell2007-04-061-17/+32
| | | | svn path=/trunk/netsurf/; revision=3239
* Support insertion into textbox after optional trailing space.John Mark Bell2007-04-061-11/+25
| | | | svn path=/trunk/netsurf/; revision=3237
* Squash access to freed memory.John Mark Bell2007-04-061-5/+5
| | | | | | | | | | | | | | | | | Actually process form inputs which have been styled display:none; This needs revisiting after 1.0 as the following will still break: <form ..> <div style="display:none;"> <input type="hidden" name="foo" value="bar"/> </div> <input type="submit" name="submit" value="submit"/> </form> The children of the div are not processed (which is correct for display purposes, but results in the hidden input being ignored entirely). A more correct fix would be to perform form input -> gadget creation orthogonally from box tree generation; then styling will have no effect. svn path=/trunk/netsurf/; revision=3236
* Squash memory leakJohn Mark Bell2007-04-051-9/+12
| | | | svn path=/trunk/netsurf/; revision=3235
* Recognise <image> as a synonym for <img> (fixes 1692426)John Mark Bell2007-04-011-0/+2
| | | | svn path=/trunk/netsurf/; revision=3231
* Lose duplicate entryJohn Mark Bell2007-04-011-1/+0
| | | | svn path=/trunk/netsurf/; revision=3230
* Deal with more ways in which meta refresh URLs can be invalid.John Mark Bell2007-04-011-14/+23
| | | | svn path=/trunk/netsurf/; revision=3229
* Fix abort on attempted destruction of CONTENT_DIRECTORY (1690222)John Mark Bell2007-03-283-25/+37
| | | | svn path=/trunk/netsurf/; revision=3228
* Remove collusion between window, menus and search code in order to clear John Mark Bell2007-03-264-63/+94
| | | | | | | | search selection state - this should happen automagically through wimp_event callbacks now. Also tidy search.c so I can read it better ;) svn path=/trunk/netsurf/; revision=3227
* Call close function for submenu windows.Richard Wilson2007-03-263-4/+25
| | | | svn path=/trunk/netsurf/; revision=3226
* Call close functions when automatically closing child windows and when ↵Richard Wilson2007-03-262-3/+10
| | | | | | automatically handlign Cancel buttons. svn path=/trunk/netsurf/; revision=3225
* Minor tidyingJohn Mark Bell2007-03-251-9/+2
| | | | svn path=/trunk/netsurf/; revision=3224
* Fix assertion when table has negative mbp (1579981)John Mark Bell2007-03-251-0/+4
| | | | svn path=/trunk/netsurf/; revision=3222
* Fix handling of scrollbar addition to blocks which have height/width == John Mark Bell2007-03-241-19/+41
| | | | | | AUTO (fixes 1567430) svn path=/trunk/netsurf/; revision=3220
* Fix FP exception when right-aligned tables with margin: auto are nested John Mark Bell2007-03-241-0/+5
| | | | | | | (interaction with floats, resulting in margin[TOP] == AUTO) (fixes 1662931) svn path=/trunk/netsurf/; revision=3218
* Fix crash on WWW-Authenticate header with no realm (1686714)John Mark Bell2007-03-231-11/+14
| | | | svn path=/trunk/netsurf/; revision=3216
* Make <object> attribute handling more spec compliantJohn Mark Bell2007-03-221-10/+31
| | | | svn path=/trunk/netsurf/; revision=3215
* Fix invalidation of unwanted contents.John Mark Bell2007-03-192-1/+23
| | | | svn path=/trunk/netsurf/; revision=3214
* Lose noisy loggingJohn Mark Bell2007-03-182-4/+3
| | | | svn path=/trunk/netsurf/; revision=3213
* Ensure content structures are zero initialised.John Mark Bell2007-03-182-6/+9
| | | | | | | | | Make css_destroy check that the stylesheet pointer exists (content destructors may be called whilst the content is still loading - e.g. if the content type isn't permissable in the context it was loaded from). Fixes 1627413, 1580980. svn path=/trunk/netsurf/; revision=3212
* Ensure content owners check that they are still interested in a content John Mark Bell2007-03-183-13/+42
| | | | | | | | when receiving notification that the content's in error. This prevents content pointers being corrupted when redirects occur. Fixes 1522002, 1551475. svn path=/trunk/netsurf/; revision=3211
* Improve debug output so that content usage may be tracedJohn Mark Bell2007-03-181-9/+17
| | | | svn path=/trunk/netsurf/; revision=3210
* Handle redirects with partial bodies.John Mark Bell2007-03-181-0/+8
| | | | svn path=/trunk/netsurf/; revision=3209
* Fix pasting into writables via IcnClipBrd (fixes 1582072)John Mark Bell2007-03-171-3/+3
| | | | svn path=/trunk/netsurf/; revision=3208
* Default form field maxlength to UINT_MAX (fixes 1620540)John Mark Bell2007-03-112-2/+3
| | | | svn path=/trunk/netsurf/; revision=3205
* Content handlers should not call warn_user - they should broadcast the John Mark Bell2007-03-1111-26/+31
| | | | | | | | | | 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
* Transliterate form submissions (requires an iconv implementation that John Mark Bell2007-03-112-27/+12
| | | | | | | | understands //TRANSLIT - both glibc & libiconv's do, as do Iconv modules >= 0.08) Require Iconv 0.08 svn path=/trunk/netsurf/; revision=3203
* 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
* Apply Darren Salt's patch to implement Open Location/Ctrl-L in nsgtkRob Kendrick2007-03-062-1/+12
| | | | svn path=/trunk/netsurf/; revision=3200
* Reformat and apply Darren Salt's scrollwheel and keyboard scrolling patch, ↵Rob Kendrick2007-03-062-4/+121
| | | | | | although I still can't get the keyboard scrolling to work. svn path=/trunk/netsurf/; revision=3199
* Stop iframe contents from appearing in global history. Fix by JMB.Michael Drake2007-03-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=3198
* Add mention of libmng-dev dependancyRob Kendrick2007-03-061-1/+2
| | | | svn path=/trunk/netsurf/; revision=3197