- 26 Oct, 2011 29 commits
-
-
Adam Langley authored
Although there's still no concrete security reason not to use 3, I think Bleichenbacher has convinced me that it's a useful defense and it's what everyone else does. R=bradfitz, rsc CC=golang-dev https://golang.org/cl/5307060
-
Alex Brainman authored
R=rsc, adg CC=golang-dev https://golang.org/cl/5302058
-
Alex Brainman authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5294060
-
Mikio Hara authored
R=lvd CC=golang-dev https://golang.org/cl/5314060
-
Andrew Gerrand authored
««« original CL description http: remove Connection header in ReverseProxy Fixes #2342 R=golang-dev, adg CC=golang-dev https://golang.org/cl/5302057 »»» R=bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5296055
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/5304063
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/5297062
-
Russ Cox authored
Nothing terribly interesting here. (!) Since the public APIs are all in terms of UTF-8, the changes are all internal only. R=mpvl, gri, r CC=golang-dev https://golang.org/cl/5309042
-
Russ Cox authored
Nothing terribly interesting here. R=golang-dev, r, borman CC=golang-dev https://golang.org/cl/5315043
-
Russ Cox authored
ReadRune, WriteRune change signature. R=golang-dev, gri, r CC=golang-dev https://golang.org/cl/5314043
-
Russ Cox authored
Everything changes. R=r CC=golang-dev https://golang.org/cl/5310045
-
Russ Cox authored
Nothing terribly interesting here. R=r, gri CC=golang-dev https://golang.org/cl/5308042
-
Russ Cox authored
Nothing terribly interesting here. R=mikesamuel, nigeltao, r CC=golang-dev https://golang.org/cl/5307044
-
Russ Cox authored
Various rune-based APIs change. R=golang-dev, r CC=golang-dev https://golang.org/cl/5306044
-
Russ Cox authored
Nothing terribly interesting here. R=gri CC=golang-dev https://golang.org/cl/5305046
-
Russ Cox authored
Lots of internal edits. Formatter and Scanner interfaces change (clients to be checked by govet). R=r CC=golang-dev https://golang.org/cl/5305045
-
Russ Cox authored
R=golang-dev, hectorchu CC=golang-dev https://golang.org/cl/5304044
-
Russ Cox authored
Public API of syntax tree changes. R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/5302046
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/5301053
-
Russ Cox authored
API question: is a scanner token an int or a rune? Since the rune is the common case and the token values are the special (negative) case, I chose rune. But it could easily go the other way. R=gri CC=golang-dev https://golang.org/cl/5301049
-
Russ Cox authored
Nothing terribly interesting here. R=golang-dev, bradfitz, gri, r CC=golang-dev https://golang.org/cl/5300043
-
Russ Cox authored
R=ken, r CC=golang-dev https://golang.org/cl/5293046
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/5295045
-
Andrew Gerrand authored
need a clean base from weekly.2011-10-25 for rune change ««« original CL description http: remove Connection header in ReverseProxy Fixes #2342 R=golang-dev, adg CC=golang-dev https://golang.org/cl/5302057 »»» R=rsc CC=golang-dev https://golang.org/cl/5294068
-
Brad Fitzpatrick authored
Fixes #2342 R=golang-dev, adg CC=golang-dev https://golang.org/cl/5302057
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/5306064
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/5321053
-
Andrew Balholm authored
Make a <li> tag close the previous <li> element. Make a </ul> tag close <li> elements. Pass tests1.dat, test 33: <!DOCTYPE html><li>hello<li>world<ul>how<li>do</ul>you</body><!--do--> | <!DOCTYPE html> | <html> | <head> | <body> | <li> | "hello" | <li> | "world" | <ul> | "how" | <li> | "do" | "you" | <!-- do --> R=nigeltao CC=golang-dev https://golang.org/cl/5321051
-
Andrew Balholm authored
When foster parenting, merge adjacent text nodes. Properly close table row at </tr> tag. Pass tests1.dat, test 32: <!-----><font><div>hello<table>excite!<b>me!<th><i>please!</tr><!--X--> | <!-- - --> | <html> | <head> | <body> | <font> | <div> | "helloexcite!" | <b> | "me!" | <table> | <tbody> | <tr> | <th> | <i> | "please!" | <!-- X --> R=nigeltao CC=golang-dev https://golang.org/cl/5323048
-
- 25 Oct, 2011 5 commits
-
-
Ian Lance Taylor authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5310055
-
Hector Chu authored
R=rsc, dvyukov CC=golang-dev https://golang.org/cl/5307052
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5303067
-
David Anderson authored
R=bradfitz, rsc CC=golang-dev https://golang.org/cl/5308044
-
Nigel Tao authored
The original intention was to simplify the parser, in making it skip all comment tokens. However, checking that the Go html package is 100% compatible with the WebKit HTML test suite requires parsing the comments. There is no longer any real benefit for the option. R=gri, andybalholm CC=golang-dev https://golang.org/cl/5321043
-
- 24 Oct, 2011 3 commits
-
-
Dave Cheney authored
This CL replaces the Cmd type with a Session type representing interactive channels. This lays the foundation for supporting other kinds of channels like direct-tcpip or x11. client.go: * replace chanlist map with slice. * generalize stdout and stderr into a single type. * unexport ClientChan to clientChan. doc.go: * update ServerConfig/ServerConn documentation. * update Client example for Session. message.go: * make channelExtendedData more like channelData. session.go: * added Session which replaces Cmd. R=agl, rsc, n13m3y3r, gustavo CC=golang-dev https://golang.org/cl/5302054
-
Andrew Balholm authored
The WebKit test data shows attributes as though they were child nodes: <a X>0<b>1<a Y>2 dumps as: | <html> | <head> | <body> | <a> | x="" | "0" | <b> | "1" | <b> | <a> | y="" | "2" So we need to do the same when dumping a tree to compare with it. R=nigeltao CC=golang-dev https://golang.org/cl/5322044
-
Brad Fitzpatrick authored
Fixes #2378 R=rsc CC=golang-dev https://golang.org/cl/5312052
-
- 23 Oct, 2011 2 commits
-
-
Alex Brainman authored
Fixes #2307. R=golang-dev, mikioh.mikioh CC=golang-dev https://golang.org/cl/5306049
-
Andrew Balholm authored
Implement the foster-parenting algorithm for content that is inside a table but not in a cell. Also fix a bug in reconstructing the active formatting elements. Pass test 30 in tests1.dat: <a><table><td><a><table></table><a></tr><a></table><b>X</b>C<a>Y R=nigeltao CC=golang-dev https://golang.org/cl/5309052
-
- 22 Oct, 2011 1 commit
-
-
Nigel Tao authored
The additional test case in parse_test.go is: <select><b><option><select><option></b></select>X R=andybalholm CC=golang-dev https://golang.org/cl/5293051
-