summaryrefslogtreecommitdiff
path: root/src/net/url
Commit message (Expand)AuthorAgeFilesLines
* 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
* net/url: allow all valid host chars in RawPathRuss Cox2015-08-062-3/+39
* net/url: do not percent-encode valid host charactersRuss Cox2015-08-062-11/+56
* net/url: restrict :port checking to [ipv6]:port formRuss Cox2015-08-062-16/+16
* net/url: add example to URL.ResolveReferenceCarlos C2015-07-161-0/+14
* net/url: only record RawPath when it is neededRuss Cox2015-06-302-8/+10
* net/url: don't escape star requests when writing requestsBrad Fitzpatrick2015-06-262-0/+14
* net/url: validate ports in URLs and bytes after IPv6 literalsBrad Fitzpatrick2015-06-242-9/+70
* net/url: add RawPath field, a hint at the desired encoding of PathRuss Cox2015-06-223-12/+124
* all: fix misprints in commentsAinar Garipov2015-06-111-1/+1
* net/url: allow Parse, ParseRequestURI to parse ipv6 zone identifiers in URIsMikio Hara2015-04-072-13/+178
* net/url: fix docs for URL.StringShenghou Ma2015-03-241-1/+1
* all: use "reports whether" in place of "returns true if(f)"Josh Bleecher Snyder2015-03-181-1/+1
* net/url: add example of using URL.Opaque with http.RequestBrad Fitzpatrick2014-11-121-0/+30
* net/url: document result of StringRuss Cox2014-10-061-0/+18
* build: move package sources from src/pkg to srcRuss Cox2014-09-083-0/+1703