summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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>
2010-03-15image/jpeg: fix typosRobert Griesemer1-3/+3
Fixes issue 665. R=nigeltao, nigeltao_golang CC=golang-dev http://codereview.appspot.com/570041
2010-03-15runtime: lock finalizer table accessesRuss Cox1-4/+18
R=r CC=golang-dev http://codereview.appspot.com/462043
2010-03-15gofmt: fix for gofmt rewrite featureRobert Griesemer2-5/+15
Fixes issue 643. R=rsc CC=golang-dev http://codereview.appspot.com/576041
2010-03-12godoc: support for multiple packages in a directoryRobert Griesemer2-27/+64
- smartly select the "right" package - provide a list of other packages R=rsc CC=golang-dev http://codereview.appspot.com/466042
2010-03-12hash/crc64: new package implementing 64-bit CRCRuss Cox7-35/+232
hash/crc32: add Update function hash: add Sum64 interface R=r CC=golang-dev http://codereview.appspot.com/445042
2010-03-12gofmt: make sure there is a newline afterRobert Griesemer5-19/+30
a /*-style comment at the end of a file Some minor cleanups/typo fixes along the way. Fixes an issue where that newline was removed after applying gofmt. R=r CC=golang-dev http://codereview.appspot.com/476043
2010-03-12go/printer: fix a couple of hidden crashes that becomeRobert Griesemer5-3/+20
visible only when enabling internal debug mode: - in rare cases expression depth can underflow - when printing a single labeled statement, indentation may underflow if not setup correctly R=rsc CC=golang-dev http://codereview.appspot.com/484041
2010-03-11ast/filter.go: missing nil-check causes crashRobert Griesemer1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/461041
2010-03-11godoc: fix formatting of -src outputRobert Griesemer3-13/+123
- go/filter.go: make MergePackageFiles smarter - go/printer.go: handle positions from multiple files R=rsc CC=golang-dev http://codereview.appspot.com/460042
2010-03-11math, path: minor comment fixesRobert Griesemer2-2/+2
R=r CC=golang-dev http://codereview.appspot.com/444043
2010-03-11syslog: increase test timeout from 10ms to 100msChristopher Wedgwood1-1/+1
Problem pointed out by rsc. R=rsc CC=golang-dev http://codereview.appspot.com/444041 Committer: Russ Cox <rsc@golang.org>
2010-03-10math package: minor documentation fixRobert Griesemer1-3/+3
R=rsc CC=golang-dev http://codereview.appspot.com/424041
2010-03-10godoc: change -x to -src, update doc.go (missed in previous CL)Robert Griesemer2-1/+3
R=rsc CC=golang-dev http://codereview.appspot.com/384044
2010-03-10godoc: provide mode which shows exported interface in "source form"Robert Griesemer2-16/+29
- on the commandline: godoc -x big - in a webpage: provide form parameter ?m=src Known issues: - Positioning of comments incorrect in several cases. Separate CL. - Need a link/menu to switch between different modes of presentation in the web view. R=rsc CC=golang-dev http://codereview.appspot.com/376041
2010-03-10fix 386 a[i] = cmplx(r, j)Russ Cox1-6/+6
R=ken2 CC=golang-dev http://codereview.appspot.com/384043
2010-03-10template: add ParseFile, MustParseFile, and associated testsAndrew Gerrand2-1/+37
R=r CC=golang-dev http://codereview.appspot.com/391041
2010-03-091. decommit complex(float) conversionKen Thompson4-18/+13
2. add complex algorithm for map/chan 3. test for use of complex in array, slice, field, chan, map, field, pointer. R=rsc CC=golang-dev http://codereview.appspot.com/384041
2010-03-09gc: remove duplicate errors, give better error for I.(T)Russ Cox1-7/+16
R=ken2 CC=golang-dev http://codereview.appspot.com/370041
2010-03-09syscall: minimal mingw version of syscall to call windows dllsAlex Brainman12-2/+356
lots of missing parts, but builds and can call dlls, see a sample code in syscall_mingw.go R=rsc CC=golang-dev http://codereview.appspot.com/218042 Committer: Russ Cox <rsc@golang.org>
2010-03-10reflect: typo in commentDean Prichard1-1/+1
R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/369041 Committer: Andrew Gerrand <adg@golang.org>
2010-03-09fmt: enable the complex tests now that 8g supports complexRob Pike1-4/+0
R=rsc CC=golang-dev http://codereview.appspot.com/357043
2010-03-09fix bugs compiling things likeKen Thompson1-6/+13
c = cmplx(imag(c), real(c)) without a temporary R=rsc CC=golang-dev http://codereview.appspot.com/360043
2010-03-09identical complex implementationKen Thompson13-254/+241
for 6g and 8g. can also be used for 5g. 5g is still a stub. R=rsc CC=golang-dev http://codereview.appspot.com/362041
2010-03-08arm: cleanup build warningsDean Prichard2-5/+2
trivial stuff lex.c: these prototypes are in a.h asm.c: unused variables arm-pass.txt deal w/ sieve.go rename and addition of sieve2.go R=kaib, rsc CC=golang-dev http://codereview.appspot.com/244041 Committer: Russ Cox <rsc@golang.org>
2010-03-08crypto/ripemd160: new packageRaif S. Naffah5-0/+354
R=rsc CC=golang-dev http://codereview.appspot.com/224081 Committer: Russ Cox <rsc@golang.org>
2010-03-08crypto/sha256: add SHA-224Conrad Meyer2-23/+114
R=agl1, rsc CC=golang-dev http://codereview.appspot.com/253045 Committer: Russ Cox <rsc@golang.org>
2010-03-08encoding/base64: fix typo in commentGiles Lean1-1/+1
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/258041 Committer: Russ Cox <rsc@golang.org>
2010-03-08gc: avoid fixed length buffer cleanbufDean Prichard1-2/+3
R=rsc CC=golang-dev http://codereview.appspot.com/302042 Committer: Russ Cox <rsc@golang.org>