summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
...
* cope with md5sum being named different things on bsdVincent Sanders2018-10-041-5/+17
|
* update the deployment script to add sha and md5 checksumsVincent Sanders2018-10-041-11/+13
|
* improve nsurl query handling.Vincent Sanders2018-09-264-35/+60
| | | | | | | | | | | Alter the handling of query values within nsurl to be like fragments. This ensures callers never have to care about the query punctuation, e.g. the question mark This also means the strings generated will no longer have trailing question marks which now conforms to behaviour in whatwg url spec on url serializing in section 4.5
* stop defining _XOPEN_SOURCEVincent Sanders2018-09-061-2/+2
| | | | | This is necessary with some libc as it overrides _POSIX_C_SOURCE and removes definitions of scandir etc.
* fix up package version on haikuVincent Sanders2018-08-291-1/+1
|
* remove use of strcpyVincent Sanders2018-08-292-5/+11
|
* remove a warning on openbsdVincent Sanders2018-08-281-1/+5
|
* make ssize_t type available on some platformsVincent Sanders2018-08-231-0/+1
|
* pass PACKAGER variable to pakage build targetVincent Sanders2018-08-211-4/+2
|
* fix size_t format specifiersVincent Sanders2018-08-181-13/+25
|
* display some system and environment values in CI build scriptVincent Sanders2018-08-151-0/+5
|
* correct package name for artifact generationVincent Sanders2018-08-151-2/+2
|
* nsurl: Move debug logging over to nslog.Michael Drake2018-08-093-52/+32
|
* nsurl: Add variant of nsurl_access for logging.Michael Drake2018-08-092-0/+31
|
* nsurl: Add data to scheme type enum.Michael Drake2018-08-092-1/+12
|
* Make CI NetSurf builds compile in DEBUG level loggingDaniel Silverstone2018-07-281-0/+6
|
* Resolve resource leak on error (coverity issue 1390560)Vincent Sanders2018-05-181-7/+7
|
* allow hash table add inline to be uncompressedVincent Sanders2018-04-221-119/+175
|
* add hash table population from file or memoryVincent Sanders2018-04-223-157/+225
|
* NSURL: add ability to create replacement schemeJohn-Mark Bell2018-04-223-0/+107
|
* HSTS: add parser for Strict-Transport-SecurityJohn-Mark Bell2018-04-229-5/+416
|
* Fix last uses of !NetSurf outside of riscos buildDaniel Silverstone2018-04-221-83/+0
|
* Support compression on output streamDaniel Silverstone2018-04-221-1/+16
|
* Utils: Filename: Squash warning: -Wformat-truncation=Michael Drake2018-01-011-6/+15
| | | | | | | We need to check the snprintf return value, or GCC7 whinges: warning: ‘snprintf’ output may be truncated before the last format character [-Wformat-truncation=]
* fix amigaos3 buildingVincent Sanders2017-12-111-0/+14
|
* add m68k to amigaos targets buildsVincent Sanders2017-12-111-0/+8
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-102-1/+26
|
* Revert "Hopefully quash INFO confusion on Atari MINT platform"Vincent Sanders2017-09-081-4/+0
| | | | This reverts commit 9c93ed1bca859e5b5cb3c018be327fb91213c558.
* Sort out the logging so that -v etc do the right thingDaniel Silverstone2017-09-083-16/+79
|
* Hopefully quash INFO confusion on Atari MINT platformDaniel Silverstone2017-09-081-0/+4
|
* do not attempt to log when output is not enabledVincent Sanders2017-09-071-12/+13
|
* update layout logging to use a catagoryVincent Sanders2017-09-072-0/+2
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-8/+24
|
* update framebuffer toolkit logging to use a ctagoryVincent Sanders2017-09-072-0/+2
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-072-0/+2
|
* update plotter logging to use a catagoryVincent Sanders2017-09-062-0/+2
|
* update fetch debug logging to use catagoryVincent Sanders2017-09-062-0/+2
|
* add low level cache category and use itVincent Sanders2017-09-062-9/+6
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-069-57/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* use nslog library for logging if available.Vincent Sanders2017-09-032-94/+169
|
* Messages: Correct code comment.Michael Drake2017-08-301-1/+1
|
* Errorcodes: Add SPRITE_ERROR and use it in sprite content handler.Michael Drake2017-08-302-0/+5
|
* Messages: Return the unknown message if we get to the unhandled errorcode.Michael Drake2017-08-281-0/+1
| | | | We shouldn't get there though.
* Messages: Do message lookups for all errorcodes.Michael Drake2017-08-281-4/+55
|
* Errorcodes: Remove redundant MNG error.Michael Drake2017-08-282-5/+0
|
* Whitespace: Tidy up errorcodes.Michael Drake2017-08-281-53/+22
|
* RSVG content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-281-0/+2
|
* PNG content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-281-0/+2
|
* ICO content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-271-0/+2
|
* GIF content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-271-0/+2
|