summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move array definitions for GCC4Richard Wilson2006-07-021-16/+16
| | | | svn path=/trunk/netsurf/; revision=2687
* Make url_plq ensure url_get_components found a pathJohn Mark Bell2006-07-011-25/+30
| | | | | | | Make url_scheme call url_destroy_components in case where no scheme was found. svn path=/trunk/netsurf/; revision=2686
* Fix conversion of URLs beginning "file://". Additionally, John Mark Bell2006-07-011-6/+2
| | | | | | | file://host/... isn't likely, so assume file://path & convert to file:///path svn path=/trunk/netsurf/; revision=2685
* Relax domain matching to allow host a.com to match .a.comJohn Mark Bell2006-07-011-2/+12
| | | | svn path=/trunk/netsurf/; revision=2684
* Don't assume tiled plotting will cover the entire clipping region.Richard Wilson2006-07-011-3/+14
| | | | svn path=/trunk/netsurf/; revision=2683
* Implement knockout rendering (controlled by 'knockout_rendering' option or ↵Richard Wilson2006-07-017-3/+808
| | | | | | Ctrl+F11, default is off). This attempts to minimise the amount of overlapping redraw performed, and thus can drasticly reduce the rendering time of many pages. svn path=/trunk/netsurf/; revision=2682
* Stop possible pollution of the cache.Richard Wilson2006-06-301-8/+16
| | | | svn path=/trunk/netsurf/; revision=2681
* Ensure containing block has valid height for positioning absolute childrenJohn Mark Bell2006-06-291-0/+14
| | | | svn path=/trunk/netsurf/; revision=2680
* Ignore alternate stylesheetsJohn Mark Bell2006-06-291-0/+4
| | | | svn path=/trunk/netsurf/; revision=2679
* Fix crash when url_* failsJohn Mark Bell2006-06-291-12/+20
| | | | svn path=/trunk/netsurf/; revision=2678
* Handle transparent borders correctly when plottingJohn Mark Bell2006-06-291-6/+9
| | | | svn path=/trunk/netsurf/; revision=2677
* Link rel attribute may be a space separated list, take account of this John Mark Bell2006-06-291-2/+2
| | | | | | when looking for stylesheets. svn path=/trunk/netsurf/; revision=2676
* Fix clipping of page background if body shorter than window heightJohn Mark Bell2006-06-291-6/+7
| | | | svn path=/trunk/netsurf/; revision=2675
* Properly take account of padding on containing block.John Mark Bell2006-06-291-9/+22
| | | | svn path=/trunk/netsurf/; revision=2673
* Position specifiers are relative to containing block's padding edge for John Mark Bell2006-06-291-0/+20
| | | | | | absolutely positioned boxes. Compensate for this. svn path=/trunk/netsurf/; revision=2672
* Fix previous commit; it failed to make available_width include mbp such John Mark Bell2006-06-291-11/+5
| | | | | | | that subtracting them after determining the width works in the case where available_width > box->min_width. svn path=/trunk/netsurf/; revision=2671
* Compensate for box->{min_width,max_width} including mbp when John Mark Bell2006-06-291-0/+12
| | | | | | auto-widthing absolutely positioned content. svn path=/trunk/netsurf/; revision=2670
* Only accept cookies from cookie-enabled transactionsJohn Mark Bell2006-06-291-1/+2
| | | | svn path=/trunk/netsurf/; revision=2668
* Only check caret position for writable icons.Richard Wilson2006-06-281-28/+40
| | | | svn path=/trunk/netsurf/; revision=2667
* Handle memory exhaustion better.Richard Wilson2006-06-281-9/+10
| | | | svn path=/trunk/netsurf/; revision=2666
* Trivial warning fix in GTK GUIRob Kendrick2006-06-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=2665
* Rewrite url_join to RFC 3986 compliance, and without the use of regular ↵Richard Wilson2006-06-281-257/+296
| | | | | | expressions. This should speed up pages with lots of links and also fix certain cases where URLs were incorrectly returned. svn path=/trunk/netsurf/; revision=2664
* Fix float placement when it's an exact fit for the width availableJohn Mark Bell2006-06-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=2661
* Fix background: parsing & lose potential memory leakJohn Mark Bell2006-06-281-3/+9
| | | | svn path=/trunk/netsurf/; revision=2660
* Dump RUfl family list if Homerton isn't foundJohn Mark Bell2006-06-281-1/+6
| | | | svn path=/trunk/netsurf/; revision=2659
* Fix URL joining for fragments.Richard Wilson2006-06-271-5/+5
| | | | svn path=/trunk/netsurf/; revision=2658
* Added calls to urldb to load and save the cookie jar at init and exitRob Kendrick2006-06-271-0/+3
| | | | svn path=/trunk/netsurf/; revision=2657
* Massively optimise common URL functions. This should (a) drastically reduce ↵Richard Wilson2006-06-271-238/+321
| | | | | | the start-up time for users with a large history/hotlist, and (b) decrease the loading time for pages with a sizable number of references. svn path=/trunk/netsurf/; revision=2656
* Don't use a regexp to extract scheme name.Richard Wilson2006-06-271-30/+38
| | | | svn path=/trunk/netsurf/; revision=2655
* Remove clean_cookiejar; it's been redundant for yearsJohn Mark Bell2006-06-272-78/+0
| | | | svn path=/trunk/netsurf/; revision=2654
* Relative positioning for absolutely positioned boxesJohn Mark Bell2006-06-261-0/+34
| | | | svn path=/trunk/netsurf/; revision=2653
* Box x,y coordinates are of padding edge relative to parent; John Mark Bell2006-06-261-2/+2
| | | | | | | top,left,bottom,right are of margin edge relative to parent, so add margin and border width when calculating x,y from left,top. svn path=/trunk/netsurf/; revision=2652
* Make box_at_point detection consider absolute children tooJohn Mark Bell2006-06-261-2/+11
| | | | svn path=/trunk/netsurf/; revision=2651
* Fix textarea crashesJohn Mark Bell2006-06-261-0/+3
| | | | svn path=/trunk/netsurf/; revision=2650
* Fix calculation of right margin in case where margin right is autoJohn Mark Bell2006-06-261-5/+14
| | | | | | Initialise available_width correctly for shrink-to-fit widthing. svn path=/trunk/netsurf/; revision=2649
* Implement absolute positioning.James Bursa2006-06-263-234/+638
| | | | svn path=/trunk/netsurf/; revision=2648
* UTF-8 capable single/multi-line text area/display field - needs John Mark Bell2006-06-264-14/+1326
| | | | | | | optimisation, completion of outstanding todos. Use this to display SSL certificate issuer and subject information. svn path=/trunk/netsurf/; revision=2647
* Fix rendering of float children of a hidden box. Render box absolute children.James Bursa2006-06-251-24/+63
| | | | svn path=/trunk/netsurf/; revision=2646
* Lose compiler warningsJohn Mark Bell2006-06-251-2/+3
| | | | svn path=/trunk/netsurf/; revision=2645
* Fix typo in Pinboard workaround (stops it being overly zealous)Rob Kendrick2006-06-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=2644
* Rewrite cookie parser to be more tolerant of junk inputJohn Mark Bell2006-06-243-237/+224
| | | | | | No longer need urldb_init; remove it. svn path=/trunk/netsurf/; revision=2643
* Strip day names from date strings before parsing; these are too variable John Mark Bell2006-06-241-1/+26
| | | | | | | to bother with (and carry no information useful to us) Make expires avpair handling cater for dates after 2038. svn path=/trunk/netsurf/; revision=2642
* Add workaround to bug in Pinboard not displaying some windows when iconisedRob Kendrick2006-06-231-0/+9
| | | | svn path=/trunk/netsurf/; revision=2641
* Changes to struct box for absolute positioning.James Bursa2006-06-212-0/+42
| | | | svn path=/trunk/netsurf/; revision=2640
* Make filename_create_directory check if directory already existsJohn Mark Bell2006-06-204-35/+51
| | | | | | | | Constify return of filename_request Make bitmap save code check for filename_request failure Update ro_gui_view_source to take account of constification svn path=/trunk/netsurf/; revision=2639
* Localise configure icon strings when appropriate.John Mark Bell2006-06-207-341/+494
| | | | | | | | Fix gright menu handling - now writes into display field without attempting to localise the selection string - it's already localised. Update German Messages file appropriately. svn path=/trunk/netsurf/; revision=2638
* Remove assertion of invalid assumption (fixes #1509118)John Mark Bell2006-06-201-2/+2
| | | | svn path=/trunk/netsurf/; revision=2637
* Make cookie file parser more strict (cookies with spaces in the value John Mark Bell2006-06-201-56/+52
| | | | | | | have been seen in the wild). Fix lookup of cookies for top-level paths (i.e. a path segment of "/") svn path=/trunk/netsurf/; revision=2636
* Fix handling of broken Expires avpairsJohn Mark Bell2006-06-191-5/+41
| | | | svn path=/trunk/netsurf/; revision=2633
* Merge cookies changes into head - unvalidated transactions and a UI John Mark Bell2006-06-197-10/+1063
| | | | | | still need implementing. svn path=/trunk/netsurf/; revision=2632