summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-23cmd/goinstall: include command name in error reporting (usually missing ↵Andrey Mirtchovski1-1/+2
software or incorrect $PATH) R=rsc CC=golang-dev http://codereview.appspot.com/695041 Committer: Russ Cox <rsc@golang.org>
2010-03-23gc: fix build in FranceRuss Cox1-1/+1
Fixes issue 626. R=ken2 CC=golang-dev http://codereview.appspot.com/714041
2010-03-23websocket: implement new protocolFumitoshi Ukai3-15/+431
http://www.whatwg.org/specs/web-socket-protocol/ (draft of draft-hixie-thewebsocketprotocol-76) draft-hixie-thewebsocketprotocol-76 will introduce new handshake incompatible draft 75 or prior. http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol R=rsc CC=golang-dev http://codereview.appspot.com/583041 Committer: Russ Cox <rsc@golang.org>
2010-03-23Trivial: remove duplicate line #include <sys/types.h>Giles Lean1-1/+0
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/645044 Committer: Robert Griesemer <gri@golang.org>
2010-03-23fix build - unused importRuss Cox1-1/+0
R=gri CC=golang-dev http://codereview.appspot.com/711041
2010-03-23go spec: modification of defer statementRobert Griesemer1-5/+17
R=r, rsc, ken2, iant CC=golang-dev http://codereview.appspot.com/708041
2010-03-23FAQ: Protocol buffers are now supported. Update the entry.Rob Pike1-4/+4
R=rsc, adg CC=golang-dev http://codereview.appspot.com/702042
2010-03-23runtime: add CallersRuss Cox7-393/+121
cut copies of traceback from 6 to 1. R=r CC=golang-dev http://codereview.appspot.com/703041
2010-03-23go/printer: avoid reflect in printRuss Cox1-7/+5
R=gri CC=golang-dev http://codereview.appspot.com/704041
2010-03-23Go spec: map indexing never raises a runtime exception.Robert Griesemer1-25/+28
Also: Actual map key must be assignment-compatible with formal map key type. Fixes issue 357. R=r, iant, rsc, ken2 CC=golang-dev http://codereview.appspot.com/673042
2010-03-23xml: add line numbers to syntax errors.Kyle Consalus2-25/+49
R=rsc CC=golang-dev http://codereview.appspot.com/699041 Committer: Russ Cox <rsc@golang.org>
2010-03-23maps access to a missing keyKen Thompson1-2/+4
will return the "zero" value R=rsc CC=golang-dev http://codereview.appspot.com/700041
2010-03-23xml: add CopyTokenKyle Consalus2-2/+52
R=rsc CC=golang-dev http://codereview.appspot.com/634042 Committer: Russ Cox <rsc@golang.org>
2010-03-23Add support for #pragma dynexport.Ian Lance Taylor16-105/+362
R=rsc CC=golang-dev http://codereview.appspot.com/661043
2010-03-23release.2010-03-22 part twoAndrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/691041
2010-03-22Rename dynld to dynimport throughout.Ian Lance Taylor16-66/+77
Cgo users will need to rerun cgo. R=rsc CC=golang-dev http://codereview.appspot.com/692041
2010-03-23release.2010-03-22Andrew Gerrand1-0/+35
R=rsc CC=golang-dev http://codereview.appspot.com/643042
2010-03-22gc: various map-related bug fixesRuss Cox4-58/+51
Fixes issue 687. R=ken2 CC=golang-dev http://codereview.appspot.com/680042
2010-03-23ast/printer: support for printing ast.Spec nodesAndrew Gerrand1-0/+3
R=gri CC=golang-dev http://codereview.appspot.com/682041
2010-03-20goinstall: let git/hg/svn create the final directory elementRuss Cox1-1/+3
R=r CC=golang-dev http://codereview.appspot.com/634044
2010-03-20A+C: add Kyle Consalus (individual CLA)Russ Cox2-0/+2
R=r CC=golang-dev http://codereview.appspot.com/662041
2010-03-20libmach: more info when memory reads fail on DarwinRuss Cox1-2/+4
R=r CC=golang-dev http://codereview.appspot.com/604043
2010-03-20issue 682Ken Thompson6-22/+71
complex DATA statement fo initialization of complex variables. R=rsc CC=golang-dev http://codereview.appspot.com/634045
2010-03-19godoc: line numbers for all remote search resultsRobert Griesemer3-10/+15
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 http://codereview.appspot.com/669041
2010-03-19godoc: revert change 5089, per gri's instructionsRuss Cox2-28/+6
R=gri CC=golang-dev http://codereview.appspot.com/630043
2010-03-20website: add Go Blog widget to frontpage,Andrew Gerrand3-3/+38
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev http://codereview.appspot.com/611042
2010-03-19godoc: proper file path conversion for remote searchRobert Griesemer2-3/+28
R=rsc CC=golang-dev http://codereview.appspot.com/664041
2010-03-19Make.cmd: make 'all' the default target (was 'clean': BUG)Rob Pike1-2/+1
R=rsc CC=golang-dev http://codereview.appspot.com/661041
2010-03-19os: drop File finalizer after normal CloseRuss Cox1-0/+3
R=r CC=golang-dev http://codereview.appspot.com/586043
2010-03-20http: add Error helper functionAndrew Gerrand1-4/+7
R=r, rsc CC=golang-dev http://codereview.appspot.com/626042
2010-03-19doc/htmlgen.go: remove unnecessary semicolonsJames Toy1-72/+72
R=rsc CC=golang-dev http://codereview.appspot.com/589043 Committer: Russ Cox <rsc@golang.org>
2010-03-19A+C: add James Toy (individual CLA)Russ Cox2-0/+2
R=r CC=golang-dev http://codereview.appspot.com/660041
2010-03-19math: add Gamma functionCharles L. Dorian3-0/+235
R=rsc CC=golang-dev http://codereview.appspot.com/649041 Committer: Russ Cox <rsc@golang.org>
2010-03-19syscall: mingw implemntation of Errstr()Alex Brainman5-19/+30
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/621041 Committer: Russ Cox <rsc@golang.org>
2010-03-19godoc: show (some) line numbers for remote searchRobert Griesemer4-32/+30
- show build version - use build goroot when possible R=rsc CC=golang-dev http://codereview.appspot.com/656043
2010-03-19syscall: mksyscall_mingw.sh emitting shorter calls (to Syscall or Syscall6) ↵Alex Brainman3-23/+30
when there are fewer arguments R=rsc CC=golang-dev http://codereview.appspot.com/622041 Committer: Russ Cox <rsc@golang.org>
2010-03-19Factor the Makefiles to make writing outside Makefiles easier.Rob Pike3-25/+43
R=rsc CC=golang-dev http://codereview.appspot.com/650042
2010-03-19issue 608Ken Thompson1-0/+1
error compiling if(long long) in 6c compiler R=rsc CC=golang-dev http://codereview.appspot.com/657042
2010-03-19websocket: use URL.RawPath to construct WebSocket-Location: headerFumitoshi Ukai2-1/+18
R=rsc CC=golang-dev http://codereview.appspot.com/651041 Committer: Russ Cox <rsc@golang.org>
2010-03-19deps.bash: handle Makefiles with .go filenames that include $(GOOS) and ↵Alex Brainman1-0/+2
$(GOARCH) R=rsc CC=golang-dev http://codereview.appspot.com/642042 Committer: Russ Cox <rsc@golang.org>
2010-03-19godoc: improved comment formatting: recognize URLsRobert Griesemer3-41/+139
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 issue 672. R=rsc CC=adg, golang-dev http://codereview.appspot.com/601042
2010-03-19godoc: implemented command-line searchRobert Griesemer4-15/+173
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 http://codereview.appspot.com/648041
2010-03-19template: fixed html formatter bug where it would turn a []byteAndrew Gerrand2-3/+18
into a string of decimal numbers. R=r, rsc CC=golang-dev http://codereview.appspot.com/624041
2010-03-18rpc documentation cleanup: remove ;'s from code in documentationRobert Griesemer1-18/+18
R=r CC=golang-dev http://codereview.appspot.com/624042
2010-03-18go/doc cleanup: remove some unnecessary string conversionsRobert Griesemer1-3/+2
R=rsc CC=golang-dev http://codereview.appspot.com/642041
2010-03-17Fix src/pkg/syscall/mkall.sh: don't assume that . is on PATH.Alex Brainman1-19/+19
R=golang-dev, r CC=golang-dev http://codereview.appspot.com/614042 Committer: Rob Pike <r@golang.org>
2010-03-17Fix build: don't assume that . is on PATH.Ian Lance Taylor1-1/+1
R=rsc TBR=rsc CC=golang-dev http://codereview.appspot.com/610043
2010-03-16crypto/rand: new packageRuss Cox4-0/+170
Until proven insufficient, rely on the operating system to give us good random bytes (/dev/urandom). R=agl1 CC=golang-dev http://codereview.appspot.com/569044
2010-03-16runtime: add GOROOT and VersionRuss Cox5-2/+57
R=r CC=golang-dev http://codereview.appspot.com/608041
2010-03-16syscall: more changes to mingw versionAlex Brainman8-84/+376
- 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 http://codereview.appspot.com/562041 Committer: Russ Cox <rsc@golang.org>