summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* Improve error handling in html contentVincent Sanders2012-10-171-1/+15
|
* Remove double ;.Michael Drake2012-10-161-1/+1
|
* Add newline at end of file.Michael Drake2012-10-141-1/+1
|
* Move dom walker to utils/libdom.{c|h}. Add a few HTML elements to core strings.Michael Drake2012-10-124-0/+223
|
* Make url_{get|reform|destroy}_components static.Michael Drake2012-10-112-196/+191
|
* Add nsurl_replace_query. Add tests. Make tester itterate remaining ↵Michael Drake2012-10-112-0/+102
| | | | lwc_strings.
* Remove unused function.Michael Drake2012-10-112-35/+0
|
* Don't need url_compare any more.Michael Drake2012-10-112-71/+0
|
* Ensure correct error type is returned.Michael Drake2012-10-111-4/+12
|
* Fix dead store.Michael Drake2012-10-111-1/+1
|
* Ensure non-void functions have a return at the end, even though it shouldn't ↵Michael Drake2012-10-111-0/+4
| | | | get there, to squash warning.
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2012-10-082-4/+4
|\
| * trivial docuemntation cleanups to address some of the huge number of ↵Vincent Sanders2012-10-082-4/+4
| | | | | | | | docuemntation warnings
* | Add "https" lwc string.Michael Drake2012-10-082-0/+4
|/
* If you pass CI_BUILD=xxx to make, it will build a CI #xxx into the version ↵Daniel Silverstone2012-10-062-216/+5
| | | | string and also mention it in the testament
* Remove url_parent.Michael Drake2012-10-062-50/+0
|
* Add nusrl_parent function, to get parent path URL.Michael Drake2012-10-062-8/+123
|
* Remove unused functions.Michael Drake2012-10-052-113/+0
|
* Don't let it read off the front of empty relative URLs.Michael Drake2012-10-021-2/+2
|
* Fix select elements. Requires latest libdom.Michael Drake2012-09-192-0/+4
|
* Allow the presence of form inputs to be obtained without knowledge of html ↵Michael Drake2012-08-201-0/+5
| | | | content internals.
* add mint to mmap exclude listVincent Sanders2012-08-131-1/+1
|
* alter file fetcher to use mmap where availableVincent Sanders2012-08-132-10/+16
|
* Fix RO build.Michael Drake2012-08-131-0/+2
|
* fix windows build format specifiersVincent Sanders2012-08-121-0/+10
| | | | add install target for windows - creates installer rather than actually installing
* Dodge a clang warning.Michael Drake2012-08-091-5/+7
|
* extend completion typesVincent Sanders2012-07-302-0/+8
|
* s/object/option/Michael Drake2012-07-261-1/+1
|
* More use of interns.Michael Drake2012-07-262-0/+33
|
* Use interns for string comparisons.Michael Drake2012-07-262-0/+28
|
* doxygen serious warning cleanupVincent Sanders2012-07-242-4/+10
|
* Compare interns instead of strings in html_forms.cMichael Drake2012-07-232-4/+48
|
* Interned string cleanup, phase 6 (final): Move html.c to corestring.Michael Drake2012-07-222-0/+65
|
* Interned string cleanup, phase 5: Move imagemap.c to corestring.Michael Drake2012-07-222-1/+71
|
* Interned string cleanup, phase 4: Move html_script.c to corestring.Michael Drake2012-07-222-0/+8
|
* Interned string cleanup, phase 3: Move html_forms.c to corestring.Michael Drake2012-07-222-0/+4
|
* Interned string cleanup, phase 2: Create utils/corestrings and use it in css ↵Michael Drake2012-07-222-0/+394
| | | | handler.
* git-testament: Cope with detached HEAD betterDaniel Silverstone2012-07-151-1/+1
|
* Make log times line up for neatnessDaniel Silverstone2012-07-071-1/+1
|
* Ensure backslashes are escaped in the GECOS string. Fixes a warning when ↵Chris Young2012-07-071-0/+1
| | | | building under Windows.
* Remove bogus sanity checks -- the content factory removed the need for these.John Mark Bell2012-06-261-9/+0
| | | | svn path=/trunk/netsurf/; revision=13988
* Testament generation now supports gitDaniel Silverstone2012-06-042-1/+221
| | | | svn path=/trunk/netsurf/; revision=13946
* Fix FTP detection. Thanks to Etienne Cochard <etienne.cochard@gmail.com> ↵Daniel Silverstone2012-05-231-1/+1
| | | | | | for spotting the bug. svn path=/trunk/netsurf/; revision=13930
* Redo r13857 differently, to avoid issues with non-unixish shells.François Revel2012-04-121-2/+4
| | | | svn path=/trunk/netsurf/; revision=13858
* Make sure we use the default locale before parsing output of a localized ↵François Revel2012-04-121-2/+2
| | | | | | | | program. This fixes generating the testament here. svn path=/trunk/netsurf/; revision=13857
* Add a perl script for splitting out messages files againRob Kendrick2012-03-251-0/+23
| | | | svn path=/trunk/netsurf/; revision=13669
* Fix message merging script's manipulation patterns to mean we don't need any ↵Rob Kendrick2012-03-251-4/+4
| | | | | | code changes on the C side. svn path=/trunk/netsurf/; revision=13668
* Script to merge messages files. More tag manipulation patterns needed.Rob Kendrick2012-03-251-0/+83
| | | | svn path=/trunk/netsurf/; revision=13662
* Reworked r13532 in a cleaner way. The FLEX_ARRAY_LEN_DECL macro from utils.h ↵François Revel2012-03-192-5/+7
| | | | | | should be used when declaring an empty array at end of struct. svn path=/trunk/netsurf/; revision=13535
* Workaround use of C99 flex array. gcc2 did not support it, only 0-len ↵François Revel2012-03-191-1/+5
| | | | | | arrays. Possibly a FLEX_ARRAY_LEN macro could be defined in utils.h instead. svn path=/trunk/netsurf/; revision=13532