summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* 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
* fix incorrect type in message loadingVincent Sanders2012-03-141-1/+1
| | | | | | | | | | | | | | | zlib has changed typedef voidp gzFile; to typedef struct gzFile_s *gzFile; historically the gzFile *fp has efectively expanded to void**fp The compiler considerd void ** to be identical to void* as void cannot be dereferenced and compilation suceeded. With a concrete type it does not work. svn path=/trunk/netsurf/; revision=13517
* Use S_IRWXU where appropriateJohn Mark Bell2012-02-101-2/+2
| | | | svn path=/trunk/netsurf/; revision=13439
* Pass whether background images are wanted in redraw_context.Michael Drake2011-12-231-0/+3
| | | | svn path=/trunk/netsurf/; revision=13335
* Fix const correctnessJohn Mark Bell2011-12-042-4/+4
| | | | svn path=/trunk/netsurf/; revision=13228
* Rename nsurl_enquire to nsurl_has_component.Michael Drake2011-11-272-2/+2
| | | | svn path=/trunk/netsurf/; revision=13183
* Don't escape '|'.Michael Drake2011-11-231-1/+1
| | | | svn path=/trunk/netsurf/; revision=13162
* Fix handling of bad mailto: urls.Michael Drake2011-11-031-13/+71
| | | | svn path=/trunk/netsurf/; revision=13113
* Fix empty port separator and redundant port removal when credentials are ↵Michael Drake2011-10-311-2/+2
| | | | | | present. svn path=/trunk/netsurf/; revision=13108
* Test numbers before calling strncmp.Michael Drake2011-10-311-6/+5
| | | | svn path=/trunk/netsurf/; revision=13107
* Make sure port's just 80, before removing in http case.Michael Drake2011-10-311-0/+2
| | | | svn path=/trunk/netsurf/; revision=13106
* nsurl optimisation: Remove a load of branches into fewer.Michael Drake2011-10-311-47/+46
| | | | svn path=/trunk/netsurf/; revision=13105
* Remove some code that's not needed. Fix redundant port handling.Michael Drake2011-10-311-17/+5
| | | | svn path=/trunk/netsurf/; revision=13104
* Don't need to generate string from scratch in nsurl_defragment, just copy.Michael Drake2011-10-311-7/+10
| | | | svn path=/trunk/netsurf/; revision=13103
* nsurl optimisation: Don't use separate allocations for nsurl strings.Michael Drake2011-10-311-347/+438
| | | | svn path=/trunk/netsurf/; revision=13102
* Function for adding fragment onto nsurl.Michael Drake2011-10-282-1/+79
| | | | svn path=/trunk/netsurf/; revision=13087
* Appease ancient Perl installs.John Mark Bell2011-10-241-5/+27
| | | | svn path=/trunk/netsurf/; revision=13079
* Use local variables instead of global filehandlesJohn Mark Bell2011-10-171-17/+17
| | | | svn path=/trunk/netsurf/; revision=13068
* Don't need to rescan authority if there was no scheme. Bring documentation ↵Michael Drake2011-10-151-18/+20
| | | | | | back into sync with code. Make pre-authority slash skipping more robust. svn path=/trunk/netsurf/; revision=13061
* Move timeval_subtract to utils/log.c & make it static, as it's not used ↵John Mark Bell2011-10-153-30/+29
| | | | | | anywhere else svn path=/trunk/netsurf/; revision=13059
* Fix handling of no schemeJohn Mark Bell2011-10-151-0/+2
| | | | svn path=/trunk/netsurf/; revision=13055
* Move nsurl test suite into test/John Mark Bell2011-10-141-175/+7
| | | | | | | | Fix up llcache tester to reflect nsurl changes Make handling of http:,http:/,http:// consistent Fix buffer overflow when presented with an input string: "http://" svn path=/trunk/netsurf/; revision=13051
* Remove unused variable.Michael Drake2011-10-141-5/+0
| | | | svn path=/trunk/netsurf/; revision=13048
* Improve bad URL handling.Michael Drake2011-10-141-0/+2
| | | | svn path=/trunk/netsurf/; revision=13045
* Fix double inclusion of host/port separator when login credentials are ↵Michael Drake2011-10-131-5/+51
| | | | | | present. Add tests to tester. svn path=/trunk/netsurf/; revision=13040
* Add nsurl testing rig.Michael Drake2011-10-111-0/+126
| | | | svn path=/trunk/netsurf/; revision=13035
* Set scheme_end marker after advance due to leading whitespace.Michael Drake2011-10-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=13034