Skip to content

Commit 6edac51

Browse files
committed
cmd/golangorg: remove special cases for /project/, /doc/devel/release
The special cases were simulating the normal template execution and passing extra data (the release history). We have a standard way to pass extra data (template functions), so use one and delete the special case code. Also change date format to standard yyyy-mm-dd. The yyyy/mm/dd we have been using is kind of made up and certainly unusual (see https://xkcd.com/1179/). Change-Id: I59f4f67259381dd43cd53c0f6120f87d8f8c77d9 Reviewed-on: https://go-review.googlesource.com/c/website/+/296429 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent c1bd207 commit 6edac51

File tree

12 files changed

+676
-1038
lines changed

12 files changed

+676
-1038
lines changed

_content/doc/contrib.html

+2-15
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,9 @@ <h3 id="release"><a href="/doc/devel/release.html">Release History</a></h3>
3535
<p>A <a href="/doc/devel/release.html">summary</a> of the changes between Go releases. Notes for the major releases:</p>
3636

3737
<ul>
38-
{{range .Major -}}
39-
<li><a href="/doc/go{{.V}}">Go {{.V}}</a> <small>({{.Date}})</small></li>
38+
{{range releases -}}
39+
<li><a href="/doc/go{{.Version}}">Go {{.Version}}</a> <small>({{.Date.Format "January 2006"}})</small></li>
4040
{{end -}}
41-
42-
{{- /* Entries for Go 1.9 and newer are generated using data in the internal/history package. */ -}}
43-
{{- /* Entries for Go 1.8 and older are hand-written as raw HTML below. */ -}}
44-
45-
<li><a href="/doc/go1.8">Go 1.8</a> <small>(February 2017)</small></li>
46-
<li><a href="/doc/go1.7">Go 1.7</a> <small>(August 2016)</small></li>
47-
<li><a href="/doc/go1.6">Go 1.6</a> <small>(February 2016)</small></li>
48-
<li><a href="/doc/go1.5">Go 1.5</a> <small>(August 2015)</small></li>
49-
<li><a href="/doc/go1.4">Go 1.4</a> <small>(December 2014)</small></li>
50-
<li><a href="/doc/go1.3">Go 1.3</a> <small>(June 2014)</small></li>
51-
<li><a href="/doc/go1.2">Go 1.2</a> <small>(December 2013)</small></li>
52-
<li><a href="/doc/go1.1">Go 1.1</a> <small>(May 2013)</small></li>
53-
<li><a href="/doc/go1">Go 1</a> <small>(March 2012)</small></li>
5441
</ul>
5542

5643
<h3 id="go1compat"><a href="/doc/go1compat">Go 1 and the Future of Go Programs</a></h3>

_content/doc/devel/release.html

+67-51
Large diffs are not rendered by default.

cmd/golangorg/godoc.go

-32
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,10 @@
88
package main
99

1010
import (
11-
"bytes"
12-
"encoding/json"
1311
"net/http"
1412
"strings"
1513

1614
"golang.org/x/website/internal/env"
17-
"golang.org/x/website/internal/godoc"
18-
)
19-
20-
// This file holds common code from the x/tools/godoc serving engine.
21-
// It's being used during the transition. See golang.org/issue/29206.
22-
23-
// extractMetadata extracts the godoc.Metadata from a byte slice.
24-
// It returns the godoc.Metadata value and the remaining data.
25-
// If no metadata is present the original byte slice is returned.
26-
//
27-
func extractMetadata(b []byte) (meta godoc.Metadata, tail []byte, _ error) {
28-
tail = b
29-
if !bytes.HasPrefix(b, jsonStart) {
30-
return godoc.Metadata{}, tail, nil
31-
}
32-
end := bytes.Index(b, jsonEnd)
33-
if end < 0 {
34-
return godoc.Metadata{}, tail, nil
35-
}
36-
b = b[len(jsonStart)-1 : end+1] // drop leading <!-- and include trailing }
37-
if err := json.Unmarshal(b, &meta); err != nil {
38-
return godoc.Metadata{}, nil, err
39-
}
40-
tail = tail[end+len(jsonEnd):]
41-
return meta, tail, nil
42-
}
43-
44-
var (
45-
jsonStart = []byte("<!--{")
46-
jsonEnd = []byte("}-->")
4715
)
4816

4917
// googleCN reports whether request r is considered

cmd/golangorg/godoc_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,13 @@ func testWeb(t *testing.T) {
259259
},
260260
releaseTag: "go1.11",
261261
},
262+
{
263+
path: "/project/",
264+
contains: []string{
265+
`<li><a href="/doc/go1.14">Go 1.14</a> <small>(February 2020)</small></li>`,
266+
`<li><a href="/doc/go1.1">Go 1.1</a> <small>(May 2013)</small></li>`,
267+
},
268+
},
262269
}
263270
for _, test := range tests {
264271
url := fmt.Sprintf("http://%s%s", addr, test.path)

cmd/golangorg/handlers.go

-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919

2020
"golang.org/x/website/internal/env"
2121
"golang.org/x/website/internal/godoc"
22-
"golang.org/x/website/internal/history"
2322
"golang.org/x/website/internal/redirect"
2423
)
2524

@@ -87,11 +86,9 @@ func registerHandlers(pres *godoc.Presentation) *http.ServeMux {
8786
mux.Handle("/", pres)
8887
mux.Handle("/blog/", http.HandlerFunc(blogHandler))
8988
mux.Handle("/doc/codewalk/", http.HandlerFunc(codewalk))
90-
mux.Handle("/doc/devel/release.html", releaseHandler{ReleaseHistory: sortReleases(history.Releases)})
9189
mux.Handle("/doc/play/", pres.FileServer())
9290
mux.Handle("/fmt", http.HandlerFunc(fmtHandler))
9391
mux.Handle("/pkg/C/", redirect.Handler("/cmd/cgo/"))
94-
mux.Handle("/project/", projectHandler{ReleaseHistory: sortMajorReleases(history.Releases)})
9592
mux.Handle("/robots.txt", pres.FileServer())
9693
mux.Handle("/x/", http.HandlerFunc(xHandler))
9794
redirect.Register(mux)

cmd/golangorg/project.go

-122
This file was deleted.

0 commit comments

Comments
 (0)