summaryrefslogtreecommitdiff
path: root/src/net/url
Commit message (Expand)AuthorAgeFilesLines
* net/url: escape URL.RawQuery on Parse if it contains invalid charactersFlorian Forster2018-08-212-1/+61
* net/url: don't escape sub-delims in fragmentKunpei Sakai2018-07-132-0/+14
* net/url: correct the documentation for PathUnescapeCaleb Martinez2018-06-291-1/+1
* net/url: update docs to match renamed receiverBrad Fitzpatrick2018-04-121-1/+1
* go/printer, gofmt: tuned table alignment for better resultsRobert Griesemer2018-04-041-2/+2
* all: use strings.Builder instead of bytes.Buffer where appropriateBrad Fitzpatrick2018-03-261-5/+5
* net/url: fix contradiction in PathUnescape docsRoss Light2018-03-211-3/+2
* net/url: reject invalid userinfo values when parsing URLsBrad Fitzpatrick2018-01-102-0/+40
* net/url: fix PathUnescape, QueryUnescape number grammarRuss Cox2017-12-061-2/+2
* net/url: document Parse moreBrad Fitzpatrick2017-12-011-1/+5
* net/url: allow *User functions to work on a nil receiver.OneOfOne2017-11-152-0/+35
* net/url: clarify QueryUnescape and PathUnescape docAlberto Donizetti2017-11-141-7/+12
* net/url: preserve leading slashes when resolving pathMark Theunissen2017-10-302-1/+5
* all: revert "all: prefer strings.LastIndexByte over strings.LastIndex"Marvin Stenger2017-10-051-3/+3
* all: revert "all: prefer strings.IndexByte over strings.Index"Marvin Stenger2017-10-051-3/+3
* all: prefer strings.LastIndexByte over strings.LastIndexMarvin Stenger2017-09-271-3/+3
* all: prefer strings.IndexByte over strings.IndexMarvin Stenger2017-09-251-3/+3
* net/url: add examples to URL methodsGuilherme Garnier2017-09-011-0/+108
* net/url: make Parse+String round trip magnet URLsJohnny Luo2017-08-312-1/+25
* all: join some chained ifs to unindent codeDaniel Martí2017-08-291-6/+4
* net/url: add examples for URL.Hostname and URL.RequestURIKevin Burke2017-05-191-0/+25
* net/url: document the package betterJoe Tsai2017-02-282-42/+8
* net/url: document that Query returns only valid valuesKenny Grant2017-02-181-0/+2
* net/url: reject colon in first segment of relative path in ParseRuss Cox2016-10-242-2/+19
* net/url: make URL implement encoding.BinaryMarshaler, BinaryUnmarshalerRuss Cox2016-10-222-0/+71
* net/url: add PathEscape, PathUnescapeRuss Cox2016-10-182-4/+106
* net/url: document and add example for ParseQuery("x")Russ Cox2016-10-182-0/+23
* net/url: avoid if statementAntonio Murdaca2016-09-261-4/+1
* net/url: prefix relative paths containing ":" in the first segment with "./"Kale Blankenship2016-09-222-9/+53
* net/url: modernise parse and unit testsDave Day2016-09-122-61/+48
* net/url: add URL.Hostname and URL.Port accessorsBrad Fitzpatrick2016-09-092-0/+85
* net/url: handle escaped paths in ResolveReferenceDave Day2016-09-082-14/+45
* net/url: remove RFC 3986 mention in package commentBrad Fitzpatrick2016-05-061-1/+5
* Revert "net/url: validate ports in IPv4 addresses"Russ Cox2016-05-062-9/+3
* net/url: validate ports in IPv4 addressesMohit Agarwal2016-04-222-3/+9
* net/url: don't assume b.N > 0Marcel van Lohuizen2016-03-181-1/+1
* net/url: fix parsing of URLs ending in question markBrad Fitzpatrick2016-03-022-3/+14
* all: single space after period.Brad Fitzpatrick2016-03-021-5/+5
* all: remove public named return values when uselessBrad Fitzpatrick2016-02-291-7/+8
* net/url: support query string without valuesRick Arnold2016-02-262-11/+39
* net/url: simplify value lookupJosh Bleecher Snyder2016-02-211-2/+2
* all: replace strings.Index with strings.Contains where possibleNathan VanBenschoten2016-02-191-1/+1
* net/url: allow spaces in IPv6 zone identifier for WindowsRuss Cox2016-01-262-1/+13
* net/url: fix RFC typo in commentsBrad Fitzpatrick2015-12-161-4/+4
* net/url: reject space in host; do not escape < > " in hostRuss Cox2015-12-112-2/+26
* net/url: add tests for RequestURI returning //pathsRuss Cox2015-12-101-0/+18
* net/url: accept non-ASCII bytes in URL per RFC 3986Russ Cox2015-12-072-30/+77
* net/url: accept empty port after colon in IPv6 literal hostRuss Cox2015-12-052-3/+60
* net/url: fix mentions of URL.EscapedPath methodShenghou Ma2015-10-231-3/+3
* net/url: make *url.Error implement net.ErrorDave Cheney2015-10-102-0/+101