2011-02-02 09:07:17 +00:00
|
|
|
[% WRAPPER layout.tt title=title %]
|
|
|
|
[% PROCESS common.tt %]
|
|
|
|
|
2011-11-10 17:19:05 +00:00
|
|
|
[% project = build.project %]
|
|
|
|
[% jobset = build.jobset %]
|
|
|
|
[% job = build.job %]
|
|
|
|
|
2011-02-02 09:07:17 +00:00
|
|
|
<h2>Last 50 lines of log</h2>
|
|
|
|
|
|
|
|
[% IF reload %]
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("#contents").load("[% url %]");
|
|
|
|
var refreshId = setInterval(function() {
|
|
|
|
$("#contents").load("[% url %]");
|
|
|
|
}, 5000);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
<pre class="taillog" id="contents">
|
|
|
|
[% contents -%]
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
[% END %]
|