Skip to content

Commit

Permalink
doc: change anchor URLs from golang.org/dl/ to /dl/
Browse files Browse the repository at this point in the history
When running locally, it will redirect properly to golang.org/dl/
(see https://github.com/golang/tools/blob/master/cmd/godoc/dl.go).

This is to support domains in prod other than golang.org.

Change-Id: I6d3051fcd7e06a86442324a64d781d8ad95c624f
Reviewed-on: https://go-review.googlesource.com/88679
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
andybons committed Jan 20, 2018
1 parent 984e81f commit 3810f5b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions doc/go1.html
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ <h3 id="errors">The error type and errors package</h3>
</p>

{{code "/doc/progs/go1.go" `/ErrSyntax/`}}

<p>
<em>Updating</em>:
Running <code>go</code> <code>fix</code> will update almost all code affected by the change.
Expand Down Expand Up @@ -1827,7 +1827,7 @@ <h3 id="strconv">The strconv package</h3>
<tr><td>Uitob(x, b)</td> <td>FormatUint(uint64(x), b)</td></tr>
<tr><td>Uitob64(x, b)</td> <td>FormatUint(x, b)</td></tr>
</table>

<p>
<em>Updating</em>:
Running <code>go</code> <code>fix</code> will update almost all code affected by the change.
Expand All @@ -1841,7 +1841,7 @@ <h3 id="strconv">The strconv package</h3>
<h3 id="templates">The template packages</h3>

<p>
The <code>template</code> and <code>exp/template/html</code> packages have moved to
The <code>template</code> and <code>exp/template/html</code> packages have moved to
<a href="/pkg/text/template/"><code>text/template</code></a> and
<a href="/pkg/html/template/"><code>html/template</code></a>.
More significant, the interface to these packages has been simplified.
Expand Down Expand Up @@ -2035,4 +2035,4 @@ <h2 id="releases">Packaged releases</h2>
Installation details are described on the
<a href="/doc/install">Getting Started</a> page, while
the distributions themselves are listed on the
<a href="https://golang.org/dl/">downloads page</a>.
<a href="/dl/">downloads page</a>.
14 changes: 7 additions & 7 deletions doc/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<h2 id="download">Download the Go distribution</h2>

<p>
<a href="https://golang.org/dl/" id="start" class="download">
<a href="/dl/" id="start" class="download">
<span class="big">Download Go</span>
<span class="desc">Click here to visit the downloads page</span>
</a>
</p>

<p>
<a href="https://golang.org/dl/" target="_blank">Official binary
<a href="/dl/" target="_blank">Official binary
distributions</a> are available for the FreeBSD (release 10-STABLE and above),
Linux, Mac OS X (10.8 and above), and Windows operating systems and
the 32-bit (<code>386</code>) and 64-bit (<code>amd64</code>) x86 processor
Expand All @@ -33,7 +33,7 @@ <h2 id="download">Download the Go distribution</h2>
<h2 id="requirements">System requirements</h2>

<p>
Go <a href="https://golang.org/dl/">binary distributions</a> are available for these supported operating systems and architectures.
Go <a href="/dl/">binary distributions</a> are available for these supported operating systems and architectures.
Please ensure your system meets these requirements before proceeding.
If your OS or architecture is not on the list, you may be able to
<a href="/doc/install/source">install from source</a> or
Expand Down Expand Up @@ -77,7 +77,7 @@ <h2 id="install">Install the Go tools</h2>
<h3 id="tarball">Linux, Mac OS X, and FreeBSD tarballs</h3>

<p>
<a href="https://golang.org/dl/">Download the archive</a>
<a href="/dl/">Download the archive</a>
and extract it into <code>/usr/local</code>, creating a Go tree in
<code>/usr/local/go</code>. For example:
</p>
Expand Down Expand Up @@ -138,7 +138,7 @@ <h4 id="tarball_non_standard">Installing to a custom location</h4>
<h3 id="osx">Mac OS X package installer</h3>

<p>
<a href="https://golang.org/dl/">Download the package file</a>,
<a href="/dl/">Download the package file</a>,
open it, and follow the prompts to install the Go tools.
The package installs the Go distribution to <code>/usr/local/go</code>.
</p>
Expand Down Expand Up @@ -167,7 +167,7 @@ <h3 id="windows">Windows</h3>
<h4 id="windows_msi">MSI installer</h4>

<p>
Open the <a href="https://golang.org/dl/">MSI file</a>
Open the <a href="/dl/">MSI file</a>
and follow the prompts to install the Go tools.
By default, the installer puts the Go distribution in <code>c:\Go</code>.
</p>
Expand All @@ -185,7 +185,7 @@ <h4 id="windows_msi">MSI installer</h4>
<h4 id="windows_zip">Zip archive</h4>

<p>
<a href="https://golang.org/dl/">Download the zip file</a> and extract it into the directory of your choice (we suggest <code>c:\Go</code>).
<a href="/dl/">Download the zip file</a> and extract it into the directory of your choice (we suggest <code>c:\Go</code>).
</p>

<p>
Expand Down
2 changes: 1 addition & 1 deletion doc/root.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

<div id="gopher"></div>

<a href="https://golang.org/dl/" id="start">
<a href="/dl/" id="start">
<span class="big">Download Go</span>
<span class="desc">
Binary distributions available for<br>
Expand Down

0 comments on commit 3810f5b

Please sign in to comment.