aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-03-23release.2010-03-22weekly.2010-03-22Andrew Gerrand
R=rsc CC=golang-dev https://golang.org/cl/643042
2010-03-22gc: various map-related bug fixesRuss Cox
Fixes #687. R=ken2 CC=golang-dev https://golang.org/cl/680042
2010-03-23ast/printer: support for printing ast.Spec nodesAndrew Gerrand
R=gri CC=golang-dev https://golang.org/cl/682041
2010-03-20goinstall: let git/hg/svn create the final directory elementRuss Cox
R=r CC=golang-dev https://golang.org/cl/634044
2010-03-20A+C: add Kyle Consalus (individual CLA)Russ Cox
R=r CC=golang-dev https://golang.org/cl/662041
2010-03-20libmach: more info when memory reads fail on DarwinRuss Cox
R=r CC=golang-dev https://golang.org/cl/604043
2010-03-20issue 682Ken Thompson
complex DATA statement fo initialization of complex variables. R=rsc CC=golang-dev https://golang.org/cl/634045
2010-03-19godoc: line numbers for all remote search resultsRobert Griesemer
Instead of returning the index lookup result via RPC which has to be corrected for the client, simply render it on the server and return the final output. R=rsc, r CC=golang-dev https://golang.org/cl/669041
2010-03-19godoc: revert change 5089, per gri's instructionsRuss Cox
R=gri CC=golang-dev https://golang.org/cl/630043
2010-03-20website: add Go Blog widget to frontpage,Andrew Gerrand
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev https://golang.org/cl/611042
2010-03-19godoc: proper file path conversion for remote searchRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/664041
2010-03-19Make.cmd: make 'all' the default target (was 'clean': BUG)Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/661041
2010-03-19os: drop File finalizer after normal CloseRuss Cox
R=r CC=golang-dev https://golang.org/cl/586043
2010-03-20http: add Error helper functionAndrew Gerrand
R=r, rsc CC=golang-dev https://golang.org/cl/626042
2010-03-19doc/htmlgen.go: remove unnecessary semicolonsJames Toy
R=rsc CC=golang-dev https://golang.org/cl/589043
2010-03-19A+C: add James Toy (individual CLA)Russ Cox
R=r CC=golang-dev https://golang.org/cl/660041
2010-03-19math: add Gamma functionCharles L. Dorian
R=rsc CC=golang-dev https://golang.org/cl/649041
2010-03-19syscall: mingw implemntation of Errstr()Alex Brainman
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/621041
2010-03-19godoc: show (some) line numbers for remote searchRobert Griesemer
- show build version - use build goroot when possible R=rsc CC=golang-dev https://golang.org/cl/656043
2010-03-19syscall: mksyscall_mingw.sh emitting shorter calls (to Syscall or Syscall6) ↵Alex Brainman
when there are fewer arguments R=rsc CC=golang-dev https://golang.org/cl/622041
2010-03-19Factor the Makefiles to make writing outside Makefiles easier.Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/650042
2010-03-19issue 608Ken Thompson
error compiling if(long long) in 6c compiler R=rsc CC=golang-dev https://golang.org/cl/657042
2010-03-19websocket: use URL.RawPath to construct WebSocket-Location: headerFumitoshi Ukai
R=rsc CC=golang-dev https://golang.org/cl/651041
2010-03-19deps.bash: handle Makefiles with .go filenames that include $(GOOS) and ↵Alex Brainman
$(GOARCH) R=rsc CC=golang-dev https://golang.org/cl/642042
2010-03-19godoc: improved comment formatting: recognize URLsRobert Griesemer
and highlight special words, if provided. Also: - related cleanups in src/pkg/go/doc/comment.go - fix typos in src/cmd/goinstall/doc.go Fixes #672. R=rsc CC=adg, golang-dev https://golang.org/cl/601042
2010-03-19godoc: implemented command-line searchRobert Griesemer
The command-line search is using a running webserver as index server; i.e., the search result is reflecting the index at the server. See the documentation for details. Usage: godoc -q query1 query2 ... Known issue: Results don't show the all-important line numbers yet due to the way the index is organized. Next CL. R=rsc, r CC=golang-dev https://golang.org/cl/648041
2010-03-19template: fixed html formatter bug where it would turn a []byteAndrew Gerrand
into a string of decimal numbers. R=r, rsc CC=golang-dev https://golang.org/cl/624041
2010-03-18rpc documentation cleanup: remove ;'s from code in documentationRobert Griesemer
R=r CC=golang-dev https://golang.org/cl/624042
2010-03-18go/doc cleanup: remove some unnecessary string conversionsRobert Griesemer
R=rsc CC=golang-dev https://golang.org/cl/642041
2010-03-17Fix src/pkg/syscall/mkall.sh: don't assume that . is on PATH.Alex Brainman
R=golang-dev, r CC=golang-dev https://golang.org/cl/614042
2010-03-17Fix build: don't assume that . is on PATH.Ian Lance Taylor
R=rsc TBR=rsc CC=golang-dev https://golang.org/cl/610043
2010-03-16crypto/rand: new packageRuss Cox
Until proven insufficient, rely on the operating system to give us good random bytes (/dev/urandom). R=agl1 CC=golang-dev https://golang.org/cl/569044
2010-03-16runtime: add GOROOT and VersionRuss Cox
R=r CC=golang-dev https://golang.org/cl/608041
2010-03-16syscall: more changes to mingw versionAlex Brainman
- mkall now generates syscall stabs automatically - we can call unicode versions of winapi now - introduce GetErrstr function to fetch error text given errno - general cleanup R=rsc CC=golang-dev https://golang.org/cl/562041
2010-03-17json: add MarshalIndent (accepts user-specified indent string)Andrew Gerrand
Fixes #661 R=r, rsc, skorobo CC=golang-dev https://golang.org/cl/576042
2010-03-16syscall: add const ARCH, analogous to OSRuss Cox
R=r CC=giles, golang-dev https://golang.org/cl/600041
2010-03-16doc/install: tweak port text; drop redundant list of operating systems.Russ Cox
R=adg CC=golang-dev, r https://golang.org/cl/597041
2010-03-16version.bash: cope with ancient MercurialRuss Cox
R=adg CC=dpx, golang-dev https://golang.org/cl/593043
2010-03-16http: change RawPath to mean raw path, not raw everything-after-scheme.Russ Cox
The new meaning is more useful for both websocket and http. R=r, petar-m, ukai CC=golang-dev, madari https://golang.org/cl/582043
2010-03-16utf16: new packageRuss Cox
needed for interacting with various legacy interfaces, like Windows and the Mac OS clipboard. R=r CC=golang-dev https://golang.org/cl/595041
2010-03-17goinstall doc: fix link to godashboard/packageAndrew Gerrand
R=rsc CC=golang-dev https://golang.org/cl/607041
2010-03-16gofmt: more consistent formatting of const/var declsRobert Griesemer
- gofmt -w src misc - only manually modified file: src/pkg/go/printer/nodes.go R=rsc CC=golang-dev, r https://golang.org/cl/606041
2010-03-16godoc: initial support for showing popup informationRobert Griesemer
for identifiers in Go source code - at the moment just show identifier kind (var, func, etc.) and name (eventually should show declaration, type, etc.) - JavaScript parts by adg R=rsc CC=adg, golang-dev https://golang.org/cl/578042
2010-03-16net: fix IPMask.String not to crash on all-0xff maskRuss Cox
R=r CC=golang-dev https://golang.org/cl/438042
2010-03-16http: add ParseQueryPetar Maymounkov
R=rsc CC=golang-dev https://golang.org/cl/238041
2010-03-16misc/bbedit: support for cmplx, real, imagAnthony Starks
R=rsc CC=golang-dev https://golang.org/cl/582041
2010-03-16sha512: add sha384 (truncated version)Conrad Meyer
R=rsc CC=golang-dev https://golang.org/cl/317041
2010-03-15image/jpeg: fix typosRobert Griesemer
Fixes #665. R=nigeltao, nigeltao_golang CC=golang-dev https://golang.org/cl/570041
2010-03-15Add new complex types, functions and literals to Vim syntax file.David Symonds
R=rsc CC=golang-dev https://golang.org/cl/224042
2010-03-15runtime: lock finalizer table accessesRuss Cox
R=r CC=golang-dev https://golang.org/cl/462043