<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch weekly.2011-11-01</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=weekly.2011-11-01</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=weekly.2011-11-01'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2011-11-02T01:37:01Z</updated>
<entry>
<title>weekly.2011-11-01</title>
<updated>2011-11-02T01:37:01Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2011-11-02T01:37:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=08757f722c84260399d3eb1236c0c1ed305e017a'/>
<id>urn:sha1:08757f722c84260399d3eb1236c0c1ed305e017a</id>
<content type='text'>
R=rsc, r
CC=golang-dev
https://golang.org/cl/5336044
</content>
</entry>
<entry>
<title>html: stop at scope marker node when generating implied &lt;/a&gt; tags</title>
<updated>2011-11-02T00:47:05Z</updated>
<author>
<name>Andrew Balholm</name>
<email>andybalholm@gmail.com</email>
</author>
<published>2011-11-02T00:47:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=22ee5ae25a2997606c28abe721c9052ee0cc9da4'/>
<id>urn:sha1:22ee5ae25a2997606c28abe721c9052ee0cc9da4</id>
<content type='text'>
A &lt;a&gt; tag generates implied end tags for any open &lt;a&gt; elements.
But it shouldn't do that when it is inside a table cell the the open &lt;a&gt;
is outside the table.
So stop the search for an open &lt;a&gt; when we reach a scope marker node.

Pass tests1.dat, test 78:
&lt;a href="blah"&gt;aba&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="foo"&gt;br&lt;/td&gt;&lt;/tr&gt;x&lt;/table&gt;aoe

| &lt;html&gt;
|   &lt;head&gt;
|   &lt;body&gt;
|     &lt;a&gt;
|       href="blah"
|       "abax"
|       &lt;table&gt;
|         &lt;tbody&gt;
|           &lt;tr&gt;
|             &lt;td&gt;
|               &lt;a&gt;
|                 href="foo"
|                 "br"
|       "aoe"

Also pass test 79:
&lt;table&gt;&lt;a href="blah"&gt;aba&lt;tr&gt;&lt;td&gt;&lt;a href="foo"&gt;br&lt;/td&gt;&lt;/tr&gt;x&lt;/table&gt;aoe

R=nigeltao
CC=golang-dev
https://golang.org/cl/5320063
</content>
</entry>
<entry>
<title>html: refactor the blacklist for the "render and re-parse" test.</title>
<updated>2011-11-01T22:42:25Z</updated>
<author>
<name>Nigel Tao</name>
<email>nigeltao@golang.org</email>
</author>
<published>2011-11-01T22:42:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=90b76c0f3e3356e17c03baae3e20a4a11c2a6f10'/>
<id>urn:sha1:90b76c0f3e3356e17c03baae3e20a4a11c2a6f10</id>
<content type='text'>
R=andybalholm
CC=golang-dev, mikesamuel
https://golang.org/cl/5331056
</content>
</entry>
<entry>
<title>textproto: prevent long lines in HTTP headers from causing HTTP 400 responses.</title>
<updated>2011-11-01T17:31:29Z</updated>
<author>
<name>Mike Solomon</name>
<email>msolo@gmail.com</email>
</author>
<published>2011-11-01T17:31:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=f753e3facda2a9845caf7e8aed0e8a122d6b6e48'/>
<id>urn:sha1:f753e3facda2a9845caf7e8aed0e8a122d6b6e48</id>
<content type='text'>
This fixes the issue without an extra copy in the average case.

R=golang-dev, ality, bradfitz
CC=golang-dev
https://golang.org/cl/5272049
</content>
</entry>
<entry>
<title>doc/Makefile: add 'all' rule to build all docs</title>
<updated>2011-11-01T16:45:04Z</updated>
<author>
<name>Rob Pike</name>
<email>r@golang.org</email>
</author>
<published>2011-11-01T16:45:04Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=cf7281e7289ffe861e2bfcac14d2e1b40416d741'/>
<id>urn:sha1:cf7281e7289ffe861e2bfcac14d2e1b40416d741</id>
<content type='text'>
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5334044
</content>
</entry>
<entry>
<title>gc: test + fix escape analysis bug</title>
<updated>2011-11-01T15:02:43Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2011-11-01T15:02:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b4df33a6eafea21afb7c85dafc7550f5fc339c7c'/>
<id>urn:sha1:b4df33a6eafea21afb7c85dafc7550f5fc339c7c</id>
<content type='text'>
R=lvd
CC=golang-dev
https://golang.org/cl/5333049
</content>
</entry>
<entry>
<title>doc: refer to tour.golang.org instead of go-tour.appspot.com</title>
<updated>2011-11-01T07:09:29Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2011-11-01T07:09:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1fe22d2d24e150ba6b6d54c1b1909a15e209c6ad'/>
<id>urn:sha1:1fe22d2d24e150ba6b6d54c1b1909a15e209c6ad</id>
<content type='text'>
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5331055
</content>
</entry>
<entry>
<title>doc: fix typo in spec example code comment</title>
<updated>2011-11-01T06:13:33Z</updated>
<author>
<name>Charles L. Dorian</name>
<email>cldorian@gmail.com</email>
</author>
<published>2011-11-01T06:13:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=44262d157425c396f913b88c81b27f13dd30cff7'/>
<id>urn:sha1:44262d157425c396f913b88c81b27f13dd30cff7</id>
<content type='text'>
R=r, golang-dev, adg
CC=golang-dev
https://golang.org/cl/5308071
</content>
</entry>
<entry>
<title>go spec: introduce rune type</title>
<updated>2011-11-01T05:09:22Z</updated>
<author>
<name>Robert Griesemer</name>
<email>gri@golang.org</email>
</author>
<published>2011-11-01T05:09:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=b910a2739629f10eea56c44467f99263ef303f46'/>
<id>urn:sha1:b910a2739629f10eea56c44467f99263ef303f46</id>
<content type='text'>
R=r, iant, rsc, r
CC=golang-dev
https://golang.org/cl/5293048
</content>
</entry>
<entry>
<title>rpc: avoid infinite loop on input error</title>
<updated>2011-11-01T04:29:41Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2011-11-01T04:29:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=2e79e8e54920c005af29447a85d7b241460c34cb'/>
<id>urn:sha1:2e79e8e54920c005af29447a85d7b241460c34cb</id>
<content type='text'>
Fixes #1828.
Fixes #2179.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5305084
</content>
</entry>
</feed>
