summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't consider top/left of descendant box when applying box overflow scrollbars.Michael Drake2011-02-241-8/+6
| | | | svn path=/trunk/netsurf/; revision=11792
* Make no-cache a tristate. In the case of a forced reload, we want to ↵John Mark Bell2011-02-241-6/+21
| | | | | | revalidate once only. svn path=/trunk/netsurf/; revision=11791
* Revert the functional change from r11789: the no-cache directive forces us ↵John Mark Bell2011-02-241-1/+0
| | | | | | to revalidate a cached object, not reject it entirely. svn path=/trunk/netsurf/; revision=11790
* Ensure cache hits after a forced reload -- don't even attempt to reuse ↵John Mark Bell2011-02-241-3/+6
| | | | | | objects with the no_cache flag set (as they'll never be considered fresh, thus requiring a round trip to the server every time they're used). Instead, we'll fetch a new object, which will be considered fresh for caching purposes. svn path=/trunk/netsurf/; revision=11789
* Apply margin before clear.Michael Drake2011-02-241-2/+2
| | | | svn path=/trunk/netsurf/; revision=11786
* Handle text-indent in layout_minmax_line(). (Fixes #3187505; scattering of ↵Michael Drake2011-02-241-9/+22
| | | | | | social networking icons on BBC News.) svn path=/trunk/netsurf/; revision=11785
* Get filename for downloads from core.Sven Weidauer2011-02-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=11784
* Use cache control data invalidation function everywhere we want the cache ↵John Mark Bell2011-02-241-14/+14
| | | | | | | | | control data reset. Fix cache control data invalidation to reset the age and max_age fields to INVALID_AGE. Fix cache control data reset on encountering an HTTP response line to occur before we fill in the response time, rather than after it. svn path=/trunk/netsurf/; revision=11783
* Castrate favicon fetching. I've lost count of how much pain this has caused.John Mark Bell2011-02-241-1/+3
| | | | svn path=/trunk/netsurf/; revision=11782
* Very basic resource selection (resource: simply points to PROGDIR:Resources)Chris Young2011-02-231-1/+6
| | | | svn path=/trunk/netsurf/; revision=11781
* Updates required to build with previous commitChris Young2011-02-232-10/+37
| | | | svn path=/trunk/netsurf/; revision=11780
* Disable fast scrolling for scaled contents for nowChris Young2011-02-231-8/+6
| | | | svn path=/trunk/netsurf/; revision=11779
* Improve commentary.John Mark Bell2011-02-231-2/+6
| | | | | | Stop leaking object_scheme in error cases. svn path=/trunk/netsurf/; revision=11778
* Make resource paths global static, as it's only used in hereJohn Mark Bell2011-02-231-1/+1
| | | | svn path=/trunk/netsurf/; revision=11777
* Remove unnecessary debugJohn Mark Bell2011-02-231-9/+0
| | | | svn path=/trunk/netsurf/; revision=11776
* Fix backend fetcher poll loopsJohn Mark Bell2011-02-234-22/+32
| | | | svn path=/trunk/netsurf/; revision=11775
* Get download filenames from the core.Steve Fryatt2011-02-231-29/+30
| | | | svn path=/trunk/netsurf/; revision=11774
* The frontend has no business calling fetch_poll(). Stop it.John Mark Bell2011-02-231-1/+0
| | | | svn path=/trunk/netsurf/; revision=11773
* add resource handlingVincent Sanders2011-02-2323-306/+663
| | | | | | move gtk and framebuffer to use generic resource handling svn path=/trunk/netsurf/; revision=11772
* Get filename from coreChris Young2011-02-231-1/+1
| | | | svn path=/trunk/netsurf/; revision=11771
* When box has no style, handle descendant calc as for overflow: visible.Michael Drake2011-02-231-2/+3
| | | | svn path=/trunk/netsurf/; revision=11770
* Hide implementation detailJohn Mark Bell2011-02-232-50/+50
| | | | svn path=/trunk/netsurf/; revision=11769
* Obtain download filename from the coreJohn Mark Bell2011-02-232-21/+7
| | | | svn path=/trunk/netsurf/; revision=11768
* Consider filename in Content-Disposition header when downloading, or ↵John Mark Bell2011-02-232-0/+89
| | | | | | generate reasonably sane default if there isn't one. svn path=/trunk/netsurf/; revision=11767
* Fix the build.François Revel2011-02-223-5/+6
| | | | svn path=/trunk/netsurf/; revision=11766
* Parser for Content-Disposition headerJohn Mark Bell2011-02-222-0/+48
| | | | svn path=/trunk/netsurf/; revision=11765
* Fix silly.Michael Drake2011-02-221-1/+2
| | | | svn path=/trunk/netsurf/; revision=11764
* Fix text clipping bug.Michael Drake2011-02-221-3/+3
| | | | svn path=/trunk/netsurf/; revision=11763
* Fix bug #3189352: ensure vertical extent of toolbars is set correctly.Steve Fryatt2011-02-221-5/+20
| | | | svn path=/trunk/netsurf/; revision=11762
* Merged MakefileOle Loots2011-02-221-2/+1
| | | | svn path=/trunk/netsurf/; revision=11761
* Updated package script ( reduced stack size )Ole Loots2011-02-221-22/+9
| | | | svn path=/trunk/netsurf/; revision=11760
* Updated resourcesOle Loots2011-02-222-2/+2
| | | | svn path=/trunk/netsurf/; revision=11759
* Updated docsOle Loots2011-02-225-18/+316
| | | | svn path=/trunk/netsurf/; revision=11758
* Zero-pad colours in plain text output.Michael Drake2011-02-221-1/+1
| | | | svn path=/trunk/netsurf/; revision=11757
* Child bbox is relative to current box.Michael Drake2011-02-221-0/+5
| | | | svn path=/trunk/netsurf/; revision=11756
* Child's descendant bbox only affects current box's bbox if the child has ↵Michael Drake2011-02-221-5/+14
| | | | | | overflow:visible. svn path=/trunk/netsurf/; revision=11755
* Add function to get a box's border edge bbox, and use it to find initial ↵Michael Drake2011-02-221-6/+26
| | | | | | descendant bbox. svn path=/trunk/netsurf/; revision=11754
* Simplify descendant bbox calculations.Michael Drake2011-02-221-40/+41
| | | | svn path=/trunk/netsurf/; revision=11753
* Reduce redraw flicker when changing URL bar extent.Steve Fryatt2011-02-211-8/+11
| | | | svn path=/trunk/netsurf/; revision=11752
* Fixed drawing of dotted lines.Ole Loots2011-02-211-4/+8
| | | | svn path=/trunk/netsurf/; revision=11751
* Slightly more useful behaviour if we can't handle an URL when downloadingJohn Mark Bell2011-02-211-8/+12
| | | | svn path=/trunk/netsurf/; revision=11750
* Fix bug #3188385: ensure that options_snoptionf terminates its outputJohn Mark Bell2011-02-211-0/+4
| | | | svn path=/trunk/netsurf/; revision=11749
* Fix bug #3188376: there may be no window for a download if there were no ↵John Mark Bell2011-02-211-3/+7
| | | | | | | | headers or data. Additionally, ensure we clean up on error. svn path=/trunk/netsurf/; revision=11748
* Fix typo so the mac port compilesSven Weidauer2011-02-211-1/+1
| | | | svn path=/trunk/netsurf/; revision=11747
* Remove knockout from html_redraw, and use it in browser_window_redraw and ↵Michael Drake2011-02-213-19/+34
| | | | | | thumbnail_redraw. svn path=/trunk/netsurf/; revision=11746
* Squash warningsJohn Mark Bell2011-02-201-2/+2
| | | | svn path=/trunk/netsurf/; revision=11745
* Ensure returned length is initialisedJohn Mark Bell2011-02-201-2/+2
| | | | svn path=/trunk/netsurf/; revision=11744
* Fix comment typo and update formatting.Michael Drake2011-02-201-4/+4
| | | | svn path=/trunk/netsurf/; revision=11743
* Fix wrap.Michael Drake2011-02-201-62/+109
| | | | svn path=/trunk/netsurf/; revision=11742
* Merge branches/stevef/toolbars to trunk.Steve Fryatt2011-02-2048-5313/+10688
| | | | svn path=/trunk/netsurf/; revision=11741