index
:
delta/go-git.git
dev.boringcrypto
dev.boringcrypto.go1.10
dev.boringcrypto.go1.11
dev.boringcrypto.go1.12
dev.boringcrypto.go1.13
dev.boringcrypto.go1.14
dev.boringcrypto.go1.15
dev.boringcrypto.go1.16
dev.boringcrypto.go1.17
dev.boringcrypto.go1.18
dev.boringcrypto.go1.8
dev.boringcrypto.go1.9
dev.cc
dev.cmdgo
dev.debug
dev.fuzz
dev.garbage
dev.gcfe
dev.go2go
dev.inline
dev.link
dev.power64
dev.regabi
dev.ssa
dev.tls
dev.typealias
dev.typeparams
dev.types
dev.unified
master
q
release-branch.go1
release-branch.go1.1
release-branch.go1.10
release-branch.go1.10-security
release-branch.go1.11
release-branch.go1.11-security
release-branch.go1.12
release-branch.go1.12-security
release-branch.go1.13
release-branch.go1.13-security
release-branch.go1.14
release-branch.go1.14-security
release-branch.go1.15
release-branch.go1.15-security
release-branch.go1.16
release-branch.go1.17
release-branch.go1.18
release-branch.go1.19
release-branch.go1.2
release-branch.go1.20
release-branch.go1.3
release-branch.go1.4
release-branch.go1.5
release-branch.go1.6
release-branch.go1.7
release-branch.go1.8
release-branch.go1.9
release-branch.r57
release-branch.r58
release-branch.r59
release-branch.r60
tls
tmp.shadams
github.com: golang/go
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
net
/
url
Commit message (
Expand
)
Author
Age
Files
Lines
*
net/url: add examples for URL.Hostname and URL.RequestURI
Kevin Burke
2017-05-19
1
-0
/
+25
*
net/url: document the package better
Joe Tsai
2017-02-28
2
-42
/
+8
*
net/url: document that Query returns only valid values
Kenny Grant
2017-02-18
1
-0
/
+2
*
net/url: reject colon in first segment of relative path in Parse
Russ Cox
2016-10-24
2
-2
/
+19
*
net/url: make URL implement encoding.BinaryMarshaler, BinaryUnmarshaler
Russ Cox
2016-10-22
2
-0
/
+71
*
net/url: add PathEscape, PathUnescape
Russ Cox
2016-10-18
2
-4
/
+106
*
net/url: document and add example for ParseQuery("x")
Russ Cox
2016-10-18
2
-0
/
+23
*
net/url: avoid if statement
Antonio Murdaca
2016-09-26
1
-4
/
+1
*
net/url: prefix relative paths containing ":" in the first segment with "./"
Kale Blankenship
2016-09-22
2
-9
/
+53
*
net/url: modernise parse and unit tests
Dave Day
2016-09-12
2
-61
/
+48
*
net/url: add URL.Hostname and URL.Port accessors
Brad Fitzpatrick
2016-09-09
2
-0
/
+85
*
net/url: handle escaped paths in ResolveReference
Dave Day
2016-09-08
2
-14
/
+45
*
net/url: remove RFC 3986 mention in package comment
Brad Fitzpatrick
2016-05-06
1
-1
/
+5
*
Revert "net/url: validate ports in IPv4 addresses"
Russ Cox
2016-05-06
2
-9
/
+3
*
net/url: validate ports in IPv4 addresses
Mohit Agarwal
2016-04-22
2
-3
/
+9
*
net/url: don't assume b.N > 0
Marcel van Lohuizen
2016-03-18
1
-1
/
+1
*
net/url: fix parsing of URLs ending in question mark
Brad Fitzpatrick
2016-03-02
2
-3
/
+14
*
all: single space after period.
Brad Fitzpatrick
2016-03-02
1
-5
/
+5
*
all: remove public named return values when useless
Brad Fitzpatrick
2016-02-29
1
-7
/
+8
*
net/url: support query string without values
Rick Arnold
2016-02-26
2
-11
/
+39
*
net/url: simplify value lookup
Josh Bleecher Snyder
2016-02-21
1
-2
/
+2
*
all: replace strings.Index with strings.Contains where possible
Nathan VanBenschoten
2016-02-19
1
-1
/
+1
*
net/url: allow spaces in IPv6 zone identifier for Windows
Russ Cox
2016-01-26
2
-1
/
+13
*
net/url: fix RFC typo in comments
Brad Fitzpatrick
2015-12-16
1
-4
/
+4
*
net/url: reject space in host; do not escape < > " in host
Russ Cox
2015-12-11
2
-2
/
+26
*
net/url: add tests for RequestURI returning //paths
Russ Cox
2015-12-10
1
-0
/
+18
*
net/url: accept non-ASCII bytes in URL per RFC 3986
Russ Cox
2015-12-07
2
-30
/
+77
*
net/url: accept empty port after colon in IPv6 literal host
Russ Cox
2015-12-05
2
-3
/
+60
*
net/url: fix mentions of URL.EscapedPath method
Shenghou Ma
2015-10-23
1
-3
/
+3
*
net/url: make *url.Error implement net.Error
Dave Cheney
2015-10-10
2
-0
/
+101
*
net/url: allow all valid host chars in RawPath
Russ Cox
2015-08-06
2
-3
/
+39
*
net/url: do not percent-encode valid host characters
Russ Cox
2015-08-06
2
-11
/
+56
*
net/url: restrict :port checking to [ipv6]:port form
Russ Cox
2015-08-06
2
-16
/
+16
*
net/url: add example to URL.ResolveReference
Carlos C
2015-07-16
1
-0
/
+14
*
net/url: only record RawPath when it is needed
Russ Cox
2015-06-30
2
-8
/
+10
*
net/url: don't escape star requests when writing requests
Brad Fitzpatrick
2015-06-26
2
-0
/
+14
*
net/url: validate ports in URLs and bytes after IPv6 literals
Brad Fitzpatrick
2015-06-24
2
-9
/
+70
*
net/url: add RawPath field, a hint at the desired encoding of Path
Russ Cox
2015-06-22
3
-12
/
+124
*
all: fix misprints in comments
Ainar Garipov
2015-06-11
1
-1
/
+1
*
net/url: allow Parse, ParseRequestURI to parse ipv6 zone identifiers in URIs
Mikio Hara
2015-04-07
2
-13
/
+178
*
net/url: fix docs for URL.String
Shenghou Ma
2015-03-24
1
-1
/
+1
*
all: use "reports whether" in place of "returns true if(f)"
Josh Bleecher Snyder
2015-03-18
1
-1
/
+1
*
net/url: add example of using URL.Opaque with http.Request
Brad Fitzpatrick
2014-11-12
1
-0
/
+30
*
net/url: document result of String
Russ Cox
2014-10-06
1
-0
/
+18
*
build: move package sources from src/pkg to src
Russ Cox
2014-09-08
3
-0
/
+1703