- 27 Dec, 2011 2 commits
-
-
Dave Cheney authored
transport.go: * remove unused nil check. doc.go: * improve documentation about supported auth methods and update Run example. Thanks Jacek Masiulaniec for both reports. R=jacek.masiulaniec, agl CC=golang-dev https://golang.org/cl/5501075
-
Rob Pike authored
This corner case arose doing an RPC with a empty-slice payload. Ouch. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5505073
-
- 26 Dec, 2011 2 commits
-
-
Alex Brainman authored
Fixes #2614. R=golang-dev, jdpoirier CC=golang-dev https://golang.org/cl/5505070
-
Vadim Vygonets authored
Alert logs a message using the LOG_ALERT priority. Fixes #2325. R=mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/5504058
-
- 25 Dec, 2011 3 commits
-
-
David Symonds authored
This yields much better error messages when a bad flag value is given. R=golang-dev, r CC=golang-dev https://golang.org/cl/5498078
-
David Symonds authored
R=golang-dev, gustavo, r CC=golang-dev https://golang.org/cl/5498077
-
Nigel Tao authored
Pass tests10.dat, test 22: <!DOCTYPE html><body xlink:href=foo><svg xlink:href=foo></svg> | <!DOCTYPE html> | <html> | <head> | <body> | xlink:href="foo" | <svg svg> | xlink href="foo" Also pass tests through test 29: <div><svg><path></svg><path> R=andybalholm CC=golang-dev https://golang.org/cl/5489117
-
- 24 Dec, 2011 1 commit
-
-
Andrew Balholm authored
Pass tests10.dat, test 16: <!DOCTYPE html><body><table><tr><td><select><svg><g>foo</g><g>bar</g><p>baz</table><p>quux | <!DOCTYPE html> | <html> | <head> | <body> | <table> | <tbody> | <tr> | <td> | <select> | "foobarbaz" | <p> | "quux" Also pass tests through test 21: <!DOCTYPE html><frameset></frameset><svg><g></g><g></g><p><span> R=nigeltao CC=golang-dev https://golang.org/cl/5505069
-
- 23 Dec, 2011 15 commits
-
-
Marcel van Lohuizen authored
1) incorrect length given for out buffer in String. 2) patchTail bug that could cause characters to be lost when crossing into the out-buffer boundary. Added tests to expose these bugs. Also slightly improved performance of Bytes() and String() by sharing the reorderBuffer across operations. Fixes #2567. R=r CC=golang-dev https://golang.org/cl/5502069
-
Robert Hencke authored
R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/5498066
-
David Symonds authored
This works in the expected way: flag.Duration returns a *time.Duration, and uses time.ParseDuration for parsing the input. R=golang-dev, r CC=golang-dev https://golang.org/cl/5489113
-
David Symonds authored
R=rsc, r, r CC=golang-dev https://golang.org/cl/5489111
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5504082
-
Andrew Gerrand authored
R=rsc, gary.burd, adg CC=golang-dev https://golang.org/cl/5498067
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504081
-
Andrew Gerrand authored
R=dsymonds, r, r, rsc, adg, mikioh.mikioh CC=golang-dev https://golang.org/cl/5498074
-
Russ Cox authored
1. Show passing output for "go test" (no args) and with -v flag. 2. Warn about out-of-date packages being rebuilt. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5504080
-
Russ Cox authored
Fixes bug Robert ran into. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5501070
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5489114
-
Alex Brainman authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5501069
-
David Symonds authored
The two heading rows were previously a little hard to pick out, because they were alternately shaded like the commit rows. R=adg CC=golang-dev https://golang.org/cl/5500074
-
Rob Pike authored
To be deleted when godoc catches up. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5504079
-
Andrew Balholm authored
Pass tests6.dat, test 46: <html><frameset></frameset></html> | <html> | <head> | <frameset> | " " R=nigeltao CC=golang-dev https://golang.org/cl/5505065
-
- 22 Dec, 2011 17 commits
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/5489112
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/5498075
-
Robert Griesemer authored
R=golang-dev CC=golang-dev https://golang.org/cl/5504078
-
Robert Griesemer authored
- exports.go contains a stripped-down (but semantically unchanged) version of the code in go/ast/filter.go for export filtering - filter.go contains the documentation filtering code found before at the end of doc.go; this is simply a code move w/o any semantic changes - godoc now relies on go/doc for export filtering when creating documentation. It still has a separate form of export filtering for showing the source code version. This needs to be consolidated (perhaps the source form view should just be removed?). - Stripping of function bodies (stripFunctionBodies function of godoc.go) is now happening in doc.go (line 176). - doc.NewPackageDoc has an extra parameter "exportsOnly. If set to false, the behavior is as before. This function is only called once in our source code; a gofix module is probably not warranted. - Deleted doc.NewFileDoc - was never called. This change is mostly a code move w/ some minimal tweaks. It should not cause any changes to the behavior of godoc. It's a prerequisite for extracting anonymous embedded fields. R=golang-dev, r CC=golang-dev https://golang.org/cl/5502072
-
Rob Pike authored
Discover than %g is now down to 1 malloc from 2 from 4. Have fun with funcs. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504077
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5502064
-
Rémy Oudompheng authored
A test intended for denormals erroneously returned true also for infinities, leading to bad overflows and wrong error estimates. R=rsc CC=golang-dev, remy https://golang.org/cl/5489091
-
Robert Griesemer authored
Fixes #2607. R=rsc CC=golang-dev https://golang.org/cl/5489109
-
Rob Pike authored
There was Base but not Dir, so fill in the gap. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504076
-
Robert Griesemer authored
To avoid confusion between typeDoc and TypeDoc. No semantic change. R=r CC=golang-dev https://golang.org/cl/5502071
-
Rob Pike authored
There was Base but not Dir, so fill in the gap. R=n13m3y3r, r, rsc, gustavo CC=golang-dev https://golang.org/cl/5503067
-
David Symonds authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5498071
-
Robert Griesemer authored
Missing: Handling of embedded interfaces. Also, for reasons outlined in the previous CL (5500055), embedded types have to be exported for its "inherited" methods to be visible. This will be addressed w/ a subsequent CL. R=r, rsc CC=golang-dev https://golang.org/cl/5502059
-
Rob Pike authored
TBR=rsc R=rsc CC=golang-dev https://golang.org/cl/5498070
-
Rob Pike authored
TBR=rsc R=rsc CC=golang-dev https://golang.org/cl/5504075
-
Rob Pike authored
Each test gets a private signal channel. Also fix a bug that prevented parallel tests from running. R=r, r CC=golang-dev https://golang.org/cl/5505061
-
Robert Hencke authored
Log always adds spaces between operands, like Println but unlike Print R=golang-dev CC=golang-dev https://golang.org/cl/5504069
-