summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* make url character checks table driven and remove expensive strchrVincent Sanders2011-10-051-19/+150
| | | | svn path=/trunk/netsurf/; revision=12951
* Handle upper case hex.Michael Drake2011-10-051-2/+2
| | | | svn path=/trunk/netsurf/; revision=12950
* make nsurl__create_from_section correctly escape characters as per RFC3986Vincent Sanders2011-10-042-9/+34
| | | | svn path=/trunk/netsurf/; revision=12948
* Ensure refcounts add upJohn Mark Bell2011-10-031-0/+1
| | | | svn path=/trunk/netsurf/; revision=12944
* Remove LOG.Michael Drake2011-10-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=12936
* Fix host/path with no scheme.Michael Drake2011-10-031-3/+5
| | | | svn path=/trunk/netsurf/; revision=12935
* More conversion to nsurl. (box->href, object params, imagemaps, (i)frames)Michael Drake2011-10-031-0/+6
| | | | svn path=/trunk/netsurf/; revision=12933
* Fix parse of url with host name only.Michael Drake2011-10-031-0/+2
| | | | svn path=/trunk/netsurf/; revision=12925
* Fragment component doesn't include hash.Michael Drake2011-10-031-2/+13
| | | | svn path=/trunk/netsurf/; revision=12924
* lwc version of ring function.Michael Drake2011-09-291-0/+19
| | | | svn path=/trunk/netsurf/; revision=12911
* Add function to get a nsurl with fragment removed from a nsurl.Michael Drake2011-09-282-0/+47
| | | | svn path=/trunk/netsurf/; revision=12903
* Squash erroneous warnings abuout uninitalised variable use from gcc 3.4.6.Michael Drake2011-09-271-11/+11
| | | | svn path=/trunk/netsurf/; revision=12901
* Port fetch layer to nsurl. Remove unused fetch_get_referer function.Michael Drake2011-09-271-4/+4
| | | | svn path=/trunk/netsurf/; revision=12899
* s/nsurl_get_lwc/nsurl_get_component/Michael Drake2011-09-272-2/+2
| | | | svn path=/trunk/netsurf/; revision=12898
* Add nsurl_get_lwc function.Michael Drake2011-09-262-0/+69
| | | | svn path=/trunk/netsurf/; revision=12894
* Simply return bool from nsurl_compare.Michael Drake2011-09-262-32/+32
| | | | svn path=/trunk/netsurf/; revision=12889
* Change if/else if ladder to a switch.Michael Drake2011-09-261-16/+21
| | | | svn path=/trunk/netsurf/; revision=12887
* Updated documentation.Michael Drake2011-09-261-1/+0
| | | | svn path=/trunk/netsurf/; revision=12884
* Add means to find out if a NetSurf URL object contains a given component.Michael Drake2011-09-262-0/+81
| | | | svn path=/trunk/netsurf/; revision=12883
* Don't return length from nsurl_access.Michael Drake2011-09-262-6/+4
| | | | svn path=/trunk/netsurf/; revision=12882
* Assert that the url exists before reducing its reference count. Thanks to ↵Michael Drake2011-09-231-2/+2
| | | | | | Martin Bazley. svn path=/trunk/netsurf/; revision=12865
* nsurl_access must return const.Michael Drake2011-09-222-2/+2
| | | | svn path=/trunk/netsurf/; revision=12863
* Simplify nsurl_access and sync implementation with API.Michael Drake2011-09-222-24/+77
| | | | svn path=/trunk/netsurf/; revision=12862
* Add nsurl_ref for copying, replace nsurl_destroy with nsurl_unref, and add ↵Michael Drake2011-09-221-4/+37
| | | | | | nsurl_access for accessing a pointer to string data internal to the NetSurf URL object. svn path=/trunk/netsurf/; revision=12861
* New URL handling (unused atm).Michael Drake2011-09-213-1/+1471
| | | | svn path=/trunk/netsurf/; revision=12843
* make high level cache take a parameter structureVincent Sanders2011-09-081-2/+2
| | | | | | make hlcache have a single global container svn path=/trunk/netsurf/; revision=12779
* Content interface to get at contextual content at point.Michael Drake2011-09-061-0/+9
| | | | svn path=/trunk/netsurf/; revision=12753
* Squash warningsJohn Mark Bell2011-09-051-2/+4
| | | | svn path=/trunk/netsurf/; revision=12721
* Sniff content types where appropriate.John Mark Bell2011-09-041-1/+3
| | | | | | We never sniff for CSS, nor for non-page artefacts (e.g. treeview icons) svn path=/trunk/netsurf/; revision=12707
* Skip over credentials when lower casing hostJohn Mark Bell2011-07-241-1/+13
| | | | svn path=/trunk/netsurf/; revision=12624
* Refactor http utilitiesJohn Mark Bell2011-07-0818-478/+1216
| | | | svn path=/trunk/netsurf/; revision=12595
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-301-0/+13
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Move rectangle type to utils/types.hMichael Drake2011-06-281-0/+32
| | | | svn path=/trunk/netsurf/; revision=12525
* Merge branches/jmb/content-factory to trunkJohn Mark Bell2011-05-061-1/+4
| | | | svn path=/trunk/netsurf/; revision=12283
* Make strchrnul stupid.John Mark Bell2011-04-081-132/+5
| | | | svn path=/trunk/netsurf/; revision=12174
* Fix build with NDEBUG definedJohn Mark Bell2011-04-033-12/+13
| | | | svn path=/trunk/netsurf/; revision=12154
* move logging initialisationVincent Sanders2011-04-023-1/+56
| | | | svn path=/trunk/netsurf/; revision=12152
* remove extraneous loggingVincent Sanders2011-03-291-5/+0
| | | | | | | fix windows path_to_url coping with NULL input and allocation errors. remove forced verbose logging svn path=/trunk/netsurf/; revision=12147
* make windows frontend use Vincent Sanders2011-03-291-27/+45
| | | | svn path=/trunk/netsurf/; revision=12146
* Rename utils/resource to utils/filepath to avoid confusion with resource: ↵Michael Drake2011-03-172-40/+49
| | | | | | fetcher. svn path=/trunk/netsurf/; revision=12088
* Stop gtk printing from exploding if its unable to initialise the jobVincent Sanders2011-03-151-1/+3
| | | | | | | add interface to clone a high level cache handle make generic printing core call new hlcache interface svn path=/trunk/netsurf/; revision=12068
* Slightly safer operation on RODaniel Silverstone2011-03-151-4/+17
| | | | svn path=/trunk/netsurf/; revision=12064
* Remove use of POSIX.pm from svn-testament -- RISCOS seems to be incomplete ↵Daniel Silverstone2011-03-151-4/+5
| | | | | | in that respect svn path=/trunk/netsurf/; revision=12062
* And use POSIX::uname for the hostnameDaniel Silverstone2011-03-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=12061
* Corify a bunch of svn-testament to work better on RISC OS with a bit of luckDaniel Silverstone2011-03-151-16/+12
| | | | svn path=/trunk/netsurf/; revision=12060
* Fix warningChris Young2011-03-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=12056
* Try harder to get useful values if (a) getent is not available or (b) ↵Chris Young2011-03-151-0/+12
| | | | | | | | HOSTNAME env-var does not exist. svn path=/trunk/netsurf/; revision=12055
* Move schedule.h to utils/John Mark Bell2011-03-131-0/+32
| | | | svn path=/trunk/netsurf/; revision=12039
* Set version using testament.h instead of old ARexx scriptChris Young2011-03-131-0/+6
| | | | svn path=/trunk/netsurf/; revision=12028
* Add hostname and pathDaniel Silverstone2011-03-131-0/+11
| | | | svn path=/trunk/netsurf/; revision=12023