- 14 Nov, 2011 17 commits
-
-
Russ Cox authored
Don't know if it runs, but at least it builds. R=bradfitz TBR=bradfitz CC=golang-dev https://golang.org/cl/5373093
-
Joel Sing authored
Add openbsd to the $GOOS list. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/4964053
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5369103
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5376089
-
Luuk van Dijk authored
fixes #2442 R=rsc CC=golang-dev https://golang.org/cl/5370066
-
Russ Cox authored
Regenerate system call file. TBR=bradfitz CC=golang-dev https://golang.org/cl/5371087
-
Russ Cox authored
TBR=brainman CC=golang-dev https://golang.org/cl/5371086
-
Mikio Hara authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5369102
-
Russ Cox authored
R=ken, ken CC=golang-dev https://golang.org/cl/5373079
-
Russ Cox authored
R=golang-dev, gri, r, r CC=golang-dev https://golang.org/cl/5369090
-
Russ Cox authored
R=gri, r, bradfitz CC=golang-dev https://golang.org/cl/5371074
-
Russ Cox authored
- syscall (not os) now defines the Errno type. - the low-level assembly functions Syscall, Syscall6, and so on return Errno, not uintptr - syscall wrappers all return error, not uintptr. R=golang-dev, mikioh.mikioh, r, alex.brainman CC=golang-dev https://golang.org/cl/5372080
-
Russ Cox authored
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5369094
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5372081
-
Dave Cheney authored
This CL adds experimental support for making proxied net.Conn connections via the remote server. nb. Functional tests exist for this feature but CL 5320053 or similar needs to be committed to support them. R=rsc, agl, n13m3y3r CC=cw, golang-dev, huin https://golang.org/cl/5371081
-
Dave Cheney authored
Requires CL 5373055 R=rsc, agl, n13m3y3r CC=golang-dev https://golang.org/cl/5320053
-
Dave Cheney authored
Closes TODO from 5373055 R=agl CC=golang-dev https://golang.org/cl/5375081
-
- 13 Nov, 2011 4 commits
-
-
Dave Cheney authored
client.go/client_auth.go: * add support for publickey key auth using the interface outlined by rsc in the previous auth CL client_auth_test.go: * password and publickey tests against server.go common.go/server.go: * move some helper methods from server.go into common.go * generalise serializeRSASignature R=rsc, agl, huin CC=cw, golang-dev, n13m3y3r https://golang.org/cl/5373055
-
Dave Cheney authored
Some remote servers send a 0 window size in the channel open confirm msg, others send a non zero window size. Make sure this initial advertisement is not lost. R=agl, rsc, cw CC=golang-dev https://golang.org/cl/5372083
-
Andrew Balholm authored
Pass tests2.dat, test 8: <!DOCTYPE html><dt><div><dd> | <!DOCTYPE html> | <html> | <head> | <body> | <dt> | <div> | <dd> Also pass tests through test 9: <script></x R=nigeltao CC=golang-dev https://golang.org/cl/5373083
-
Andrew Balholm authored
Currently, the state transition functions in the HTML parser return the next insertion mode and whether the token is consumed. This works well except for when one insertion mode needs to use the rules for another insertion mode. Then the useTheRulesFor function needs to patch things up. This requires comparing functions for equality, which is going to stop working. Adding a field to the parser structure to store the current insertion mode eliminates the need for useTheRulesFor; one insertion mode function can now just call the other directly. The insertion mode will be changed only if it needs to be. This CL is an alternative to CL 5372078. R=nigeltao, rsc CC=golang-dev https://golang.org/cl/5372079
-
- 12 Nov, 2011 5 commits
-
-
Joel Sing authored
The code that used these has been moved to lock_sema.c. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5376062
-
Luuk van Dijk authored
Not sure if this is what you'd really want. Maybe with a higher limit than 10 or perhaps keep checking nerrors > 10 per yyerror, but check the cumulative after each function? R=rsc CC=golang-dev https://golang.org/cl/5376064
-
Robert Griesemer authored
Fixes #2441. R=r CC=golang-dev https://golang.org/cl/5376078
-
Andrew Balholm authored
Pass tests1.dat, test 111: </strong></b></em></i></u></strike></s></blink></tt></pre></big></small></font></select></h1></h2></h3></h4></h5></h6></body></br></a></img></title></span></style></script></table></th></td></tr></frame></area></link></param></hr></input></col></base></meta></basefont></bgsound></embed></spacer></p></dd></dt></caption></colgroup></tbody></tfoot></thead></address></blockquote></center></dir></div></dl></fieldset></listing></menu></ol></ul></li></nobr></wbr></form></button></marquee></object></html></frameset></head></iframe></image></isindex></noembed></noframes></noscript></optgroup></option></plaintext></textarea> | <html> | <head> | <body> | <br> | <p> Also pass all the remaining tests in tests1.dat. R=nigeltao CC=golang-dev https://golang.org/cl/5372066
-
Robert Griesemer authored
Also works now together with -html, as in: godoc -html -q Sin for an html result. Fixes #2435. R=iant CC=golang-dev https://golang.org/cl/5375074
-
- 11 Nov, 2011 14 commits
-
-
Ian Lance Taylor authored
R=rsc, r CC=golang-dev https://golang.org/cl/5369089
-
Rémy Oudompheng authored
Without this check, gofmt panics when trying to apply the identity transformation on "item.field" expressions. Fixes #2410. R=rsc, gri CC=golang-dev, remy https://golang.org/cl/5376061
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5376076
-
Bobby Powers authored
Fedora 16 mounts selinux at /sys/fs/selinux, instead of the traditional /selinux. Check both locations for the selinux filesystem in make.bash Fixes #2448. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5373077
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5373074
-
Scott Lawrence authored
Without this, a missing gmake will result in bogus error "Did not find Go environment variables". R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5369066
-
Anthony Martin authored
I had to replace the single use of io/ioutil in the time package with a bytes.Buffer since there would've been a dependency cycle. There are no other uses of os.Time. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5372054
-
Wei Guangjing authored
Fixes #2409. R=mattn.jp, rsc, alex.brainman CC=golang-dev https://golang.org/cl/5334046
-
Adam Langley authored
It was never really a shell, but the name carried over from SSH's ServerShell. Two small functional changes: Add SetSize, which allows the size of the terminal to be changed in response, say, to an SSH message. Don't write the prompt if there's already something on the current line. R=rsc CC=golang-dev https://golang.org/cl/5376066
-
Joel Sing authored
R=golang-dev, bradfitz, rsc CC=golang-dev https://golang.org/cl/5369076
-
Adam Langley authored
(This is part of removing the duplicate code between exp/terminal and exp/ssh, but hg is having a very hard time keeping up so I'm doing it in small steps.) R=bradfitz, rsc CC=golang-dev https://golang.org/cl/5373061
-
Mikio Hara authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5375057
-
Andrew Balholm authored
Pass tests1.dat, test 109: <table><col><tbody><col><tr><col><td><col></table><col> | <html> | <head> | <body> | <table> | <colgroup> | <col> | <tbody> | <colgroup> | <col> | <tbody> | <tr> | <colgroup> | <col> | <tbody> | <tr> | <td> | <colgroup> | <col> Also pass test 110: <table><colgroup><tbody><colgroup><tr><colgroup><td><colgroup></table><colgroup> R=nigeltao CC=golang-dev https://golang.org/cl/5369069
-
Andrew Balholm authored
Pass tests1.dat, test 108: <table><colgroup><col><colgroup><col><col><col><colgroup><col><col><thead><tr><td></table> | <html> | <head> | <body> | <table> | <colgroup> | <col> | <colgroup> | <col> | <col> | <col> | <colgroup> | <col> | <col> | <thead> | <tr> | <td> R=nigeltao CC=golang-dev https://golang.org/cl/5369061
-