Drop godoc handling.

This commit is contained in:
Adin Scannell
2019-04-01 16:56:49 -07:00
parent 7c3a00a667
commit b19b7f3e46
2 changed files with 7 additions and 15 deletions
+4 -9
View File
@@ -15,16 +15,11 @@
runtime: go111
handlers:
- url: /(change|cl||issue)(/.*)?
secure: always
script: auto
- url: /.*
secure: always
script: auto
# TODO: remove this when published
# TODO: remove this when published.
login: admin
# - url: /(change|cl|godoc|issue)(/.*)?
# secure: always
# script: auto
# - url: /(.*)
# secure: always
# redirect_http_response_code: 301
# static_files: static/\1
# upload: static/.*
+3 -6
View File
@@ -28,17 +28,14 @@ import (
var redirects = map[string]string{
"/change": "https://gvisor.googlesource.com/gvisor/",
"/cl": "https://gvisor-review.googlesource.com/",
"/godoc": "https://godoc.org/github.com/google/gvisor",
"/issue": "https://github.com/google/gvisor/issues",
"/issue/new": "https://github.com/google/gvisor/issues/new",
}
var prefixHelpers = map[string]string{
"cl": "https://gvisor-review.googlesource.com/c/gvisor/+/%s",
"change": "https://gvisor.googlesource.com/gvisor/+/%s",
"godoc": "https://godoc.org/github.com/google/gvisor/%s",
"issue": "https://github.com/google/gvisor/issues/%s",
"syscall": "/docs/user_guide/compatibility/syscall_reference/#%s",
"cl": "https://gvisor-review.googlesource.com/c/gvisor/+/%s",
"change": "https://gvisor.googlesource.com/gvisor/+/%s",
"issue": "https://github.com/google/gvisor/issues/%s",
}
var validId = regexp.MustCompile(`^[A-Za-z0-9-]*/?$`)