2009-09-17 18:04:51 -06:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2011-10-18 14:23:35 -06:00
|
|
|
{{with .PDoc}}
|
2011-08-12 11:06:32 -06:00
|
|
|
{{if $.IsPkg}}
|
2012-01-26 11:02:03 -07:00
|
|
|
<div id="short-nav">
|
|
|
|
<dl>
|
|
|
|
<dd><code>import "{{html .ImportPath}}"</code></dd>
|
|
|
|
</dl>
|
|
|
|
<dl>
|
2012-03-25 21:10:27 -06:00
|
|
|
<dd><a href="#overview" class="overviewLink">Overview</a></dd>
|
2012-02-12 20:34:30 -07:00
|
|
|
<dd><a href="#index">Index</a></dd>
|
2012-02-27 22:05:12 -07:00
|
|
|
{{if $.Examples}}
|
|
|
|
<dd><a href="#examples">Examples</a></dd>
|
|
|
|
{{end}}
|
2012-02-03 11:17:37 -07:00
|
|
|
{{if $.Dirs}}
|
2012-02-14 17:18:29 -07:00
|
|
|
<dd><a href="#subdirectories">Subdirectories</a></dd>
|
2012-02-03 11:17:37 -07:00
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<!-- The package's Name is printed as title by the top-level template -->
|
2012-03-25 21:10:27 -06:00
|
|
|
<div id="overview" class="toggleVisible">
|
|
|
|
<div class="collapsed">
|
|
|
|
<h2 class="toggleButton" title="Click to show Overview section">Overview ▹</h2>
|
|
|
|
</div>
|
|
|
|
<div class="expanded">
|
|
|
|
<h2 class="toggleButton" title="Click to hide Overview section">Overview ▾</h2>
|
|
|
|
{{comment_html .Doc}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-02-15 15:44:01 -07:00
|
|
|
{{example_html "" $.Examples $.FSet}}
|
2012-01-26 11:02:03 -07:00
|
|
|
|
2012-02-12 20:34:30 -07:00
|
|
|
<h2 id="index">Index</h2>
|
2012-01-26 11:02:03 -07:00
|
|
|
<!-- Table of contents for API; must be named manual-nav to turn off auto nav. -->
|
|
|
|
<div id="manual-nav">
|
|
|
|
<dl>
|
|
|
|
{{if .Consts}}
|
2012-02-15 01:59:01 -07:00
|
|
|
<dd><a href="#constants">Constants</a></dd>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
|
|
|
{{if .Vars}}
|
2012-02-15 01:59:01 -07:00
|
|
|
<dd><a href="#variables">Variables</a></dd>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
|
|
|
{{range .Funcs}}
|
|
|
|
{{$name_html := html .Name}}
|
|
|
|
<dd><a href="#{{$name_html}}">{{node_html .Decl $.FSet}}</a></dd>
|
|
|
|
{{end}}
|
|
|
|
{{range .Types}}
|
|
|
|
{{$tname_html := html .Name}}
|
|
|
|
<dd><a href="#{{$tname_html}}">type {{$tname_html}}</a></dd>
|
|
|
|
{{range .Funcs}}
|
|
|
|
{{$name_html := html .Name}}
|
|
|
|
<dd> <a href="#{{$name_html}}">{{node_html .Decl $.FSet}}</a></dd>
|
|
|
|
{{end}}
|
|
|
|
{{range .Methods}}
|
|
|
|
{{$name_html := html .Name}}
|
|
|
|
<dd> <a href="#{{$tname_html}}.{{$name_html}}">{{node_html .Decl $.FSet}}</a></dd>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if .Bugs}}
|
2012-02-15 01:59:01 -07:00
|
|
|
<dd><a href="#bugs">Bugs</a></dd>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
|
|
|
</dl>
|
2012-02-13 03:22:36 -07:00
|
|
|
|
2012-02-13 20:52:00 -07:00
|
|
|
{{if $.Examples}}
|
2012-02-27 22:05:12 -07:00
|
|
|
<h4 id="examples">Examples</h4>
|
2012-02-13 20:52:00 -07:00
|
|
|
<dl>
|
|
|
|
{{range $.Examples}}
|
2012-02-15 15:44:01 -07:00
|
|
|
<dd><a class="exampleLink" href="#example_{{.Name}}">{{example_name .Name}}</a></dd>
|
2012-02-13 20:52:00 -07:00
|
|
|
{{end}}
|
|
|
|
</dl>
|
|
|
|
{{end}}
|
|
|
|
|
2012-02-13 03:22:36 -07:00
|
|
|
{{with .Filenames}}
|
|
|
|
<h4>Package files</h4>
|
|
|
|
<p>
|
|
|
|
<span style="font-size:90%">
|
|
|
|
{{range .}}
|
godoc: support $GOPATH, simplify file system code
The motivation for this CL is to support $GOPATH well.
Since we already have a FileSystem interface, implement a
Plan 9-style name space. Bind each of the $GOPATH src
directories onto the $GOROOT src/pkg directory: now
everything is laid out exactly like a normal $GOROOT and
needs very little special case code.
The filter files are no longer used (by us), so I think they
can just be deleted. Similarly, the Mapping code and the
FileSystem interface were two different ways to accomplish
the same end, so delete the Mapping code.
Within the implementation, since FileSystem is defined to be
slash-separated, use package path consistently, leaving
path/filepath only for manipulating operating system paths.
I kept the -path flag, but I think it can be deleted too.
Fixes #2234.
Fixes #3046.
R=gri, r, r, rsc
CC=golang-dev
https://golang.org/cl/5711058
2012-03-05 08:02:46 -07:00
|
|
|
<a href="{{.|srcLink|html}}">{{.|filename|html}}</a>
|
2012-02-13 03:22:36 -07:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
|
|
|
|
{{with .Consts}}
|
2012-02-12 20:34:30 -07:00
|
|
|
<h2 id="constants">Constants</h2>
|
2011-08-11 14:24:13 -06:00
|
|
|
{{range .}}
|
2012-01-26 11:02:03 -07:00
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-02-23 13:44:11 -07:00
|
|
|
{{comment_html .Doc}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{with .Vars}}
|
2012-02-12 20:34:30 -07:00
|
|
|
<h2 id="variables">Variables</h2>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .}}
|
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-02-23 13:44:11 -07:00
|
|
|
{{comment_html .Doc}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
2011-10-18 14:23:35 -06:00
|
|
|
{{end}}
|
2012-01-12 18:36:57 -07:00
|
|
|
{{range .Funcs}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{/* Name is a string - no need for FSet */}}
|
2011-08-17 17:38:58 -06:00
|
|
|
{{$name_html := html .Name}}
|
2012-03-05 13:36:33 -07:00
|
|
|
<h2 id="{{$name_html}}">func <a href="{{posLink_url .Decl $.FSet}}">{{$name_html}}</a></h2>
|
2012-02-23 13:44:11 -07:00
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2011-08-12 16:43:10 -06:00
|
|
|
{{comment_html .Doc}}
|
2011-10-06 12:56:17 -06:00
|
|
|
{{example_html .Name $.Examples $.FSet}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .Types}}
|
|
|
|
{{$tname := .Name}}
|
|
|
|
{{$tname_html := html .Name}}
|
2012-03-05 13:36:33 -07:00
|
|
|
<h2 id="{{$tname_html}}">type <a href="{{posLink_url .Decl $.FSet}}">{{$tname_html}}</a></h2>
|
2012-01-26 11:02:03 -07:00
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-02-23 13:44:11 -07:00
|
|
|
{{comment_html .Doc}}
|
|
|
|
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .Consts}}
|
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-02-23 13:44:11 -07:00
|
|
|
{{comment_html .Doc}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
2012-02-23 13:44:11 -07:00
|
|
|
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .Vars}}
|
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-02-23 13:44:11 -07:00
|
|
|
{{comment_html .Doc}}
|
2012-01-26 11:02:03 -07:00
|
|
|
{{end}}
|
2012-02-23 13:44:11 -07:00
|
|
|
|
2012-01-26 11:02:03 -07:00
|
|
|
{{example_html $tname $.Examples $.FSet}}
|
2012-02-23 13:44:11 -07:00
|
|
|
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .Funcs}}
|
|
|
|
{{$name_html := html .Name}}
|
2012-03-05 13:36:33 -07:00
|
|
|
<h3 id="{{$name_html}}">func <a href="{{posLink_url .Decl $.FSet}}">{{$name_html}}</a></h3>
|
2012-02-23 13:44:11 -07:00
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{comment_html .Doc}}
|
|
|
|
{{example_html .Name $.Examples $.FSet}}
|
|
|
|
{{end}}
|
2012-02-23 13:44:11 -07:00
|
|
|
|
2012-01-26 11:02:03 -07:00
|
|
|
{{range .Methods}}
|
|
|
|
{{$name_html := html .Name}}
|
2012-03-05 13:36:33 -07:00
|
|
|
<h3 id="{{$tname_html}}.{{$name_html}}">func ({{html .Recv}}) <a href="{{posLink_url .Decl $.FSet}}">{{$name_html}}</a></h3>
|
2012-02-23 13:44:11 -07:00
|
|
|
<pre>{{node_html .Decl $.FSet}}</pre>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{comment_html .Doc}}
|
|
|
|
{{$name := printf "%s_%s" $tname .Name}}
|
|
|
|
{{example_html $name $.Examples $.FSet}}
|
|
|
|
{{end}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2012-02-19 18:32:43 -07:00
|
|
|
</div>
|
2012-01-26 11:02:03 -07:00
|
|
|
{{else}} {{/* not a package; is a command */}}
|
|
|
|
{{comment_html .Doc}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
|
2011-08-11 14:24:13 -06:00
|
|
|
{{with .Bugs}}
|
2012-02-12 20:34:30 -07:00
|
|
|
<h2 id="bugs">Bugs</h2>
|
2011-08-11 14:24:13 -06:00
|
|
|
{{range .}}
|
2011-08-12 16:43:10 -06:00
|
|
|
{{comment_html .}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
|
|
|
|
{{with .PAst}}
|
|
|
|
<pre>{{node_html . $.FSet}}</pre>
|
|
|
|
{{end}}
|
|
|
|
|
2011-08-11 14:24:13 -06:00
|
|
|
{{with .PList}}
|
2010-03-12 19:16:21 -07:00
|
|
|
<h2>Other packages</h2>
|
|
|
|
<p>
|
2011-08-11 14:24:13 -06:00
|
|
|
{{/* PList entries are strings - no need for FSet */}}
|
|
|
|
{{range .}}
|
2011-08-12 22:00:16 -06:00
|
|
|
<a href="?p={{urlquery .}}">{{html .}}</a><br />
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2010-03-12 19:16:21 -07:00
|
|
|
</p>
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2012-01-26 11:02:03 -07:00
|
|
|
|
2011-08-11 14:24:13 -06:00
|
|
|
{{with .Dirs}}
|
|
|
|
{{/* DirList entries are numbers and strings - no need for FSet */}}
|
2012-03-05 18:50:52 -07:00
|
|
|
{{if $.PDoc}}
|
|
|
|
<h2 id="subdirectories">Subdirectories</h2>
|
|
|
|
{{else}}
|
|
|
|
<div class="pkgGopher">
|
|
|
|
<img class="gopher" src="/doc/gopher/pkg.png"/>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2012-02-13 03:22:36 -07:00
|
|
|
<table class="dir">
|
2009-11-08 17:47:32 -07:00
|
|
|
<tr>
|
2012-02-13 03:22:36 -07:00
|
|
|
<th>Name</th>
|
|
|
|
<th> </th>
|
|
|
|
<th style="text-align: left; width: auto">Synopsis</th>
|
2009-11-08 17:47:32 -07:00
|
|
|
</tr>
|
2012-02-27 12:18:00 -07:00
|
|
|
{{if not $.DirFlat}}
|
|
|
|
<tr>
|
|
|
|
<td><a href="..">..</a></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{range .List}}
|
2012-02-21 15:25:56 -07:00
|
|
|
{{if $.DirFlat}}
|
2012-02-27 12:18:00 -07:00
|
|
|
{{if .HasPkg}}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{html .Path}}">{{html .Path}}</a></td>
|
|
|
|
<td> </td>
|
|
|
|
<td style="width: auto">{{html .Synopsis}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2012-02-21 15:25:56 -07:00
|
|
|
{{else}}
|
2012-02-27 12:18:00 -07:00
|
|
|
<tr>
|
|
|
|
<td>{{repeat ` ` .Depth}}<a href="{{html .Path}}">{{html .Name}}</a></td>
|
|
|
|
<td> </td>
|
|
|
|
<td style="width: auto">{{html .Synopsis}}</td>
|
|
|
|
</tr>
|
2012-02-21 15:25:56 -07:00
|
|
|
{{end}}
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|
2009-11-08 17:47:32 -07:00
|
|
|
</table>
|
2011-08-11 14:24:13 -06:00
|
|
|
{{end}}
|