summaryrefslogtreecommitdiff
path: root/utils/nsurl
Commit message (Collapse)AuthorAgeFilesLines
* improve nsurl query handling.Vincent Sanders2018-09-263-35/+57
| | | | | | | | | | | 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
* fix size_t format specifiersVincent Sanders2018-08-181-13/+25
|
* nsurl: Move debug logging over to nslog.Michael Drake2018-08-093-52/+32
|
* nsurl: Add variant of nsurl_access for logging.Michael Drake2018-08-091-0/+13
|
* nsurl: Add data to scheme type enum.Michael Drake2018-08-092-1/+12
|
* NSURL: add ability to create replacement schemeJohn-Mark Bell2018-04-221-0/+87
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-8/+24
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-062-15/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* nsurl: Remove redundant code path.Michael Drake2017-03-271-8/+9
|
* nsurl: Use ascii header for hex to value conversion.Michael Drake2017-03-271-40/+1
|
* nsurl: Don't allow credentials or host for file: URLs.Michael Drake2017-03-271-0/+10
|
* nsurl: Set path of "/" for file: URLs with empty path.Michael Drake2017-03-271-3/+7
|
* nsurl: Add detection of "file:" URL schemes.Michael Drake2017-03-271-0/+10
|
* nsurl: Add "file:" entry to enum of known URL schemes.Michael Drake2017-03-271-0/+1
|
* nsurl: Tidy up shared components code.Michael Drake2017-02-083-74/+44
|
* nsurl: Rationalise debug build option.Michael Drake2017-02-083-73/+42
|
* nsurl: Tidy up component helper macros.Michael Drake2017-02-083-12/+12
|
* nsurl: Consolidate conversion to string.Michael Drake2017-02-083-73/+76
|
* nsurl: Split out URL parsing.Michael Drake2017-02-084-1524/+1677
|
* nsurl: Split internal structure out into private header.Michael Drake2017-02-082-51/+77
|
* nusrl: Move into utils/nsurl directory.Michael Drake2017-02-082-0/+2506