summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move SVG code into a new library, libsvgtiny.James Bursa2008-02-033-867/+61
| | | | svn path=/trunk/netsurf/; revision=3837
* Fix makefile and RISC OS !Run file.Michael Drake2008-02-032-19/+19
| | | | svn path=/trunk/netsurf/; revision=3834
* Improve float positioning.Michael Drake2008-02-033-20/+20
| | | | svn path=/trunk/netsurf/; revision=3833
* Stop the repeating LEMON/DEP for the CSS parser with Makefile.unixDaniel Silverstone2008-02-031-0/+4
| | | | svn path=/trunk/netsurf/; revision=3832
* Silence noisy loggingJohn Mark Bell2008-02-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=3830
* Include string.h. Thanks to joty.Michael Drake2008-02-031-0/+1
| | | | svn path=/trunk/netsurf/; revision=3829
* Turn debug output off again. Remove extraneous include.Michael Drake2008-02-031-2/+1
| | | | svn path=/trunk/netsurf/; revision=3828
* Ensure min line length takes into account margins, borders and paddings of ↵Michael Drake2008-02-031-2/+7
| | | | | | objects. svn path=/trunk/netsurf/; revision=3827
* Add url_fragment to extract fragment from URLJohn Mark Bell2008-02-039-47/+118
| | | | | | | | 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
* Remove dubious default CSS rule.Michael Drake2008-02-021-1/+0
| | | | svn path=/trunk/netsurf/; revision=3822
* Ensure button style is the same as input type=button.Michael Drake2008-02-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=3820
* Treat font tag relative sizes of +/- >1 the same as one.Michael Drake2008-02-021-2/+4
| | | | svn path=/trunk/netsurf/; revision=3817
* Update GTK form style.Michael Drake2008-02-021-2/+2
| | | | svn path=/trunk/netsurf/; revision=3816
* Remove unnecessary #ifdef riscosJohn Mark Bell2008-02-021-2/+0
| | | | svn path=/trunk/netsurf/; revision=3815
* Fix GTK build.Michael Drake2008-02-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=3814
* Make text input boxes with height:auto; and no initial value get a sensible ↵Michael Drake2008-02-024-58/+49
| | | | | | height. Make all form elements have their dimensions based on the configured minimum font size, if the current text size is smaller. Remove redundant code for setting radio icon and checkbox sizes. All em/ex based sizes now respect the min font size, when it's in effect. Updated default styles for form elements. svn path=/trunk/netsurf/; revision=3813
* Add function to dump working stylesheetsJohn Mark Bell2008-01-311-0/+22
| | | | svn path=/trunk/netsurf/; revision=3811
* Revert last change because it made the tracker almost unusable.Michael Drake2008-01-301-4/+2
| | | | svn path=/trunk/netsurf/; revision=3810
* Make core fetching code handle verifiability of transactionsJohn Mark Bell2008-01-304-31/+95
| | | | | | | | Make core fetching code be responsible for inserting cookies into the urldb Provide accessor to a fetch's parent url (this is defined as being the URL of the verifiable fetch which caused this one to occur) Make fetchcache's 3xx handling use the parent url when spawning new fetches svn path=/trunk/netsurf/; revision=3809
* Support SUP and SUB tags with relative position in default CSS file.Michael Drake2008-01-301-2/+4
| | | | svn path=/trunk/netsurf/; revision=3808
* Ensure plq is terminated when looking for an URL path.John Mark Bell2008-01-302-2/+19
| | | | | | Ensure fetchcache_redirect() normalizes the redirect destination. svn path=/trunk/netsurf/; revision=3807
* Stop min gif delay option growing every time choices are saved on nsgtk. Use ↵Michael Drake2008-01-291-2/+2
| | | | | | same scale factor as RISC OS. svn path=/trunk/netsurf/; revision=3805
* Add stylesheet for GTK specific rules.Michael Drake2008-01-293-4/+28
| | | | svn path=/trunk/netsurf/; revision=3802
* Tidy default form element styles.Michael Drake2008-01-291-20/+17
| | | | svn path=/trunk/netsurf/; revision=3801
* Fix syntax.Michael Drake2008-01-291-1/+1
| | | | svn path=/trunk/netsurf/; revision=3800
* Reinstate things lost in the last checkins.Michael Drake2008-01-291-3/+5
| | | | svn path=/trunk/netsurf/; revision=3799
* No need to recalculate a value we already have.Michael Drake2008-01-291-10/+5
| | | | svn path=/trunk/netsurf/; revision=3798
* Apply min font size config option to radio icons and checkboxes.Michael Drake2008-01-291-13/+47
| | | | svn path=/trunk/netsurf/; revision=3797
* Make box dump show "gadget".Michael Drake2008-01-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=3796
* Render borders after backgrounds. Handle boxes with overflow hidden or ↵James Bursa2008-01-281-45/+67
| | | | | | scroll and borders correctly. Update copyrights. svn path=/trunk/netsurf/; revision=3792
* Recurse into noscript elements when looking for meta refresh. This would ↵John Mark Bell2008-01-281-1/+13
| | | | | | work perfectly, were it not for libxml's html parser terminating head and starting body on sight of a noscript tag. Joy. svn path=/trunk/netsurf/; revision=3791
* Apply default margin to select and textarea elements too.Michael Drake2008-01-281-2/+2
| | | | svn path=/trunk/netsurf/; revision=3790
* Only needed the vertical position changed.Michael Drake2008-01-281-1/+3
| | | | svn path=/trunk/netsurf/; revision=3789
* Thinly paper over gaping holes in the build system.John Mark Bell2008-01-282-3/+11
| | | | svn path=/trunk/netsurf/; revision=3788
* Rework handling of HTTP redirects -- we now count the number of redirects ↵John Mark Bell2008-01-2811-169/+145
| | | | | | | | | | | | | | | | | | | | 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
* Replace accidentally checked in files with previous ones.Michael Drake2008-01-283-23/+15
| | | | svn path=/trunk/netsurf/; revision=3786
* Fix vertical position of images with margin/borders/padding.Michael Drake2008-01-284-16/+25
| | | | svn path=/trunk/netsurf/; revision=3785
* Ensure images within inline-blocks are shown properly. Fixed by zamez.Michael Drake2008-01-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=3783
* Revert r3781.Michael Drake2008-01-271-4/+0
| | | | svn path=/trunk/netsurf/; revision=3782
* Background area extends to border edge.Michael Drake2008-01-271-0/+4
| | | | svn path=/trunk/netsurf/; revision=3781
* Background area extends to border edge.Michael Drake2008-01-271-34/+38
| | | | svn path=/trunk/netsurf/; revision=3780
* Make inline-blocks have margins. Add defualt margin around form inputs.Michael Drake2008-01-272-5/+5
| | | | svn path=/trunk/netsurf/; revision=3779
* Hopefully fix inline-block positioning. (Stops form elements from overlapping.)Michael Drake2008-01-271-2/+6
| | | | svn path=/trunk/netsurf/; revision=3778
* No need to reduce box height when adding scrollbar.Michael Drake2008-01-261-1/+0
| | | | svn path=/trunk/netsurf/; revision=3777
* Fixes for targetting NetBSD (Thanks to Adam Hoka)John Mark Bell2008-01-262-1/+2
| | | | svn path=/trunk/netsurf/; revision=3775
* Remove old TODO docs.Michael Drake2008-01-222-115/+0
| | | | svn path=/trunk/netsurf/; revision=3761
* Add icon to distinguish online links.Michael Drake2008-01-211-0/+0
| | | | svn path=/trunk/netsurf/; revision=3744
* Update to real new welcome page path.Michael Drake2008-01-191-3/+3
| | | | svn path=/trunk/netsurf/; revision=3735
* Fix symlinksJohn Mark Bell2008-01-197-6/+1
| | | | svn path=/trunk/netsurf/; revision=3734
* Oops; missed default homepageJohn Mark Bell2008-01-191-1/+1
| | | | svn path=/trunk/netsurf/; revision=3733