aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/_includes
diff options
context:
space:
mode:
Diffstat (limited to 'site/_includes')
-rw-r--r--site/_includes/head.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/site/_includes/head.html b/site/_includes/head.html
index 8c844d86bd..ceef1ccfef 100644
--- a/site/_includes/head.html
+++ b/site/_includes/head.html
@@ -4,30 +4,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ page.title }} - Bazel</title>
- <script>
- var current_url = window.location.href;
-
- // Do a shortcut so that be.bazel.build redirect to the build encyclopedia
- var be_url = new RegExp("^https?://be(\.bazel.build)?/?");
- if (be_url.test(current_url)) {
- window.location.replace(current_url.replace(be_url, "https://docs.bazel.build/be/overview.html"));
- }
- var be_url = new RegExp("^https?://be(\.bazel.build)?/([a-zA-Z0-9_-]+)([/#](.*))?");
- if (be_url.test(current_url)) {
- window.location.replace(current_url.replace(be_url, "https://docs.bazel.build/be/$2.html#$4"));
- }
- // And a short to code reviews
- var cr_url = new RegExp("^https?://cr(\.bazel.build)?/([0-9]+)")
- if (cr_url.test(current_url)) {
- window.location.replace(current_url.replace(cr_url, "https://bazel-review.googlesource.com/c/$2"));
- }
- // Code review dashboard
- var cr_url = new RegExp("^https?://cr(\.bazel.build)?/?")
- if (cr_url.test(current_url)) {
- window.location.replace(current_url.replace(cr_url, "https://bazel-review.googlesource.com/"));
- }
- </script>
-
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site_root }}">
<!-- Webfont -->