- 25 Dec, 2011 1 commit
-
-
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 23 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
-
Luuk van Dijk authored
Fixes #2580 up to a point. R=rsc CC=golang-dev https://golang.org/cl/5498068
-
Adam Langley authored
1) Add EscapeCodes to the terminal so that applications don't wire them in. 2) Add a callback for auto-complete 3) Fix an issue with input lines longer than the width of the terminal. 4) Have Write() not stomp the current line. It now erases the current input, writes the output and reprints the prompt and partial input. 5) Support prompting without local echo in Terminal. 6) Add GetSize to report the size of terminal. R=bradfitz CC=golang-dev https://golang.org/cl/5479043
-
Joel Sing authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5504070
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5503065
-
Russ Cox authored
* group builders in to columns by OS * drop builder suffix (moved to hover title) * cut all domain names from email (full name+email in hover title) * make ok smaller This should easily give us room for netbsd and plan9, even on small laptop screens. Running at http://build-rsc.golang.org/. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5501064
-
Russ Cox authored
Or else eventually someone will check it in. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5504071
-