- 13 Mar, 2012 13 commits
-
-
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 27 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
-
Russ Cox authored
Maybe. TBR=bradfitz CC=golang-dev https://golang.org/cl/5754091
-
Russ Cox authored
Fixes #2909. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5796072
-
Russ Cox authored
Otherwise there's no good way to get both, and it comes up often. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5794064
-
Russ Cox authored
Fixes #3303. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5795062
-
Brad Fitzpatrick authored
And merge the httputil fix into go1rename. R=golang-dev, r, dsymonds, r, rsc CC=golang-dev https://golang.org/cl/5696084
-
Brad Fitzpatrick authored
R=rsc, r CC=golang-dev https://golang.org/cl/5795059
-
Russ Cox authored
It's the best we can do before Go 1. For issue 3250; not a fix but at least less mysterious. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5797068
-
Shenghou Ma authored
Fix for issue 3210 comment #1. R=adg, rsc CC=golang-dev https://golang.org/cl/5794057
-
Shenghou Ma authored
Also update .hgignore to ignore y.output. R=rsc CC=golang-dev https://golang.org/cl/5797061
-
Shenghou Ma authored
R=rsc, iant CC=golang-dev https://golang.org/cl/5777057
-
Ingo Oeser authored
This is often used in private hosting and collaborating environments. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5753063
-
Russ Cox authored
Mercurial: the Python of version control systems. Python: the Mercurial of programming languages. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5777066
-
Russ Cox authored
Execute's data is untrusted regardless of package. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5797062
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5794061
-
Brad Fitzpatrick authored
Fixes #3298 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5783080
-
Russ Cox authored
Undo CL 5783076 and apply correct fix. The /doc hack is wrong. The code to handle this case was already there and just needs a simple fix: // We didn't find any directories containing Go files. // If some directory returned successfully, use that. - if len(all) == 0 && first != nil { + if !haveGo { for _, d := range first { haveName[d.Name()] = true all = append(all, d) R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5783079
-
Russ Cox authored
They were necessary to produce a canonical script when we checked in build scripts, but now they're just getting in the way. Fixes #3279. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5796068
-
David Symonds authored
Also make error messages consistent throughout. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5777064
-
Brad Fitzpatrick authored
For people untarring with -p or as root, preserving file permissions. This way we don't make tars owned by adg/eng or adg/staff or whatever machine Andrew was on. Instead, we always build tarballs owned by predictable users. Except archive/tar doesn't seem to work. Updates #3209. R=golang-dev, adg CC=dsymonds, golang-dev https://golang.org/cl/5796064
-
Andrew Gerrand authored
Makes Path rewrites work, as the metadata was never being scanned. Fixes #3282. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5783076
-