summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add missing return statement.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7633
* Lose redundant assignmentJohn Mark Bell2009-05-291-6/+3
| | | | svn path=/trunk/netsurf/; revision=7632
* Add missing return in error case.John Mark Bell2009-05-291-0/+1
| | | | svn path=/trunk/netsurf/; revision=7631
* This really fixes the resize bug (#63)Chris Young2009-05-291-0/+2
| | | | svn path=/trunk/netsurf/; revision=7630
* Insert a redundant return, as scan-build fails to notice that die() never ↵John Mark Bell2009-05-291-0/+1
| | | | | | returns. svn path=/trunk/netsurf/; revision=7629
* Re-check window dimensions before copying contents in. This stops window ↵Chris Young2009-05-291-3/+6
| | | | | | | | borders getting corrupted and crashes when resizing (unsat bug#63) svn path=/trunk/netsurf/; revision=7628
* Much tidying, additional commentary, and fix for insane bit mask calculation.John Mark Bell2009-05-291-54/+121
| | | | svn path=/trunk/netsurf/; revision=7623
* When computing relative offset values for floats, use block formatting ↵Michael Drake2009-05-281-2/+11
| | | | | | context for containing block, rather than parent. svn path=/trunk/netsurf/; revision=7614
* Lose more redundancyJohn Mark Bell2009-05-281-1/+0
| | | | svn path=/trunk/netsurf/; revision=7613
* We don't care about the result of regexec(); only that it was successful or notJohn Mark Bell2009-05-281-3/+2
| | | | svn path=/trunk/netsurf/; revision=7612
* Correctly propagate plot successJohn Mark Bell2009-05-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=7611
* Revert accidental commit of hacked MakefileJohn Mark Bell2009-05-281-4/+0
| | | | svn path=/trunk/netsurf/; revision=7610
* Lose redundant variable.John Mark Bell2009-05-282-3/+6
| | | | | | Ensure name_t is used in tree_delete_node_internal() svn path=/trunk/netsurf/; revision=7609
* Remove redundant statementsJohn Mark Bell2009-05-281-8/+1
| | | | svn path=/trunk/netsurf/; revision=7608
* And againJohn Mark Bell2009-05-281-0/+4
| | | | svn path=/trunk/netsurf/; revision=7607
* Make some vague attempt at detecting failure to write output.John Mark Bell2009-05-281-0/+10
| | | | svn path=/trunk/netsurf/; revision=7606
* Remove redundant assign, and make case indentation style guide complient.Michael Drake2009-05-281-125/+127
| | | | svn path=/trunk/netsurf/; revision=7605
* Report memory exhaustion -- the whole tree loading stuff needs an overhaul ↵John Mark Bell2009-05-281-0/+4
| | | | | | as it's pretty lax about dealing with memory exhaustion. svn path=/trunk/netsurf/; revision=7604
* Remove unused codeJohn Mark Bell2009-05-281-6/+0
| | | | svn path=/trunk/netsurf/; revision=7603
* Remove redundant code from browser_window_mouse_action_html().John Mark Bell2009-05-281-16/+16
| | | | | | Tidy up browser_window_mouse_track(). svn path=/trunk/netsurf/; revision=7602
* Tidy up background-position parsingJohn Mark Bell2009-05-281-15/+21
| | | | svn path=/trunk/netsurf/; revision=7601
* Remove spurious "domain" variable from urldb_iterate_partial().John Mark Bell2009-05-281-4/+4
| | | | | | | Lose unnecessary increment of rptr in cookie domain prefix matching. Record that, in the long term, we need some kind of TLD service to consult so that (e.g.) .co.uk is not considered a valid domain prefix. svn path=/trunk/netsurf/; revision=7600
* Lose redundant code. Actually ensure that mode is initialised in ↵John Mark Bell2009-05-281-21/+20
| | | | | | ro_gui_theme_update_toolbar_icon(). svn path=/trunk/netsurf/; revision=7598
* Make logic surrounding extraction of URL + referer scheme more sensible.John Mark Bell2009-05-281-37/+30
| | | | | | Always require the fetch URL to have a scheme -- without it, we can't find a fetcher. svn path=/trunk/netsurf/; revision=7597
* Remove redundant increment.Michael Drake2009-05-281-2/+2
| | | | svn path=/trunk/netsurf/; revision=7596
* Remove redundant calculation.Michael Drake2009-05-281-1/+0
| | | | svn path=/trunk/netsurf/; revision=7595
* Reorganise some conditions and only try to deal with min-height and ↵Michael Drake2009-05-281-21/+33
| | | | | | max-height where it should be done. svn path=/trunk/netsurf/; revision=7594
* Limit scope of manually-defined NDEBUG. Purge a bunch of redundant #undef ↵John Mark Bell2009-05-2816-14/+10
| | | | | | NDEBUG. svn path=/trunk/netsurf/; revision=7593
* Avoid dereferencing NULL pointer. Tighten up other icon string ↵John Mark Bell2009-05-281-16/+16
| | | | | | initialisation, too. svn path=/trunk/netsurf/; revision=7592
* Remove unused code.Michael Drake2009-05-271-11/+2
| | | | svn path=/trunk/netsurf/; revision=7591
* Make layout_apply_minmax_height assert if it's called with a box that ↵Michael Drake2009-05-271-1/+2
| | | | | | shouldn't exist. svn path=/trunk/netsurf/; revision=7590
* Pedantic wrap.Michael Drake2009-05-271-1/+2
| | | | svn path=/trunk/netsurf/; revision=7589
* Remove a couple of superfluous conditions.Michael Drake2009-05-271-4/+4
| | | | svn path=/trunk/netsurf/; revision=7588
* Remove dead assignmentMichael Drake2009-05-271-2/+0
| | | | svn path=/trunk/netsurf/; revision=7587
* Custom apha-supporting backfill hook for tiled bitmaps that require it.Chris Young2009-05-261-2/+70
| | | | svn path=/trunk/netsurf/; revision=7553
* Super whizzy fast shiny new tile plotterChris Young2009-05-261-47/+44
| | | | | | | | | | Massively speeds up www.amigaimpact.org, slight improvement on other sites. Unfortunately alpha plotting on tiled btimaps is broken again (makes amigaworld.net difficult to read). May need to reimplement the old tile plotter for alpha bitmaps only, or write my own alpha-supporting backfill hook svn path=/trunk/netsurf/; revision=7550
* Vague attempt at direct renderingChris Young2009-05-252-42/+76
| | | | | | | | THIS IS NOT AND PROBABLY NEVER WILL BE IN ANY WAY USEFUL EXCEPT FOR DEBUGGING! In particular it will probably crash when opening/closing multiple windows and the display is offset incorrectly. svn path=/trunk/netsurf/; revision=7547
* Change back to Smart Refresh windowsChris Young2009-05-251-2/+2
| | | | svn path=/trunk/netsurf/; revision=7543
* Reduce flickerChris Young2009-05-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=7542
* Prevent gadget and menu disable/enable magic from acting on frames (this ↵Chris Young2009-05-241-2/+8
| | | | | | | | fixes bug#207 at bugs.os4depot.net) svn path=/trunk/netsurf/; revision=7541
* Add link to changelogChris Young2009-05-231-0/+2
| | | | svn path=/trunk/netsurf/; revision=7539
* Fix crash when pages are loadingChris Young2009-05-231-1/+5
| | | | svn path=/trunk/netsurf/; revision=7537
* Add OpenSSL to the cflags/ldflags.John Mark Bell2009-05-231-8/+12
| | | | | | | | Fix GTK installation target. This is based on a patch from Dmitry Artamonow. svn path=/trunk/netsurf/; revision=7530
* Missing WITH_NS_SVG #ifdefChris Young2009-05-192-0/+4
| | | | svn path=/trunk/netsurf/; revision=7524
* Add ability to copy SVGs to the clipboard and save in IFF DR2D format.Chris Young2009-05-199-13/+577
| | | | svn path=/trunk/netsurf/; revision=7523
* Too many 0sChris Young2009-05-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=7522
* Add Save as IFF to main menusChris Young2009-05-178-28/+109
| | | | | | Disable menu items that aren't relevant for current content svn path=/trunk/netsurf/; revision=7521
* Allow Copy menu to copy the image currently displayed, if we aren't ↵Chris Young2009-05-171-4/+16
| | | | | | | | displaying text Fix some warnings svn path=/trunk/netsurf/; revision=7520
* Fix alpha testing, set correctly for ILBMsChris Young2009-05-171-2/+2
| | | | svn path=/trunk/netsurf/; revision=7519
* IFF save now works - needed an unexpected NULL as the first parameter to ↵Chris Young2009-05-162-12/+3
| | | | | | | | | | DTM_WRITE DTA_ObjName is now the URL, as this is the only field that is being written by picture.datatype (bug in picture.datatype?). ObjAuthor and ObjAnnotation left in as the DTM_COPY method might be able to use them. svn path=/trunk/netsurf/; revision=7518