| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5701050
|
|
|
|
|
|
| |
R=golang-dev, r, adg
CC=golang-dev
https://golang.org/cl/5683076
|
|
|
|
|
|
| |
R=adg
CC=golang-dev
https://golang.org/cl/5554073
|
|
|
|
|
|
| |
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5489065
|
|
|
|
|
|
|
|
|
|
|
|
| |
src/clean.bash:
Add clean-ups for previously overlooked directories.
doc/codelab/wiki/Makefile:
Dropped "index.html" from CLEANFILES so it will not be
deleted on cleaning.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5476050
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Set type is gone. Instead, templates are automatically associated by
being parsed together; nested definitions implicitly create associations.
Only associated templates can invoke one another.
This approach dramatically reduces the breadth of the construction API.
For now, html/template is deleted from src/pkg/Makefile, so this can
be checked in. Nothing in the tree depends on it. It will be updated next.
R=dsymonds, adg, rsc, r, gri, mikesamuel, nigeltao
CC=golang-dev
https://golang.org/cl/5415060
|
|
|
|
|
|
| |
R=rsc
CC=golang-dev
https://golang.org/cl/5338043
|
|
|
|
|
|
| |
R=adg
CC=golang-dev
https://golang.org/cl/5328062
|
|
|
|
|
|
| |
R=golang-dev, iant, r, r
CC=golang-dev
https://golang.org/cl/5307066
|
|
|
|
|
|
| |
R=adg
CC=golang-dev
https://golang.org/cl/4971043
|
|
|
|
|
|
| |
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4897048
|
|
|
|
|
|
|
|
|
|
|
| |
It's already in old/template; make that build.
Update a couple of references to point to the old template.
They can be updated later.
Update goplay to use exp/template.
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4902046
|
|
|
|
|
|
| |
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4515077
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This CL:
-- removes Response.RequestMethod string
-- adds Response.Request *Request
-- removes the finalURL result parameter from client.Get()
-- adds a gofix rule for callers of http.Get which assign
the final url to the blank identifier; warning otherwise
Caller who did:
res, finalURL, err := http.Get(...)
now need to do:
res, err := http.Get(...)
if err != nil {
...
}
finalURL := res.Request.URL.String()
R=rsc
CC=golang-dev
https://golang.org/cl/4535056
|
|
|
|
|
|
|
|
| |
s/Sprintf/Fprintf/
R=golang-dev, rsc
CC=adg, golang-dev
https://golang.org/cl/4519053
|
|
|
|
|
|
| |
R=r
CC=golang-dev
https://golang.org/cl/4313051
|
|
|
|
|
|
|
|
| |
Fixes #1595.
R=r
CC=golang-dev
https://golang.org/cl/4243067
|
|
|
|
|
|
| |
R=adg, rsc
CC=Joe Poirier, golang-dev
https://golang.org/cl/4257052
|
|
|
|
|
|
|
|
|
|
|
| |
In line with other functions such as Fprintf, put the
thing to be written first.
Apologies for the breakages this is sure to cause.
R=rsc, gri, adg, eds, r2, aam
CC=golang-dev
https://golang.org/cl/4169042
|
|
|
|
|
|
|
|
|
|
| |
This functionality was removed with CL 4169041.
Minor simplifications.
R=r, adg
CC=golang-dev
https://golang.org/cl/4171042
|
|
|
|
|
|
| |
R=gri, adg
CC=golang-dev
https://golang.org/cl/4169041
|
|
|
|
|
|
|
|
| |
Missing closing bracket renders the next code snippet unreadable.
R=adg, gri
CC=golang-dev
https://golang.org/cl/4119060
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
introduced.
A couple of post-closure function definitions were introduced too early, making the resulting
code fail compilation.
Also, the TitleValidator regexp was missing.
R=adg
CC=golang-dev
https://golang.org/cl/4105054
|
|
|
|
|
|
|
|
|
| |
This aligns the naming scheme with the testing package and
also lets govet work on more logging calls.
R=rsc
CC=golang-dev
https://golang.org/cl/4001048
|
|
|
|
|
|
|
|
|
|
| |
make test.sh runnable as a command.
announce only on 127.0.0.1.
rebuild final-test.bin when final-test.go changes.
R=adg, r
CC=golang-dev
https://golang.org/cl/4030044
|
|
|
|
|
|
| |
R=bradfitz, dsymonds, r2, dangabrad, rsc
CC=golang-dev
https://golang.org/cl/4043043
|
|
|
|
|
|
| |
R=rsc, bradfitzgo
CC=golang-dev
https://golang.org/cl/4087043
|
|
|
|
|
|
| |
TBR=adg
CC=golang-dev
https://golang.org/cl/4092042
|
|
|
|
|
|
| |
TBR=adg
CC=golang-dev
https://golang.org/cl/4077045
|
|
|
|
|
|
| |
R=mattn
CC=golang-dev
https://golang.org/cl/4034046
|
|
|
|
|
|
|
|
| |
Fixes #1444.
R=rsc, r
CC=golang-dev
https://golang.org/cl/3979045
|
|
|
|
|
|
| |
R=adg, r2
CC=golang-dev
https://golang.org/cl/2302041
|
|
|
|
|
|
|
|
|
| |
All scripts and makefiles assume that GOBIN is correctly set
in PATH.
R=rsc
CC=golang-dev
https://golang.org/cl/2043041
|
|
|
|
|
|
| |
R=r, rsc1
CC=golang-dev
https://golang.org/cl/1953048
|
|
|
|
|
|
| |
R=adg, r, PeterGo
CC=golang-dev
https://golang.org/cl/1942044
|
|
|
|
|
|
| |
R=golang-dev, adg
CC=golang-dev, rsc
https://golang.org/cl/1426042
|
|
|
|
|
|
| |
R=r
CC=golang-dev
https://golang.org/cl/1148041
|
|
|
|
|
|
|
|
| |
Fixes #757.
R=rsc
CC=golang-dev
https://golang.org/cl/1064041
|
|
|
|
|
|
| |
R=adg
CC=golang-dev
https://golang.org/cl/993042
|
|
|
|
|
|
|
|
|
|
| |
immediately
Also, calling fmt, ioutil and os "builtin" is probably confusing.
R=adg
CC=golang-dev
https://golang.org/cl/965045
|
|
|
|
|
|
|
|
| |
noticed this as I was submitting the previous CL :(
R=r
CC=golang-dev
https://golang.org/cl/989045
|
|
R=r, rsc, gri
CC=golang-dev
https://golang.org/cl/887045
|