Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit 71d74c1

Browse files
authored
Update and fix URLS for new domain name and HTTPS. (#29)
Fixes #27
1 parent bedfa0a commit 71d74c1

File tree

16 files changed

+29
-27
lines changed

16 files changed

+29
-27
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ possibly guide you.
1919

2020
### Code reviews and other contributions.
2121
**All submissions, including submissions by project members, require review.**
22-
Please follow the instructions in [the contributors documentation](http://bazel.io/contributing.html).
22+
Please follow the instructions in [the contributors documentation](https://bazel.build/contributing.html).
2323

2424
### The small print
2525
Contributions made by corporations are covered by a different agreement than

serve-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function build_and_serve {
5252
pkill -9 jekyll || true
5353

5454
if [ -z "$TARGET" ]; then
55-
echo "Serving skydoc.bazel.io site at port $PORT"
55+
echo "Serving skydoc.bazel.build site at port $PORT"
5656
jekyll serve --detach --quiet --port "$PORT" --source "$WORKING_DIR"
5757
else
5858
TMP_TARGET=$(mktemp -d)

site/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
skydoc.bazel.io
1+
skydoc.bazel.build

site/_includes/drawer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<li><a href="/contributing.html">Contribute to Skydoc</a></li>
2222
<li><a href="/roadmap.html">Roadmap</a></li>
2323
<li><a href="https://groups.google.com/forum/#!forum/bazel-discuss">User mailing list</a></li>
24-
<li><a href="https://github.com/bazelbuild/tulsi/issues">Issue tracker</a></li>
24+
<li><a href="https://github.com/bazelbuild/skydoc/issues">Issue tracker</a></li>
2525
<li><a href="https://github.com/bazelbuild/skydoc">GitHub</a></li>
2626
</ul>
2727
</li>

site/_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
var current_url = window.location.href;
99
var bad_url = new RegExp("^https?://bazelbuild.github.io/skydoc/");
1010
if (bad_url.test(current_url)) {
11-
window.location.replace(current_url.replace(bad_url, "http://skydoc.bazel.io/"));
11+
window.location.replace(current_url.replace(bad_url, "https://skydoc.bazel.build/"));
1212
}
1313
</script>
1414

site/_sass/base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 The Tulsi Authors. All rights reserved.
1+
// Copyright 2016 The Skydoc Authors. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

site/_sass/docs.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 The Tulsi Authors. All rights reserved.
1+
// Copyright 2016 The Skydoc Authors. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

site/_sass/drawer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 The Tulsi Authors. All rights reserved.
1+
// Copyright 2016 The Skydoc Authors. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

site/_sass/home.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016 The Tulsi Authors. All rights reserved.
1+
// Copyright 2016 The Skydoc Authors. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

site/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ a lot of time in a patch.
2020
To submit a patch to Skydoc:
2121

2222
* Skydoc is part of the Bazel project. Read the [Bazel governance
23-
plan](http://www.bazel.io/governance.html) and Skydoc's [contribution
23+
plan](https://www.bazel.build/governance.html) and Skydoc's [contribution
2424
guidelines](https://github.com/bazelbuild/skydoc/blob/master/CONTRIBUTING.md).
2525
* Open an [Issue](https://github.com/bazelbuild/skydoc/issues) or discuss your
2626
plan or design on the [bazel-dev][bazel-dev] mailing list.

0 commit comments

Comments
 (0)