summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-11-08 00:51:08 -0800
committerRobert Griesemer <gri@golang.org>2009-11-08 00:51:08 -0800
commit5a55258927ba46c10b2a35ef5dfbcbfb04c848be (patch)
treebab9a32dda66c7faae3d394211b11a1e89e76169
parenta3ecf8e134e98c1e79c8e850dbf1fb2f917ce08f (diff)
downloadgolang-5a55258927ba46c10b2a35ef5dfbcbfb04c848be.tar.gz
TBR
1st step of renaming dirList.html -> dirlist.html (OS X filenames are not capitalization-sensitive) R=rsc http://go/go-review/1024021
-rw-r--r--lib/godoc/dirList.html23
-rw-r--r--src/cmd/godoc/godoc.go2
2 files changed, 1 insertions, 24 deletions
diff --git a/lib/godoc/dirList.html b/lib/godoc/dirList.html
deleted file mode 100644
index 03980078f..000000000
--- a/lib/godoc/dirList.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright 2009 The Go Authors. All rights reserved.
- Use of this source code is governed by a BSD-style
- license that can be found in the LICENSE file.
--->
-
-<p>
-<table class="layout">
-<tr>
- <th align="left">File</th>
- <th width="100" align="right">Size</th>
-</tr>
-<tr>
- <td><a href=".." class="noline">..</a></td>
-</tr>
-{.repeated section @}
-<tr>
- <td align="left"><a href="{Name|html}" class="noline">{Name|html}</a></td>
- <td align="right">{Size|html}</td>
-</tr>
-{.end}
-</table>
-</p>
diff --git a/src/cmd/godoc/godoc.go b/src/cmd/godoc/godoc.go
index 16a4982cf..cecc2d8c3 100644
--- a/src/cmd/godoc/godoc.go
+++ b/src/cmd/godoc/godoc.go
@@ -566,7 +566,7 @@ var (
func readTemplates() {
// have to delay until after flags processing,
// so that main has chdir'ed to goroot.
- dirListHtml = readTemplate("dirList.html");
+ dirListHtml = readTemplate("dirlist.html");
dirsHtml = readTemplate("dirs.html");
godocHtml = readTemplate("godoc.html");
packageHtml = readTemplate("package.html");