- 14 Mar, 2012 2 commits
-
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5820045
-
Johan Euphrosine authored
Originally published on The Go Programming Language Blog, September 29, 2011. http://blog.golang.org/2011/09/go-imagedraw-package.html Update #2547. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5755057
-
- 13 Mar, 2012 31 commits
-
-
Brad Fitzpatrick authored
Fixes #3281 R=golang-dev, r CC=golang-dev https://golang.org/cl/5819044
-
Rob Pike authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5821044
-
Robert Griesemer authored
A node spans multiple lines if the line difference between start and end point is > 0 (rather than > 1). Fixes some odd cases introduced by CL 5706055; pointed out by dsymonds. Added corresponding test case. The other change in the .golden file reverts to the status before the CL mentioned above and is correct. gofmt -w src misc changes godoc.go back to where it was before the CL mentioned above. Fixes #3304. R=dsymonds, rsc CC=golang-dev https://golang.org/cl/5820044
-
Shenghou Ma authored
Also fix a typo in comment. R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5808043
-
Rob Pike authored
1) Poor error checking in variable declarations admitted $x=2 or even $x%2. 2) Need white space or suitable termination character after identifiers, so $x+2 doesn't parse, in case we want it to mean something one day. Number 2 in particular prevents mistakes that we will have to honor later and so is necessary for Go 1. Fixes #3270. Fixes #3271. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5795073
-
Maxim Pimenov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5801043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5794077
-
Alex Brainman authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/5797079
-
Shenghou Ma authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5783092
-
Andrew Gerrand authored
R=dsymonds CC=golang-dev https://golang.org/cl/5795072
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5754097
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5783093
-
Rob Pike authored
Windows has paths like C:/Users/ADMIN~1. Also, it so happens that go/parser allows ~ in import paths. So does the spec. Fixes the build too. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5777073
-
Brad Fitzpatrick authored
This should live in archive/tar later (CL 5796073) but we can always do that after Go 1 and stick it here for now. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5754096
-
Rob Pike authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5783091
-
Andrew Gerrand authored
This prevents us from writing filenames like "weekly.2012-03-12\n.foo.bar.tar.gz". R=bradfitz CC=golang-dev https://golang.org/cl/5783090
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/5796074
-
Andrew Gerrand authored
R=golang-dev, nigeltao, bradfitz CC=golang-dev https://golang.org/cl/5783077
-
Andrew Gerrand authored
This makes h3 and h4 more distinct, and h2 and h3 the same size. The h2 and h3 styles may be distinguished h2's background styles. This means that almost all text on the site is either 16px, 20px, or 24px. (with a smattering of 14px) R=golang-dev, r CC=golang-dev https://golang.org/cl/5754095
-
Andrew Gerrand authored
Fixes #3254. R=golang-dev, r CC=golang-dev https://golang.org/cl/5794071
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, July 7, 2010. I did not put any go file in doc/progs. Shoul I include Go files with those declarations? http://blog.golang.org/2010/07/gos-declaration-syntax.html Update #2547. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5795068
-
Robert Griesemer authored
Pointed out by Steven Blenkinsop (steven099@gmail.com) via golang-nuts. R=r, dsymonds CC=golang-dev https://golang.org/cl/5783087
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/5754094
-
Alex Brainman authored
R=golang-dev, rsc CC=golang-dev, hectorchu https://golang.org/cl/5797077
-
Robert Hencke authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5777072
-
Francisco Souza authored
R=adg CC=golang-dev https://golang.org/cl/5777071
-
David Symonds authored
(5l/6l/8l aren't involved in building packages) R=golang-dev, robert.hencke CC=golang-dev https://golang.org/cl/5798071
-
Alex Brainman authored
R=golang-dev, r, rsc, bradfitz, minux.ma CC=golang-dev https://golang.org/cl/5756065
-
Shenghou Ma authored
R=golang-dev, rsc, bradfitz, alex.brainman CC=golang-dev https://golang.org/cl/5754083
-
Andrew Gerrand authored
FreeBSD's srandom has a different signature to darwin/linux. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5795067
-
Andrew Gerrand authored
Remove underlines from all links, show underline on link hover. Change all non-link headings to h4, a slight visual cue. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5783088
-
- 12 Mar, 2012 7 commits
-
-
Andrew Gerrand authored
We use the absence of a Title to detect the front page. I can't find other pages without titles, so this seems reasonable. R=golang-dev, bradfitz, gri CC=golang-dev https://golang.org/cl/5797076
-
Brad Fitzpatrick authored
Fixes #3273 R=gri CC=golang-dev https://golang.org/cl/5795065
-
Francisco Souza authored
For URLs ending with /, the handler did not work, trying to append ".xml" to the path. For instance, the "Share Memory by Communicating" returned the following error: open /Users/francisco.souza/lib/go/doc/codewalk/sharemem/.xml: no such file or directory R=adg, minux.ma CC=golang-dev https://golang.org/cl/5797065
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, March 17, 2011. http://blog.golang.org/2011/03/c-go-cgo.html Update #2547. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5777054
-
Fazlul Shahriar authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5797073
-
Russ Cox authored
broke builders ««« original CL description cmd/go: respect $GOBIN always Before, we only consulted $GOBIN for source code found in $GOROOT, but that's confusing to explain and less useful. The new behavior lets users set GOBIN=$HOME/bin and have all go-compiled binaries installed there. Fixes #3269. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5754088 »»» TBR=bradfitz CC=golang-dev https://golang.org/cl/5794065
-
Russ Cox authored
Before, we only consulted $GOBIN for source code found in $GOROOT, but that's confusing to explain and less useful. The new behavior lets users set GOBIN=$HOME/bin and have all go-compiled binaries installed there. Fixes #3269. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5754088
-