An error occurred fetching the project authors.
- 08 Mar, 2012 3 commits
-
-
Russ Cox authored
doc: convert to use godoc built-in templates tmpltohtml is gone, to avoid having a second copy of the code. Instead, godoc -url /doc/go1.html will print the actual HTML served for that URL. "make" will generate files named go1.rawhtml etc, which can be fed through tidy. It can be hard to tell from the codereview diffs, but all the tmpl files have been renamed to be html files and then have "Template": true added. R=golang-dev, adg, r, gri CC=golang-dev https://golang.org/cl/5782046
-
Rob Pike authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5787049
-
Andrew Gerrand authored
Fixes #2912. R=golang-dev, r CC=golang-dev https://golang.org/cl/5783048
-
- 07 Mar, 2012 2 commits
-
-
Alex Brainman authored
R=r CC=golang-dev https://golang.org/cl/5752072
-
Alex Brainman authored
go get code.google.com/p/gowingui R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/5752067
-
- 05 Mar, 2012 1 commit
-
-
Rob Pike authored
Fixes #3076. R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5727056
-
- 02 Mar, 2012 2 commits
-
-
Shenghou Ma authored
Set dagger looks very much like t in some fonts, so superscript it. os/signal is no longer in exp. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5720049
-
Andrew Gerrand authored
R=golang-dev, rsc, r CC=golang-dev https://golang.org/cl/5713054
-
- 01 Mar, 2012 1 commit
-
-
Russ Cox authored
R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/5711059
-
- 29 Feb, 2012 1 commit
-
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5706054
-
- 27 Feb, 2012 2 commits
-
-
Stefan Nilsson authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5695072
-
Rob Pike authored
Also restore alphabetical order. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5701053
-
- 26 Feb, 2012 1 commit
-
-
Rob Pike authored
Fixes #3086. R=golang-dev, gri, r, kevlar CC=golang-dev https://golang.org/cl/5700067
-
- 25 Feb, 2012 1 commit
-
-
Mike Rosset authored
filepath's WalkFunc handler now uses errors package, and not os.Error R=golang-dev, gri CC=golang-dev https://golang.org/cl/5696067
-
- 24 Feb, 2012 2 commits
-
-
Rob Pike authored
This distills the motivational discussion and makes it the introduction to the release notes. After this lands, I'll expand the discussion of the major changes to include more background. Updates #3086. R=golang-dev, gri, rsc CC=golang-dev https://golang.org/cl/5698057
-
Rob Pike authored
Also reformat the "go fix" references to make them look better by using the non-CW space. Fixes #3087. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5695057
-
- 22 Feb, 2012 2 commits
-
-
David Symonds authored
The os.Wait function has been removed entirely, so there's no point in fixing code that called it. R=r CC=golang-dev https://golang.org/cl/5685078
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5685075
-
- 20 Feb, 2012 2 commits
-
-
Rob Pike authored
Fixes #3013. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5683049
-
Rob Pike authored
They are portability problems and the options are almost always zero in practice anyway. R=golang-dev, dsymonds, r, bradfitz CC=golang-dev https://golang.org/cl/5688046
-
- 19 Feb, 2012 5 commits
-
-
Russ Cox authored
Fixes #2890. R=golang-dev, r, remyoudompheng CC=golang-dev https://golang.org/cl/5683044
-
Russ Cox authored
* disallow embedding of C type (Fixes issue 2552) * detect 0-length array (Fixes issue 2806) * use typedefs when possible, to avoid attribute((unavailable)) (Fixes issue 2888) * print Go types constructed from C types using original C types (Fixes issue 2612) This fix changes _cgo_export.h to repeat the preamble from import "C". Otherwise the fix to issue 2612 is impossible, since it cannot refer to types that have not been defined. If people are using //export and putting non-header information in the preamble, they will need to refactor their code. R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5672080
-
Marcel van Lohuizen authored
R=r, r, rsc CC=golang-dev https://golang.org/cl/5656108
-
Brad Fitzpatrick authored
Fixes #3065 R=golang-dev, dsymonds, rsc CC=golang-dev https://golang.org/cl/5675094
-
Rob Pike authored
I'm sure I wrote these before but they've disappeared. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5673100
-
- 17 Feb, 2012 2 commits
-
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5676084
-
Mike Rosset authored
R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5674067
-
- 16 Feb, 2012 2 commits
-
-
Rob Pike authored
The set of errors forwarded by the os package varied with system and was therefore non-portable. Three helpers added for portable error checking: IsExist, IsNotExist, and IsPermission. One or two more may need to come, but let's keep the set very small to discourage thinking about errors that way. R=mikioh.mikioh, gustavo, r, rsc CC=golang-dev https://golang.org/cl/5672047
-
David Symonds authored
Updates #2946. R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5671061
-
- 15 Feb, 2012 1 commit
-
-
Nigel Tao authored
Fixes #2979. R=rsc, r CC=golang-dev https://golang.org/cl/5664046
-
- 14 Feb, 2012 1 commit
-
-
Adam Langley authored
hg massively messed up a simple merge for 9d7addec2635 in what I can only imagine was a public service announcement that everyone should use git. R=golang-dev CC=golang-dev https://golang.org/cl/5668043
-
- 13 Feb, 2012 4 commits
-
-
Andrew Gerrand authored
This was an implementation detail that snuck into the public interface. *Writer.Create gives you an io.Writer, the *Writer itself was never meant to be written to. R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5654076
-
Russ Cox authored
Restore package os/signal, with new API: Notify replaces Incoming, allowing clients to ask for certain signals only. Also, signals go to everyone who asks, not just one client. This could plausibly move into package os now that there are no magic side effects as a result of the import. Update runtime for new API: move common Unix signal handling code into signal_unix.c. (It's so easy to do this now that we don't have to edit Makefiles!) Tested on darwin,linux 386,amd64. Fixes #1266. R=r, dsymonds, bradfitz, iant, borman CC=golang-dev https://golang.org/cl/3749041
-
Adam Langley authored
1) Remove the Reset() member in crypto/aes and crypto/des (and document the change). 2) Turn several empty error structures into vars. Any remaining error structures are either non-empty, or will probably become so in the future. 3) Implement SetWriteDeadline for TLS sockets. At the moment, the TLS status cannot be reused after a Write error, which is probably fine for most uses. 4) Make crypto/aes and crypto/des return a cipher.Block. R=rsc, r CC=golang-dev https://golang.org/cl/5625045
-
Russ Cox authored
Fixes #2776. There was a previous attempt at CL 5592043 but that seems to have stalled. This one is simpler, and more up to date (correct handling of spdy, for example). R=golang-dev, r CC=golang-dev https://golang.org/cl/5645091
-
- 12 Feb, 2012 1 commit
-
-
Rob Pike authored
The example was fixed; the simplifying rewrite was missed. R=golang-dev CC=golang-dev https://golang.org/cl/5651080
-
- 11 Feb, 2012 2 commits
-
-
Rob Pike authored
Fixes #2983. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5654063
-
Nigel Tao authored
Fixes #2838. R=rsc, r CC=golang-dev https://golang.org/cl/5651060
-
- 10 Feb, 2012 2 commits
-
-
Robert Griesemer authored
If a printer is configured with the SourcePos mode set, it will emit //-line comments as necessary to ensure that the result - if reparsed - reflects the original source position information. This change required a bit of reworking of the output section in printer.go. Specifically: - Introduced new Config mode 'SourcePos'. - Introduced new position 'out' which tracks the position of the generated output if it were read in again. If there is a discrepancy between out and the current AST/source position, a //line comment is emitted to correct for it. - Lazy emission of indentation so that //line comments can be placed correctly. As a result, the trimmer will have to do less work. - Merged writeItem into writeString. - Merged writeByteN into writeByte. - Use a []byte instead of a byte.Buffer both in the printer and in the trimmer (eliminates dependency). Also: introduced explicit printer.Mode type (in sync w/ parser.Mode, scanner.Mode, etc.) Runs all tests. Applied gofmt to src, misc w/o changes. Fixes #1047. Fixes #2697. R=rsc, rsc CC=golang-dev https://golang.org/cl/5643066
-
Nigel Tao authored
(*Writer, error) if they take a compression level, and *Writer otherwise. Rename gzip's Compressor and Decompressor to Writer and Reader, similar to flate and zlib. Clarify commentary when writing gzip metadata that is not representable as Latin-1, and fix io.EOF comment bug. Also refactor gzip_test to be more straightforward. Fixes #2839. R=rsc, r, rsc, bradfitz CC=golang-dev https://golang.org/cl/5639057
-