summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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-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-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-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-22gc: various map-related bug fixesRuss Cox3-57/+50
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-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 Griesemer2-9/+13
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 Cox1-24/+3
R=gri CC=golang-dev http://codereview.appspot.com/630043
2010-03-19godoc: proper file path conversion for remote searchRobert Griesemer1-0/+24
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-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 Griesemer2-30/+27
- 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 Griesemer3-15/+121
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 Cox4-1/+52
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>
2010-03-17json: add MarshalIndent (accepts user-specified indent string)Andrew Gerrand2-52/+184
Fixes issue 661 R=r, rsc, skorobo CC=golang-dev http://codereview.appspot.com/576042
2010-03-16syscall: add const ARCH, analogous to OSRuss Cox4-0/+22
R=r CC=giles, golang-dev http://codereview.appspot.com/600041
2010-03-16version.bash: cope with ancient MercurialRuss Cox1-2/+8
R=adg CC=dpx, golang-dev http://codereview.appspot.com/593043
2010-03-16http: change RawPath to mean raw path, not raw everything-after-scheme.Russ Cox4-70/+109
The new meaning is more useful for both websocket and http. R=r, petar-m, ukai CC=golang-dev, madari http://codereview.appspot.com/582043
2010-03-16utf16: new packageRuss Cox4-0/+167
needed for interacting with various legacy interfaces, like Windows and the Mac OS clipboard. R=r CC=golang-dev http://codereview.appspot.com/595041
2010-03-17goinstall doc: fix link to godashboard/packageAndrew Gerrand1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/607041
2010-03-16gofmt: more consistent formatting of const/var declsRobert Griesemer16-88/+138
- gofmt -w src misc - only manually modified file: src/pkg/go/printer/nodes.go R=rsc CC=golang-dev, r http://codereview.appspot.com/606041
2010-03-16godoc: initial support for showing popup informationRobert Griesemer2-6/+78
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 http://codereview.appspot.com/578042
2010-03-16net: fix IPMask.String not to crash on all-0xff maskRuss Cox1-21/+38
R=r CC=golang-dev http://codereview.appspot.com/438042
2010-03-16http: add ParseQueryPetar Maymounkov2-5/+8
R=rsc CC=golang-dev http://codereview.appspot.com/238041 Committer: Russ Cox <rsc@golang.org>
2010-03-16sha512: add sha384 (truncated version)Conrad Meyer2-23/+114
R=rsc CC=golang-dev http://codereview.appspot.com/317041 Committer: Russ Cox <rsc@golang.org>