aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-31[release-branch.r59] gc: fix closure bugrelease.r59release-branch.r59Andrew Gerrand
««« CL 4709042 / d30305e2898a gc: fix closure bug Fixes #2056. R=rsc CC=golang-dev https://golang.org/cl/4709042 »»» R=golang-dev, r CC=golang-dev https://golang.org/cl/4814061
2011-07-31[release-branch.r59] doc: document release.r59Andrew Gerrand
««« CL 4835044 / d655c911a608 doc: document release.r59 R=golang-dev, dsymonds, r, r CC=golang-dev https://golang.org/cl/4835044 »»» R=r CC=golang-dev https://golang.org/cl/4801068
2011-07-31create release-branch.r59Andrew Gerrand
2011-07-08weekly.2011-07-07weekly.2011-07-07Andrew Gerrand
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/4668061
2011-07-08sort: rename helpers: s/Sort// in sort.Sort[Float64s|Ints|Strings]Andrew Gerrand
Includes 'sorthelpers' gofix and updates to tree. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4631098
2011-07-08gob: export fields in structs in the package documentation.David Symonds
R=r CC=golang-dev https://golang.org/cl/4648075
2011-07-07cgi: don't depend on CGI.pm for testsBrad Fitzpatrick
CGI.pm used to be part of the Perl core, but some distros now bundle perl-core and perl-modules separately. It's not worth depending on. R=golang-dev, mattn.jp CC=golang-dev https://golang.org/cl/4675063
2011-07-08image/draw: add draw tests where the destination image doesn't startNigel Tao
at (0, 0). Also refactor the test to use the SubImage method rather than monkeying with an image's Pix and Rect fields. R=r CC=golang-dev https://golang.org/cl/4678045
2011-07-07crypto/x509: prevent chain cycles in VerifyAdam Langley
It's possible to include a self-signed root certificate as an intermediate and push Verify into a loop. I already had a test for this so I thought that it was ok, but it turns out that the test was void because the Verisign root certificate doesn't contain the "IsCA" flag and so it wasn't an acceptable intermediate certificate for that reason. R=bradfitz CC=golang-dev https://golang.org/cl/4657080
2011-07-07doc: remove ed from apt-get package listBrad Fitzpatrick
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4672052
2011-07-07image: tighten Paletted.Opaque to check only those palette entriesNigel Tao
in the image, not all palette entries. R=r CC=golang-dev https://golang.org/cl/4672049
2011-07-07os: fix documentation for FileInfo.Name.Rob Pike
It's the base name, not the full name. Fixes #2047. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4680041
2011-07-07exp/template: handle pointers and values in empty interfaces.Rob Pike
R=golang-dev, r, mattn.jp CC=golang-dev https://golang.org/cl/4664064
2011-07-07exp/template: change the name from 'metacharacter' to 'delimiter',Rob Pike
because that's what they are. No semantic change. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4675060
2011-07-07crypto/openpgp: fixed dangerous use of for loop variableGideon Jan-Wessel Redelinghuys
In function readSignedMessage a pointer to for loop variable 'key' was incorrectly being assigned to md.SignedBy. Changed so that md.SignedBy is pointing to the 'more correct' memory position. R=golang-dev, r, agl CC=golang-dev https://golang.org/cl/4631088
2011-07-07C+A: Gideon Jan-Wessel RedelinghuysRob Pike
R=golang-dev, dsymonds CC=gjredelinghuys, golang-dev https://golang.org/cl/4675059
2011-07-07syscall: rearrange windows code so 386 and amd64 can share filesAlex Brainman
R=golang-dev, r CC=golang-dev, vcc.163 https://golang.org/cl/4641093
2011-07-07CONTRIBUTORS: add Google contributor mpvl@golang.orgRob Pike
R=golang-dev, dsymonds CC=golang-dev, mpvl https://golang.org/cl/4643075
2011-07-07exp/template: index: forgot the always last-to-arrive uintptr.Rob Pike
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4636087
2011-07-06asn1: support T61 and UTF8 string.Adam Langley
There is no end to the kitchen sink of string types in ASN.1. Fixes #1953. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4672045
2011-07-06crypto/tls: fix generate_cert.goAdam Langley
Fixes #2030. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4635092
2011-07-06json: fix test if rand returns 0.Ian Lance Taylor
Fixes test when run with gccgo using optimization, which changes the order of the calls to rand. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4639101
2011-07-06exp/template: index function for arrays, slices, and maps.Rob Pike
R=golang-dev, adg, r CC=golang-dev https://golang.org/cl/4643072
2011-07-06exp/template: silence test noise (but add a flag to put it back)Rob Pike
Also delete a TODO and clean up a little evaluation code. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4643071
2011-07-06exp/template: add a JavaScript escaper.David Symonds
R=r CC=golang-dev https://golang.org/cl/4671048
2011-07-06exp/template: allow an empty interface value to be the target of range, etc.Rob Pike
We extract the concrete value inside. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4677041
2011-07-06exp/template: improve error message for non-exported field.Rob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4636086
2011-07-06maketables: update debugging data.Rob Pike
This is unused in the generation of the tables, but was incorrect if we ever needed it. Also update the reference to the document. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4626097
2011-07-06exp/template: add missing dotNode case.David Symonds
R=r CC=golang-dev https://golang.org/cl/4672044
2011-07-06exp/template: fixes and updates.Rob Pike
- fix line numbers - forgot to update state.line during execution - add a comment convention {{/* comment */}} - set.Template returns the named template in the set - set.Execute executes the named template in the set - use a local methodByName so this package can be used with earlier release of reflect. - use initial cap to detect exported names R=golang-dev, adg CC=golang-dev https://golang.org/cl/4668054
2011-07-06exp/template: remove debugging dreg.David Symonds
R=r, gri TBR=r CC=golang-dev https://golang.org/cl/4671047
2011-07-06html: parse start tags that aren't explicitly otherwise dealt with.Yasuhiro Matsumoto
R=golang-dev, nigeltao CC=golang-dev https://golang.org/cl/4626080
2011-07-06exp/template: remove the need for a goroutine.Rob Pike
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4626095
2011-07-06exp/template: remove the visibility of the token channel from the parser.Rob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4675053
2011-07-06gc: fix %N for OGOTO nodes.Luuk van Dijk
6g -W crashed on any source with a goto. this fixes that. R=rsc, r CC=golang-dev https://golang.org/cl/4675052
2011-07-05exp/template: add templates to sets; boolean logic.Rob Pike
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4670045
2011-07-05godoc: ignore directories that begin with '.'Andrew Gerrand
Fixes #2017. R=golang-dev, r CC=golang-dev https://golang.org/cl/4675047
2011-07-05exp/template: statically check that functions names have been defined.Rob Pike
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4675046
2011-07-05os: fix build for Plan 9Fazlul Shahriar
R=golang-dev, alex.brainman CC=golang-dev https://golang.org/cl/4657074
2011-07-05exp/template: add an html escaping function.Rob Pike
R=golang-dev, dsymonds, adg CC=golang-dev https://golang.org/cl/4626092
2011-07-05image: add a test for filling sub-images.Nigel Tao
R=r CC=golang-dev https://golang.org/cl/4626091
2011-07-05exp/template: functionsRob Pike
Add the ability to attach functions to template and template sets. Make variadic functions and methods work. Still to come: static checking of function names during parse. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4643068
2011-07-04docs: fold the prog.sh scripting from makehtml into htmlgen itself.Rob Pike
This allows us to drop some crufty scripting and provides a firmer footing for building better tools for preparing documents with source code inside. Also eliminate line numbers from the examples and text. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4650069
2011-07-04goinstall: only report successfully-installed packages to the dashboardAndrew Gerrand
R=golang-dev, r CC=golang-dev https://golang.org/cl/4657071
2011-07-04exp/template: add template sets, allowing templates to reference one anotherRob Pike
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4673042
2011-07-04exp/template: allow complex numbers, add 'with', 'define', and 'template' ↵Rob Pike
keywords. Also simplify the handling of keywords. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4639096
2011-07-04reflect: allow Len on String values.Rob Pike
It's probably just an oversight that it doesn't work, perhaps caused by analogy with Cap. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4634125
2011-07-04go/build: evaluate symlinks before comparing path to GOPATHAndrew Gerrand
R=golang-dev, r, dsymonds CC=golang-dev https://golang.org/cl/4645078
2011-07-02godoc: search GOPATH for documentationAndrew Gerrand
R=rsc, mattn.jp CC=golang-dev https://golang.org/cl/4627065
2011-07-02goinstall: documentation for new remote repository behavior and tweaksAndrew Gerrand
R=rsc, julian CC=golang-dev https://golang.org/cl/4642049