2010-01-07 19:45:45 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-03-31 00:01:16 -06:00
|
|
|
<title>Build Status - Go Dashboard</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
2010-01-07 19:45:45 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2010-03-31 00:01:16 -06:00
|
|
|
<a id="top"></a>
|
|
|
|
|
|
|
|
<ul class="menu">
|
|
|
|
<li>Build Status</li>
|
|
|
|
<li><a href="/package">Packages</a></li>
|
2010-06-23 08:27:51 -06:00
|
|
|
<li><a href="/project">Projects</a></li>
|
2010-03-31 00:01:16 -06:00
|
|
|
<li><a href="/benchmarks">Benchmarks</a></li>
|
|
|
|
<li><a href="http://golang.org/">golang.org</a></li>
|
|
|
|
</ul>
|
2010-01-27 14:09:58 -07:00
|
|
|
|
2010-03-31 00:01:16 -06:00
|
|
|
<h1>Go Dashboard</h1>
|
2010-02-05 03:58:40 -07:00
|
|
|
|
2010-03-31 00:01:16 -06:00
|
|
|
<h2>Build Status</h2>
|
2010-01-07 19:45:45 -07:00
|
|
|
<table class="alternate" cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
2010-01-27 14:09:58 -07:00
|
|
|
<th></th>
|
2010-01-07 19:45:45 -07:00
|
|
|
{% for b in builders %}
|
2010-01-27 14:09:58 -07:00
|
|
|
<th class="builder">{{b.goos}}<br>{{b.goarch}}<br>{{b.note}}</th>
|
2010-01-07 19:45:45 -07:00
|
|
|
{% endfor %}
|
|
|
|
<th></th>
|
|
|
|
<th></th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{% for r in revs %}
|
|
|
|
<tr>
|
2010-01-27 14:09:58 -07:00
|
|
|
<td class="revision"><span class="hash"><a href="https://code.google.com/p/go/source/detail?r={{r.node}}">{{r.node|slice:":12"}}</a></span></td>
|
|
|
|
|
2010-01-07 19:45:45 -07:00
|
|
|
{% for b in r.builds %}
|
|
|
|
<td class="result">
|
|
|
|
{% if b.ok %}
|
2010-01-27 14:09:58 -07:00
|
|
|
<span class="ok">ok</span>
|
2010-01-07 19:45:45 -07:00
|
|
|
{% else %}
|
|
|
|
{% if b.log %}
|
2010-03-31 00:01:16 -06:00
|
|
|
<a class="fail" href="/log/{{b.log}}">fail</a>
|
2010-01-07 19:45:45 -07:00
|
|
|
{% else %}
|
2010-03-31 00:01:16 -06:00
|
|
|
|
2010-01-07 19:45:45 -07:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<td class="user">{{r.user|escape}}</td>
|
|
|
|
<td class="date">{{r.date|escape}}</td>
|
2010-01-27 14:09:58 -07:00
|
|
|
<td class="desc">{{r.shortdesc|escape}}</td>
|
2010-01-07 19:45:45 -07:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2010-03-31 00:01:16 -06:00
|
|
|
<div class="paginate">
|
|
|
|
<a{% if prev %} href="?n={{num}}&p={{prev}}"{% else %} class="inactive"{% endif %}>prev</a>
|
|
|
|
<a{% if next %} href="?n={{num}}&p={{next}}"{% else %} class="inactive"{% endif %}>next</a>
|
2010-05-25 15:22:12 -06:00
|
|
|
<a{% if prev %} href="?n={{num}}&p=1"{% else %} class="inactive"{% endif %}>top</a>
|
2010-03-31 00:01:16 -06:00
|
|
|
</div>
|
2010-01-07 19:45:45 -07:00
|
|
|
</body>
|
|
|
|
</html>
|