diff options
author | Andrew Gerrand <adg@golang.org> | 2010-03-16 09:05:09 +1100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2010-03-16 09:05:09 +1100 |
commit | fd92a01d9ec0e495884bf98ed2fd62af1298b2c3 (patch) | |
tree | ef314f2bd1c447b65d7fb5dc50818510a1c0b50e | |
parent | 92804ce8eff107e68f528c8651c7d709c9e6954a (diff) | |
download | golang-fd92a01d9ec0e495884bf98ed2fd62af1298b2c3.tar.gz |
dashboard: include package.html
This was omitted from the original commit.
R=rsc
CC=golang-dev
http://codereview.appspot.com/554043
-rw-r--r-- | misc/dashboard/godashboard/package.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/misc/dashboard/godashboard/package.html b/misc/dashboard/godashboard/package.html new file mode 100644 index 000000000..57d23d9af --- /dev/null +++ b/misc/dashboard/godashboard/package.html @@ -0,0 +1,91 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Go packages</title> + + <style> + h1 { + font-size: 1em; + font-weight: bold; + } + h2 { + font-size: 1em; + font-weight: bold; + } + table.alternate { + white-space: nowrap; + } + table.alternate tr td { + padding-right: 10px; + } + table.alternate tr td:last-child { + padding-right: 0; + } + table.alternate tr:nth-child(2n) { + background-color: #f8f8f8; + } + td.revision { + } + span.hash { + font-family: monospace; + font-size: small; + color: #aaa; + } + span.nodeseq { + } + td.user { + font-size: small; + } + td.date { + color: #aaa; + font-size: small; + } + td.result { + text-align: center; + } + span.ok { + } + td.desc { + font-size: small; + font-family: sans-serif; + } + th.builder { + font-weight: bold; + padding-right: 0.5em; + } + </style> + </head> + + <body> + <h1>Go packages</h1> + + <a href="/">build status</a> + <br><br> + (Packages listed on this page are written by third parties and + may or may not build or be safe to use.) + + <h2>Recently Installed Packages</h2> + <table class="alternate" cellpadding="0" cellspacing="0"> + <tr><th>last install</th><th>count</th><th>path</th></tr> + {% for r in by_time %} + <tr> + <td class="time">{{r.last_install}}</td> + <td class="count">{{r.count}}</td> + <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></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></tr> + {% for r in by_count %} + <tr> + <td class="time">{{r.last_install}}</td> + <td class="count">{{r.count}}</td> + <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td> + </tr> + {% endfor %} + </table> + </body> +</html> |