hydra/src/root/plain-reload.tt

34 lines
726 B
Plaintext
Raw Normal View History

2011-02-02 09:07:17 +00:00
[% WRAPPER layout.tt title=title %]
[% PROCESS common.tt %]
[% project = build.project %]
[% jobset = build.jobset %]
[% job = build.job %]
<h2>Last 50 log lines of [% INCLUDE renderFullJobNameOfBuild %] build <a href="[% c.uri_for('/build' build.id) %]">[% build.id %]</a>[%IF step %] step [% step.stepnr %][% END %]</h2>
2011-02-02 09:07:17 +00:00
[% IF reload %]
<script>
function injectTail() {
$.ajax({
url: "[% url %]",
dataType: "text",
success: function (tail) {
$("#contents").text(tail);
}
});
}
$(document).ready(function() {
injectTail();
setInterval(injectTail, 5000);
2011-02-02 09:07:17 +00:00
});
</script>
[% END %]
<pre class="taillog" id="contents">
[% HTML.escape(contents) %]
2011-02-02 09:07:17 +00:00
</pre>
[% END %]