aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-03-16 09:05:09 +1100
committerAndrew Gerrand <adg@golang.org>2010-03-16 09:05:09 +1100
commit6129dbbee4c65066869711523ed14a2b281c88a3 (patch)
tree99fd129950879093b2db6334449ec89fd950a205
parent226c2ec25683e77bcc6bb54190bea006787d92ea (diff)
downloadgo-6129dbbee4c65066869711523ed14a2b281c88a3.tar.gz
go-6129dbbee4c65066869711523ed14a2b281c88a3.zip
dashboard: include package.html
This was omitted from the original commit. R=rsc CC=golang-dev https://golang.org/cl/554043
-rw-r--r--misc/dashboard/godashboard/package.html91
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 0000000000..57d23d9af8
--- /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>