diff options
Diffstat (limited to 'misc/dashboard/godashboard/package.html')
-rw-r--r-- | misc/dashboard/godashboard/package.html | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/misc/dashboard/godashboard/package.html b/misc/dashboard/godashboard/package.html index 9332b5a79..043080b5b 100644 --- a/misc/dashboard/godashboard/package.html +++ b/misc/dashboard/godashboard/package.html @@ -19,37 +19,43 @@ Packages listed on this page are written by third parties and may or may not build or be safe to use. </p> + + <p> + An "ok" in the <b>build</b> column indicates that the package is + <a href="http://golang.org/cmd/goinstall/">goinstallable</a> + with the latest + <a href="http://golang.org/doc/devel/release.html">release</a> of Go. + </p> + + <p> + The <b>info</b> column shows the first paragraph from the + <a href="http://blog.golang.org/2011/03/godoc-documenting-go-code.html">package doc comment</a>. + </p> <h2>Recently Installed Packages</h2> <table class="alternate" cellpadding="0" cellspacing="0"> - <tr><th>last install</th><th>count</th><th>path</th><th>project</th></tr> + <tr><th>last install</th><th>count</th><th>build</th><th>path</th><th>info</th></tr> {% for r in by_time %} <tr> <td class="time">{{r.last_install|date:"Y-M-d H:i"}}</td> <td class="count">{{r.count}}</td> + <td class="ok">{% if r.ok %}<a title="{{r.last_ok|date:"Y-M-d H:i"}}">ok</a>{% else %} {% endif %}</td> <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td> - <td class="project"> - {% for p in r.project_set %} - <a href="{{p.web_url}}">{{p.name}}</a> - {{p.descr}} - {% endfor %} - </td> + <td class="info">{% if r.info %}{{r.info|escape}}{% endif %}</td> </tr> {% endfor %} </table> <h2>Most Installed Packages</h2> <table class="alternate" cellpadding="0" cellspacing="0"> - <tr><th>last install</th><th>count</th><th>path</th><th>project</th></tr> + <tr><th>last install</th><th>count</th><th>build</th><th>path</th><th>info</th></tr> {% for r in by_count %} <tr> <td class="time">{{r.last_install|date:"Y-M-d H:i"}}</td> <td class="count">{{r.count}}</td> + <td class="ok">{% if r.ok %}<a title="{{r.last_ok|date:"Y-M-d H:i"}}">ok</a>{% else %} {% endif %}</td> <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td> - <td class="project"> - {% for p in r.project_set %} - <a href="{{p.web_url}}">{{p.name}}</a> - {{p.descr}} - {% endfor %} - </td> + <td class="info">{% if r.info %}{{r.info|escape}}{% endif %}</td> </tr> {% endfor %} </table> |