summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-01-06godoc: serve index.html in place of directory listing, when presentRuss Cox1-0/+10
R=gri CC=golang-dev http://codereview.appspot.com/181155
2010-01-06add release log as doc/devel/release.htmlRuss Cox1-0/+149
won't appear online until next release R=r CC=golang-dev http://codereview.appspot.com/183126
2010-01-06Use remove-text-properties instead ofAustin Clements1-2/+2
remove-list-of-test-properties, since the latter is missing from XEmacs. Fixes issue 462. R=rsc CC=golang-dev http://codereview.appspot.com/181152 Committer: Russ Cox <rsc@golang.org>
2010-01-06http: avoid header duplication - take struct fields out of Header mapRuss Cox1-2/+12
R=r CC=golang-dev, petar-m http://codereview.appspot.com/183132
2010-01-06cgo: Use -fno-eliminate-unused-debug-types when calling gcc to for dwarf stabs.Devon H. O'Dell1-0/+1
This keeps debug symbols in for e.g. unreferenced enums. Fixes issue 479 R=rsc CC=golang-dev, waltermundt http://codereview.appspot.com/181102 Committer: Russ Cox <rsc@golang.org>
2010-01-07New time formatter, time.Format(formatString)Rob Pike4-155/+259
The model is that formatString is a a representation of a standard time, and that Format converts the time to that representation. Standard representaitons are defined for ANSIC, RFC850, RFC1123, and ISO8601. There's also a humane Kitchen fomat: 3:04PM. R=rsc, benolive, cw CC=golang-dev http://codereview.appspot.com/181130
2010-01-06Added me to authors and contributors.Jan H. Hosang2-0/+2
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/181153 Committer: Ian Lance Taylor <iant@golang.org>
2010-01-06Fix missing explicit GOBIN in src/pkg/Makefile. Clean up creation ofDevon H. O'Dell3-18/+16
QUOTED_GOBIN. Re-take of 181077; fixes copy-pasta that broke build. Fixes issue 468 R=rsc CC=golang-dev http://codereview.appspot.com/183125 Committer: Russ Cox <rsc@golang.org>
2010-01-06Add http.CanonicalPath and tests for it. Remove BUG(rsc) from url.go.Ivan Krasin2-9/+95
R=rsc, imkrasin CC=golang-dev http://codereview.appspot.com/179126 Committer: Russ Cox <rsc@golang.org>
2010-01-06Propagate error to the caller in json.Marshal. Fixes issue 445.Ivan Krasin2-6/+21
R=rsc, imkrasin CC=golang-dev http://codereview.appspot.com/179125 Committer: Russ Cox <rsc@golang.org>
2010-01-05release.2010-01-05Russ Cox0-0/+0
R=r http://codereview.appspot.com/183124
2010-01-05hgtags: delete "release" (prepare for new release)Russ Cox0-0/+0
R=r CC=golang-dev http://codereview.appspot.com/183123
2010-01-058a, 8l: Add FCOMI, FCOMIP, FUCOMI, FUCOMIP instructionsEvan Shaw3-1/+13
Fixes issue 447 R=rsc CC=golang-dev http://codereview.appspot.com/183047 Committer: Russ Cox <rsc@golang.org>
2010-01-05rollback of http://codereview.appspot.com/181077Russ Cox3-16/+18
(broke build) TBR=dho http://codereview.appspot.com/181139
2010-01-05xml: Fix comment so that example code compilesEvan Shaw1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/181138 Committer: Russ Cox <rsc@golang.org>
2010-01-05Update Emacs go-mode for new semicolon rule.Austin Clements1-41/+57
Fixes issue 415. R=rsc CC=golang-dev http://codereview.appspot.com/183104 Committer: Russ Cox <rsc@golang.org>
2010-01-05big: fix ProbablyPrime bug, commentsRuss Cox3-4/+14
(changes adopted from alc, agl) R=agl1, agl CC=golang-dev http://codereview.appspot.com/181137
2010-01-05Fix missing explicit GOBIN in src/pkg/Makefile. Clean up creation of ↵Devon H. O'Dell3-18/+16
QUOTED_GOBIN Fixes issue 468 R=rsc CC=golang-dev http://codereview.appspot.com/181077 Committer: Russ Cox <rsc@golang.org>
2010-01-05syscall: add nanosleep on FreeBSDDevon H. O'Dell3-0/+13
Fixes issue 461 R=rsc CC=golang-dev http://codereview.appspot.com/181059 Committer: Russ Cox <rsc@golang.org>
2010-01-05net: make Dial correctly return nil on error.Roger Peppe1-3/+15
R=rsc CC=golang-dev http://codereview.appspot.com/181135 Committer: Russ Cox <rsc@golang.org>
2010-01-04remove reference to "basic literal" since it's never definedRobert Griesemer1-1/+2
R=rsc, r CC=golang-dev http://codereview.appspot.com/183113
2010-01-04Simplified parser interface.Robert Griesemer4-54/+39
R=rsc, r CC=golang-dev, rog http://codereview.appspot.com/183116
2010-01-05Check for errors when writing fields of a struct.Rob Pike1-1/+5
R=rsc CC=golang-dev, jack.palevich http://codereview.appspot.com/183109
2010-01-04Allow a nil Ident to print without crashing.Roger Peppe2-6/+14
Allow Walk of []Decl R=gri CC=golang-dev, rsc http://codereview.appspot.com/183112 Committer: Robert Griesemer <gri@golang.org>
2010-01-04fix up YB and add ZB, EB in exampleRob Pike1-0/+6
R=rsc CC=golang-dev http://codereview.appspot.com/183107
2010-01-02Remove redundant size check in resize. Let callers worry about that and ↵Yongjian Xu1-5/+2
resize should just do "resize". R=golang-dev, r CC=golang-dev http://codereview.appspot.com/181111 Committer: Rob Pike <r@golang.org>
2009-12-31trivial bug: []byte is special but [3]byte is not.Rob Pike2-5/+7
modify a test to verify the fix. R=rsc CC=golang-dev http://codereview.appspot.com/183090 Committer: Rob Pike <r@golang.org>
2009-12-30More Xcode support.Robert Griesemer1-0/+29
Recognize special comments starting with TODO or BUG. R=r CC=golang-dev http://codereview.appspot.com/183095
2009-12-29Document how to build gccgo to use gold.Ian Lance Taylor1-5/+31
This provides full support for discontiguous stacks. R=r CC=golang-dev http://codereview.appspot.com/183088
2009-12-29Test case for issue 475 and related bug.Robert Griesemer3-0/+49
R=iant CC=golang-dev http://codereview.appspot.com/183087
2009-12-29Improved Xcode supportKen Friedenbach1-2/+43
Added definition for raw string. Added definitions for function and method declarations. Enabled function, method, and type declarations to appear in Editor pop up menu. Fixes Issue 466. R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/183065 Committer: Robert Griesemer <gri@golang.org>
2009-12-29added author/contributorRobert Griesemer2-0/+2
R=iant CC=golang-dev http://codereview.appspot.com/181099
2009-12-29test case for issue 471Robert Griesemer2-0/+22
R=iant CC=golang-dev http://codereview.appspot.com/183084
2009-12-30improve some type switches now that multiple types per case are supported.Rob Pike2-50/+6
R=rsc CC=golang-dev http://codereview.appspot.com/181089
2009-12-29Apply symmetric changes to sha1 and sha256 as to md4 and md5.Robert Griesemer2-24/+16
R=agl, agl1 CC=golang-dev http://codereview.appspot.com/183083
2009-12-29PNG decoder now handles transparent paletted images.Nigel Tao1-0/+32
Fixes issue 439. R=r CC=golang-dev http://codereview.appspot.com/181087
2009-12-29JPEG decoder now handles RST (restart) markers.Nigel Tao1-0/+42
R=r CC=golang-dev http://codereview.appspot.com/181075
2009-12-29add a debugging printer to the gob package.Rob Pike3-0/+246
used only for debugging, debug.go is not normally part of the package source. also add a dump program to call it. R=rsc CC=golang-dev http://codereview.appspot.com/183075
2009-12-29remove all references to gobType() from the decoder.Rob Pike1-14/+20
Fixes issue 470. R=rsc CC=golang-dev http://codereview.appspot.com/183074
2009-12-28Fix bug in godoc tab conversion filter:Robert Griesemer1-5/+13
tabs after an empty line where not converted. Also, made it more robust in the presence of (unexpected) ' ' and '\v' chars in indentation mode. R=r CC=golang-dev http://codereview.appspot.com/181085
2009-12-28Symmetric changes to md4.go as for md5.go.Robert Griesemer3-38/+34
Use uint index variables in some cases instead of int to enable strength reduction; this makes it possible for the compiler to reduce % into masks. Old code: 6g -S md4.go md4block.go | grep "md4block.go:44" 0471 (md4block.go:44) MOVL AX,BX 0472 (md4block.go:44) MOVL AX,BP 0473 (md4block.go:44) MOVL AX,R8 0474 (md4block.go:44) SARL $31,R8 0475 (md4block.go:44) SHRL $30,R8 0476 (md4block.go:44) ADDL R8,BP 0477 (md4block.go:44) SARL $2,BP 0478 (md4block.go:44) IMULL $4,BP 0479 (md4block.go:44) SUBL BP,BX 0480 (md4block.go:44) MOVLQSX BX,BX 0481 (md4block.go:44) LEAQ shift1+0(SB),BP 0482 (md4block.go:44) CMPL BX,8(BP) 0483 (md4block.go:44) JCS ,485 0484 (md4block.go:44) CALL ,runtime.throwindex+0(SB) 0485 (md4block.go:44) MOVQ (BP),BP 0486 (md4block.go:44) MOVL (BP)(BX*4),DI New code: 6g -S md4.go md4block.go | grep "md4block.go:44" 0471 (md4block.go:44) MOVL AX,BX 0472 (md4block.go:44) ANDL $3,BX 0473 (md4block.go:44) MOVLQZX BX,BX 0474 (md4block.go:44) LEAQ shift1+0(SB),BP 0475 (md4block.go:44) CMPL BX,8(BP) 0476 (md4block.go:44) JCS ,478 0477 (md4block.go:44) CALL ,runtime.throwindex+0(SB) 0478 (md4block.go:44) MOVQ (BP),BP 0479 (md4block.go:44) MOVL (BP)(BX*4),DI R=agl, agl1 CC=golang-dev http://codereview.appspot.com/181086
2009-12-28A couple of tighter loops.Robert Griesemer1-12/+8
(I was looking at this code accidentally because of some gofmt issues and thought that one could write this more effectively. You may have deliberately chosen not to use ranges here to make the index range clearer. Just let me know.) R=agl, agl1 CC=golang-dev http://codereview.appspot.com/181084
2009-12-28Clarify section on tokens.Robert Griesemer1-3/+4
Fixes issue 457. R=r CC=golang-dev http://codereview.appspot.com/181083
2009-12-29fix dumb bug: must write out default values inside arrays and slicesRob Pike2-19/+45
Fixes issue 459. R=rsc, imkrasin, sonia CC=golang-dev http://codereview.appspot.com/181073
2009-12-28simplify some code that is using vectorsRobert Griesemer1-37/+37
R=agl, agl1 CC=golang-dev http://codereview.appspot.com/181080
2009-12-28crypto/tls: make Listener a pointer.Adam Langley1-4/+5
Listener contains private members and 6g now enforces that private members cannot be assigned outside of their package. R=rsc CC=golang-dev http://codereview.appspot.com/183073
2009-12-27gc: various C nits, found by plan 9 compiler.Russ Cox5-6/+4
reported by erik quanstrom. R=ken2 http://codereview.appspot.com/181071
2009-12-27add exceptions to the road map. i think this just was an oversight.Rob Pike1-0/+5
also a way to run code when object is deleted. both of these are possibilities, not certainties. R=rsc, iant CC=golang-dev http://codereview.appspot.com/181057
2009-12-25Update documentation around time.Sleep to specify its precision, and suggestDevon H. O'Dell1-2/+3
a possible interface for more granular sleep times. Fixes issue #260. R=rsc, r CC=golang-dev http://codereview.appspot.com/181058 Committer: Rob Pike <r@golang.org>
2009-12-25fix naked < and > as reported by Peter Williams <>Rob Pike1-40/+40
(i thought these were legal in <pre> blocks) R=rsc CC=golang-dev, pwil3058 http://codereview.appspot.com/181055