aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-23misc/dist: make godoc shortcut workweekly.2012-03-22Andrew Gerrand
R=golang-dev CC=golang-dev https://golang.org/cl/5877062
2012-03-23doc/godoc.js: fix error on IE8.Yasuhiro Matsumoto
* implement simple getElementsByClassName for IE8. * remove some lint warnings. Fixes #3318. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5881054
2012-03-23weekly.2012-03-22Andrew Gerrand
R=golang-dev, r, dave CC=golang-dev https://golang.org/cl/5876068
2012-03-23misc/dist: updates to installer scriptAndrew Gerrand
Now sets GOROOT. Fixes #3287. Fixes #3361. R=golang-dev CC=golang-dev https://golang.org/cl/5877059
2012-03-22doc/articles/c_go_cgo.html: correct "C" comment to mention #cgoIan Lance Taylor
Also fix invalid apostrophe characters. R=r, gri, adg CC=golang-dev https://golang.org/cl/5874058
2012-03-23doc/articles: rename concurrency patterns articleRob Pike
The old name, automatically generated, was ludicrously verbose. Also clean up an example to use time.Second. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5876051
2012-03-22test: fix run.bash by spelling out the commands to use for bug424.goIan Lance Taylor
R=golang-dev, gri, iant CC=golang-dev https://golang.org/cl/5882046
2012-03-22cmd/gc: fix comment typo, assignment spacingIan Lance Taylor
R=bradfitz, gri, lvd CC=golang-dev https://golang.org/cl/5874053
2012-03-22cmd/gc: when expanding append inline, preserve argumentsIan Lance Taylor
Fixes #3369. R=golang-dev, gri, lvd, r CC=golang-dev https://golang.org/cl/5876044
2012-03-22sort: add time complexity to docStefan Nilsson
Let's tell the world that Go's sort is O(n log n). Surely this is a feature we intend to keep. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5867045
2012-03-22doc/articles/gobs_of_data.html: delete extra wordRob Pike
Putt putt putt our way towards felicity. R=golang-dev, bsiegert CC=golang-dev https://golang.org/cl/5874048
2012-03-22doc: add JSON and Go articleFrancisco Souza
Originally published on The Go Programming Language Blog, January 25, 2011. http://blog.golang.org/2011/01/json-and-go.html R=adg CC=golang-dev https://golang.org/cl/5846044
2012-03-22doc/articles/go_command.html: nitsRob Pike
Fix some English mistakes and minor inaccuracies. R=golang-dev, jsing CC=golang-dev https://golang.org/cl/5885046
2012-03-22flag: add examplesRob Pike
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5867049
2012-03-21doc: fix typo in The Laws of Reflection articleFrancisco Souza
R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/5876047
2012-03-21exp/norm/normalize.go: fix typoRobert Griesemer
R=golang-dev, r, dsymonds CC=golang-dev https://golang.org/cl/5874045
2012-03-21doc/effective_go.html: undo local font changeRobert Griesemer
R=r CC=golang-dev https://golang.org/cl/5876043
2012-03-22go/build: clarify why we exclude files starting with '_' or '.'Shenghou Ma
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5864053
2012-03-21godoc: use shorter titles for tabsRobert Griesemer
In a browser with many open tabs, the tab titles become short and uninformative because they all start with the same prefix ("Package ", "Directory ", etc.). Permit use of shorter tab titles that start with the relevant information first. Fixes #3365. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5865056
2012-03-22test: use testlib in a few more casesShenghou Ma
Introduce a new skip cmd. R=golang-dev, bradfitz, iant, iant CC=golang-dev https://golang.org/cl/5868048
2012-03-21cmd/cgo: fix handling of errno for gccgoIan Lance Taylor
Fixes #3332. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5868047
2012-03-21doc/effective_go: minor correctionsShenghou Ma
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5848063
2012-03-21build: lengthen timeout for the lengthy runtime testShenghou Ma
To fix build on (overheated) Linux/ARM builder. R=golang-dev, dave CC=golang-dev https://golang.org/cl/5865051
2012-03-20doc: remove reference to deleted os.ENOSPCBrad Fitzpatrick
R=golang-dev, gri, r, r CC=golang-dev https://golang.org/cl/5866046
2012-03-21html/template: fix typo and make grammar consistent in comments.David Symonds
R=golang-dev, r CC=golang-dev https://golang.org/cl/5866044
2012-03-20sort: fix computation of maxDepth to avoid infinite loopStefan Nilsson
The current computation loops indefinitely if n > 1<<30 (for 32-bit ints). R=golang-dev, gri CC=golang-dev https://golang.org/cl/5848067
2012-03-20cmd/go: use .o, not .{5,6,8}, for gccgo created object filesIan Lance Taylor
R=golang-dev, r CC=golang-dev https://golang.org/cl/5861044
2012-03-20doc: general update of gccgo_installIan Lance Taylor
Fixes #3325. R=golang-dev, bradfitz, minux.ma, r CC=golang-dev https://golang.org/cl/5858043
2012-03-20sort: document two undocumented functionsBrad Fitzpatrick
They looked out of place in godoc. Includes documenting sort stability. Fixes #3356 R=golang-dev, gri, trolleriprofessorn CC=golang-dev https://golang.org/cl/5855044
2012-03-21misc/cgo/gmp: update for Go 1Shenghou Ma
1. make the program go buildable 2. update os.EINVAL and runtime.Cgocalls() 3. wrap mpz_div_2exp() and mpz_mul_2exp to support both pre-5.0 and post-5.0 gmp (we really have no reason to restrict ourselves to gmp 5.0+) R=golang-dev, remyoudompheng, iant CC=golang-dev https://golang.org/cl/5847061
2012-03-21runtime: remove unused goc2c.cShenghou Ma
Its functionality has been moved into cmd/dist. R=golang-dev, r, iant CC=golang-dev https://golang.org/cl/5843062
2012-03-21build: unset GOPATH before testsShenghou Ma
This is because we disallow local import for non-local packages, if GOROOT happens to be under one of GOPATH, then some tests will fail to build. Fixes #3337. R=golang-dev, r CC=golang-dev https://golang.org/cl/5852043
2012-03-21doc/debugging_with_gdb: format & content updateShenghou Ma
R=adg, lvd CC=golang-dev https://golang.org/cl/5845065
2012-03-20run.bat: disable test in test\bench\go1 to fix buildAlex Brainman
R=golang-dev, r CC=golang-dev https://golang.org/cl/5848066
2012-03-20api: update go1.txt after adding functions to html/templateRob Pike
Fixes build, teaches lesson. R=golang-dev, r TBR=bradfitz CC=golang-dev https://golang.org/cl/5853051
2012-03-20html/template: add Templates and *Escape functionsRob Pike
to bring it in line with text/template's interface. Fixes #3296. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5843066
2012-03-20cmd/godoc: inform users that the playground doesn't work via local godocAndrew Gerrand
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5843065
2012-03-20doc: remove defunct playground.htmlAndrew Gerrand
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5846071
2012-03-20build: do more during windows buildAlex Brainman
- use GO_GCFLAGS and GO_LDFLAGS if supplied - build misc\dashboard\builder and misc\goplay - run tests in test\bench\go1 - check api compatibility R=golang-dev, r, kardianos, bradfitz CC=golang-dev https://golang.org/cl/5847063
2012-03-20doc: replace mentions of 6g with gc or the go commandAndrew Gerrand
R=golang-dev, r CC=golang-dev https://golang.org/cl/5846070
2012-03-20misc/dashboard: remove remnants of package dashboardAndrew Gerrand
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5847070
2012-03-20net: drop unnecessary type assertions and fix leak in testMikio Hara
R=golang-dev, r CC=golang-dev https://golang.org/cl/5847064
2012-03-19gc: fix struct and array comparisons for new bool rulesAnthony Martin
The two optimizations for small structs and arrays were missing the implicit cast from ideal bool. Fixes #3351. R=rsc, lvd CC=golang-dev https://golang.org/cl/5848062
2012-03-19crypto/tls: always send a Certificate message if one was requested.Adam Langley
If a CertificateRequest is received we have to reply with a Certificate message, even if we don't have a certificate to offer. Fixes #3339. R=golang-dev, r, ality CC=golang-dev https://golang.org/cl/5845067
2012-03-19doc: update format for "C? Go? Cgo!" articleShenghou Ma
R=adg CC=golang-dev https://golang.org/cl/5841050
2012-03-19path/filepath: implement Match and Glob on windowsAlex Brainman
As discussed on golang-dev, windows will use "\" as path separator. No escaping allowed. R=golang-dev, r, mattn.jp, rsc, rogpeppe, bsiegert, r CC=golang-dev https://golang.org/cl/5825044
2012-03-19doc: move sub-repos lower on reference pageAndrew Gerrand
R=golang-dev, r CC=golang-dev https://golang.org/cl/5846065
2012-03-19sysycall: remove creds_linux_test.goRob Pike
It is unprecedented to add tests to package syscall, especially system-specific ones. Not a policy worth changing right before Go 1 is cut. The sole existing test, passfd_test.go, contains the line // +build linux darwin probablyfreebsd probablyopenbsd which argues that this is not a subject to be undertaking likely. Note that passfd_test.go also went in just now. It's the only test in syscall. Deleting for now, will reconsider after Go 1. R=golang-dev, bradfitz, r, dsymonds CC=golang-dev https://golang.org/cl/5846063
2012-03-19syscall: delete passfd_test.goRob Pike
We can revisit the issue of testing in syscall after Go 1. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5844057
2012-03-19doc: various typos, remove apostrophes from ordinalsJeremy Jackins
R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5845059