summaryrefslogtreecommitdiff
path: root/misc/dashboard/godashboard/package.html
blob: 8a9d0a3a04479c7eeb096348b7d9e07ac6de2a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE HTML>
<html>
  <head>
    <title>Packages - Go Dashboard</title>
    <link rel="stylesheet" type="text/css" href="static/style.css">
  </head>

  <body>
    <ul class="menu">
      <li><a href="/">Build Status</a></li>
      <li>Packages</li>
      <li><a href="/project">Projects</a></li>
      <li><a href="http://golang.org/">golang.org</a></li>
    </ul>

    <h1>Go Dashboard</h1>
    
    <p>
    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>Most Installed Packages (this week)</h2>
    <table class="alternate" cellpadding="0" cellspacing="0">
      <tr><th>last install</th><th>count</th><th>build</th><th>path</th><th>info</th></tr>
      {% for r in by_week_count %}
        <tr>
          <td class="time">{{r.last_install|date:"Y-M-d H:i"}}</td>
          <td class="count">{{r.week_count}}</td>
          <td class="ok">{% if r.ok %}<a title="{{r.last_ok|date:"Y-M-d H:i"}}">ok</a>{% else %}&nbsp;{% endif %}</td>
          <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td>
          <td class="info">{% if r.info %}{{r.info|escape}}{% endif %}</td>
        </tr>
      {% endfor %}
    </table>
    
    <h2>Recently Installed Packages</h2>
    <table class="alternate" cellpadding="0" cellspacing="0">
      <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 %}&nbsp;{% endif %}</td>
          <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td>
          <td class="info">{% if r.info %}{{r.info|escape}}{% endif %}</td>
        </tr>
      {% endfor %}
    </table>

    <h2>Most Installed Packages (all time)</h2>
    <table class="alternate" cellpadding="0" cellspacing="0">
      <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 %}&nbsp;{% endif %}</td>
          <td class="path"><a href="{{r.web_url}}">{{r.path}}</a></td>
          <td class="info">{% if r.info %}{{r.info|escape}}{% endif %}</td>
        </tr>
      {% endfor %}
    </table>
  </body>
</html>