summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-04-22 13:16:52 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-04-22 13:16:52 -0600
commitd35f70cee3a45fc93c8acecbb8f115a0b04cfcd9 (patch)
tree47ace24ce53365a6bde3aacdbc15d9852adc4725
parente2916f44c42f2f83fc4311f2be656472005b54ec (diff)
contribs: port changes from go x/net/html to std html
-rw-r--r--imworkingon/contribs.yml14
-rw-r--r--imworkingon/upstreams.yml10
2 files changed, 22 insertions, 2 deletions
diff --git a/imworkingon/contribs.yml b/imworkingon/contribs.yml
index 044d9ee..20e96c8 100644
--- a/imworkingon/contribs.yml
+++ b/imworkingon/contribs.yml
@@ -94,7 +94,7 @@
want to hold up the main work.
- urls:
- https://github.com/golang/net/pull/208
- - https://go-review.googlesource.com/c/net/+/580855/2
+ - https://go-review.googlesource.com/c/net/+/580855
tags: [Go, docs]
desc: |
The `html.EscapeString` and `html.UnescapeString` was once the
@@ -105,3 +105,15 @@
This will provide a consistent base for fixing bugs in
`html.UnescapeString` that were found when working on the
documentation parser in gotk4.
+- urls:
+ - https://github.com/golang/go/pull/66970
+ tags: [Go]
+ desc: |
+ The `html.EscapeString` and `html.UnescapeString` was once the
+ same between `"golang.org/x/net/html"` and std `"html"`, but has
+ been slowly drifting apart since 2012. This PR ports over
+ documentation and performance improvements from x/net to std.
+
+ This will provide a consistent base for fixing bugs in
+ `html.UnescapeString` that were found when working on the
+ documentation parser in gotk4.
diff --git a/imworkingon/upstreams.yml b/imworkingon/upstreams.yml
index b914e21..cc96eb6 100644
--- a/imworkingon/upstreams.yml
+++ b/imworkingon/upstreams.yml
@@ -36,10 +36,18 @@
and projects.
- urls:
- https://github.com/golang/net
+ - https://go.googlesource.com/net
- https://go-review.googlesource.com/c/net
- name: x/net
+ name: Go x/net
desc: |
`golang.org/x/net` is a set of supplementary Go networking
libraries. These are used not just by programmers doing advanced
networking things in Go, but are also used internally by the Go
standard library.
+- urls:
+ - https://github.com/golang/go
+ - https://go.googlesource.com/go
+ - https://go-review.googlesource.com/c/go
+ name: Go
+ desc: |
+ The Go programming language.