Commit 82cbcb0d authored by Dave Cheney's avatar Dave Cheney Committed by Andrew Gerrand

website: various html fixes

Fixes #3424.

R=fullung, adg
CC=golang-dev
https://golang.org/cl/6343088
parent eeffa738
...@@ -56,10 +56,10 @@ A must read for any new Go programmer. It augments the tour and ...@@ -56,10 +56,10 @@ A must read for any new Go programmer. It augments the tour and
the language specification, both of which should be read first. the language specification, both of which should be read first.
</p> </p>
<h3 id="appengine"><a href="http://code.google.com/appengine/docs/go/gettingstarted/">Getting Started with Go on App Engine</a></h3> <h3 id="appengine"><a href="https://developers.google.com/appengine/docs/go/gettingstarted/">Getting Started with Go on App Engine</a></h3>
<p> <p>
How to develop and deploy a simple Go project with How to develop and deploy a simple Go project with
<a href="http://code.google.com/appengine/">Google App Engine</a>. <a href="https://developers.google.com/appengine/">Google App Engine</a>.
</p> </p>
<h3 id="go_faq"><a href="go_faq.html">Frequently Asked Questions (FAQ)</a></h3> <h3 id="go_faq"><a href="go_faq.html">Frequently Asked Questions (FAQ)</a></h3>
......
...@@ -180,7 +180,7 @@ production inside Google. A public example is the server behind ...@@ -180,7 +180,7 @@ production inside Google. A public example is the server behind
<a href="http://golang.org">http://golang.org</a>. <a href="http://golang.org">http://golang.org</a>.
It's just the <a href="/cmd/godoc"><code>godoc</code></a> It's just the <a href="/cmd/godoc"><code>godoc</code></a>
document server running in a production configuration on document server running in a production configuration on
<a href="http://code.google.com/appengine/">Google App Engine</a>. <a href="https://developers.google.com/appengine/">Google App Engine</a>.
</p> </p>
<h3 id="Do_Go_programs_link_with_Cpp_programs"> <h3 id="Do_Go_programs_link_with_Cpp_programs">
......
...@@ -24,10 +24,10 @@ The documentation for the Go tools. ...@@ -24,10 +24,10 @@ The documentation for the Go tools.
The official Go Language specification. The official Go Language specification.
</p> </p>
<h3 id="appengine"><a href="http://code.google.com/appengine/docs/go/">App Engine Go Runtime Documentation</a></h3> <h3 id="appengine"><a href="https://developers.google.com/appengine/docs/go/">App Engine Go Runtime Documentation</a></h3>
<p> <p>
The documentation for The documentation for
<a href="http://code.google.com/appengine/">Google App Engine</a>'s Go runtime. <a href="https://developers.google.com/appengine/">Google App Engine</a>'s Go runtime.
</p> </p>
<h3 id="go_mem"><a href="/ref/mem">The Go Memory Model</a></h3> <h3 id="go_mem"><a href="/ref/mem">The Go Memory Model</a></h3>
......
...@@ -57,7 +57,7 @@ the content of this page is licensed under the ...@@ -57,7 +57,7 @@ the content of this page is licensed under the
Creative Commons Attribution 3.0 License, Creative Commons Attribution 3.0 License,
and code is licensed under a <a href="/LICENSE">BSD license</a>.<br> and code is licensed under a <a href="/LICENSE">BSD license</a>.<br>
<a href="/doc/tos.html">Terms of Service</a> | <a href="/doc/tos.html">Terms of Service</a> |
<a href="http://www.google.com/intl/en/privacy/privacy-policy.html">Privacy Policy</a> <a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a>
</div> </div>
</body> </body>
......
...@@ -192,14 +192,14 @@ ...@@ -192,14 +192,14 @@
{{if $.DirFlat}} {{if $.DirFlat}}
{{if .HasPkg}} {{if .HasPkg}}
<tr> <tr>
<td class="name"><a href="{{html .Path}}">{{html .Path}}</a></td> <td class="name"><a href="{{html .Path}}/">{{html .Path}}</a></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td style="width: auto">{{html .Synopsis}}</td> <td style="width: auto">{{html .Synopsis}}</td>
</tr> </tr>
{{end}} {{end}}
{{else}} {{else}}
<tr> <tr>
<td class="name">{{repeat `&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;` .Depth}}<a href="{{html .Path}}">{{html .Name}}</a></td> <td class="name">{{repeat `&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;` .Depth}}<a href="{{html .Path}}/">{{html .Name}}</a></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td style="width: auto">{{html .Synopsis}}</td> <td style="width: auto">{{html .Synopsis}}</td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment