1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00

Fix indentation and get rid of some unnecessary whitespace in the output

This commit is contained in:
Eelco Dolstra 2013-02-14 17:51:09 +01:00
parent 2fa1a7efa7
commit 5620e3c386

View file

@ -1,65 +1,67 @@
[% USE date %] [%
[% USE String %] USE date;
[% USE HTML %] USE String;
USE HTML;
[% inputTypes = inputTypes =
{ "svn" = "Subversion export" { "svn" = "Subversion export"
, "svn-checkout" = "Subversion checkout" , "svn-checkout" = "Subversion checkout"
, "bzr" = "Bazaar export" , "bzr" = "Bazaar export"
, "bzr-checkout" = "Bazaar checkout" , "bzr-checkout" = "Bazaar checkout"
, "git" = "Git checkout" , "git" = "Git checkout"
, "hg" = "Mercurial checkout" , "hg" = "Mercurial checkout"
, "string" = "String value" , "string" = "String value"
, "boolean" = "Boolean" , "boolean" = "Boolean"
, "path" = "Local path" , "path" = "Local path"
, "build" = "Build output" , "build" = "Build output"
, "sysbuild" = "Build output (same system)" , "sysbuild" = "Build output (same system)"
} };
%]
BLOCK renderDateTime;
date.format(timestamp, '%Y-%m-%d %H:%M:%S');
END;
[% BLOCK renderDateTime %] BLOCK renderProjectName %]
[% date.format(timestamp, '%Y-%m-%d %H:%M:%S') %] <a href="[% c.uri_for('/project' project) %]"><tt>[% project %]</tt></a>
[% END %] [% END;
[% BLOCK renderProjectName %] BLOCK renderJobsetName %]
<a href="[% c.uri_for('/project' project) %]"><tt>[% project %]</tt></a>[% END %] <a href="[% c.uri_for('/jobset' project jobset) %]"><tt>[% jobset %]</tt></a>
[% END;
[% BLOCK renderJobsetName %] BLOCK renderJobName %]
<a href="[% c.uri_for('/jobset' project jobset) %]"><tt>[% jobset %]</tt></a>[% END %] <a href="[% c.uri_for('/job' project jobset job) %]"><tt>[% job %]</tt></a>
[% END;
[% BLOCK renderJobName %] BLOCK renderFullJobsetName %]
<a href="[% c.uri_for('/job' project jobset job) %]"><tt>[% job %]</tt></a>[% END %]
[% BLOCK renderFullJobsetName %]
<tt>[% INCLUDE renderProjectName %]:[% INCLUDE renderJobsetName %]</tt> <tt>[% INCLUDE renderProjectName %]:[% INCLUDE renderJobsetName %]</tt>
[% END %] [% END;
[% BLOCK renderFullJobName %] BLOCK renderFullJobName %]
<tt>[% IF !hideProjectName; INCLUDE renderProjectName %]:[% END; IF !hideJobsetName; INCLUDE renderJobsetName %]:[% END; INCLUDE renderJobName %]</tt> <tt>[% IF !hideProjectName; INCLUDE renderProjectName %]:[% END; IF !hideJobsetName; INCLUDE renderJobsetName %]:[% END; INCLUDE renderJobName %]</tt>
[% END %] [% END;
[% BLOCK renderFullJobNameOfBuild %] BLOCK renderFullJobNameOfBuild;
[% INCLUDE renderFullJobName project=build.get_column("project") jobset = build.get_column("jobset") job = build.get_column("job") %] INCLUDE renderFullJobName project=build.get_column("project") jobset = build.get_column("jobset") job = build.get_column("job");
[% END %] END;
[% BLOCK renderDuration %] BLOCK renderDuration;
[% IF duration >= 24 * 60 * 60 %][% duration div (24 * 60 * 60) %]d[% END %] IF duration >= 24 * 60 * 60; duration div (24 * 60 * 60) %]d[% END;
[% IF duration >= 60 * 60 %][% duration div (60 * 60) % 24 %]h[% END %] IF duration >= 60 * 60; duration div (60 * 60) % 24 %]h[% END;
[% IF duration >= 60 %][% duration div 60 % 60 %]m[% END %] IF duration >= 60; duration div 60 % 60 %]m[% END;
[% duration % 60 %]s duration % 60 %]s[%
[% END %] END;
[% BLOCK renderBuildListHeader %] BLOCK renderBuildListHeader %]
<table class="buildList table table-striped table-condensed [% IF !unsortable %]tablesorter[% END %] [% IF !showSchedulingInfo %] clean[% END %]"> <table class="buildList table table-striped table-condensed [% IF !unsortable %]tablesorter[% END %] [% IF !showSchedulingInfo %] clean[% END %]">
<thead> <thead>
<tr> <tr>
@ -88,70 +90,73 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
[% END %] [% END;
[% BLOCK renderBuildListBody %]
[% odd = 0 %] BLOCK renderBuildListBody;
[% FOREACH build IN builds %] odd = 0;
<tr class="clickable FOREACH build IN builds; %]
[% IF showSchedulingInfo %] <tr class="clickable
[% IF build.busy %]runningBuild[% ELSIF build.disabled == 1 || build.get_column('enabled') == 0 %]disabledBuild[% END %] [% IF showSchedulingInfo %]
[% ELSE %] [% IF build.busy %]runningBuild[% ELSIF build.disabled == 1 || build.get_column('enabled') == 0 %]disabledBuild[% END %]
[% IF odd %] odd [% END; odd = !odd %] [% ELSE %]
[% END %]" [% IF odd %] odd [% END; odd = !odd %]
onclick="if(event.which == 2) return true; window.location = '[% c.uri_for('/build' build.id) %]'"> [% END %]"
[% IF !hideResultInfo %] onclick="if(event.which == 2) return true; window.location = '[% c.uri_for('/build' build.id) %]'">
<td> [% IF !hideResultInfo %]
[% INCLUDE renderBuildStatusIcon size=16 busy=(showSchedulingInfo ? 1 : 0) buildstatus=build.buildstatus %] <td>
</td> [% INCLUDE renderBuildStatusIcon size=16 busy=(showSchedulingInfo ? 1 : 0) buildstatus=build.buildstatus %]
[% END %] </td>
[% IF showSchedulingInfo %]
<td>[% IF build.busy %]<span class="label label-success">Started</span>[% ELSE %]<span class="label">Queued</span>[% END %]</td>
[% END %]
<td><a href="[% c.uri_for('/build' build.id) %]">[% build.id %]</a></td>
[% IF showSchedulingInfo %]
<td>[% build.priority %]</td>
[% END %]
[% IF !hideJobName %]
<td>[% INCLUDE renderFullJobNameOfBuild %]</td>
[% END %]
<td>[% !showSchedulingInfo and build.get_column('releasename') ? build.get_column('releasename') : build.nixname %]</td>
<td><tt>[% build.system %]</tt></td>
<td>[% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
[% IF showStatusChange %]
<td>
[% IF build.get_column('statusChangeTime') %]
<a href="[% c.uri_for('/build' build.get_column('statusChangeId')) %]">
[% date.format(build.get_column('statusChangeTime'), '%Y-%m-%d %H:%M:%S') %]
</a>
[% ELSE %]
<em>never</em>
[% END %]
</td>
[% END %]
[% IF showDescription %]
<td>[% build.description %]</td>
[% END %]
</tr>
[% END %] [% END %]
[% END %] [% IF showSchedulingInfo %]
<td>[% IF build.busy %]<span class="label label-success">Started</span>[% ELSE %]<span class="label">Queued</span>[% END %]</td>
[% END %]
<td><a href="[% c.uri_for('/build' build.id) %]">[% build.id %]</a></td>
[% IF showSchedulingInfo %]
<td>[% build.priority %]</td>
[% END %]
[% IF !hideJobName %]
<td>[% INCLUDE renderFullJobNameOfBuild %]</td>
[% END %]
<td>[% !showSchedulingInfo and build.get_column('releasename') ? build.get_column('releasename') : build.nixname %]</td>
<td><tt>[% build.system %]</tt></td>
<td>[% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
[% IF showStatusChange %]
<td>
[% IF build.get_column('statusChangeTime') %]
<a href="[% c.uri_for('/build' build.get_column('statusChangeId')) %]">
[% date.format(build.get_column('statusChangeTime'), '%Y-%m-%d %H:%M:%S') %]
</a>
[% ELSE %]
<em>never</em>
[% END %]
</td>
[% END %]
[% IF showDescription %]
<td>[% build.description %]</td>
[% END %]
</tr>
[% END;
END;
[% BLOCK renderBuildListFooter %]
BLOCK renderBuildListFooter %]
</tbody> </tbody>
</table> </table>
[% END %] [% END;
[% BLOCK renderBuildList %]
[% INCLUDE renderBuildListHeader %]
[% INCLUDE renderBuildListBody %]
[% INCLUDE renderBuildListFooter %]
[% END %]
[% BLOCK renderLink %]<a href="[% uri %]">[% title %]</a>[% END %] BLOCK renderBuildList;
INCLUDE renderBuildListHeader;
INCLUDE renderBuildListBody;
INCLUDE renderBuildListFooter;
END;
[% BLOCK showBuildStats %]
BLOCK renderLink %]<a href="[% uri %]">[% title %]</a>[% END;
BLOCK showBuildStats %]
<table class="layoutTable"> <table class="layoutTable">
<tr> <tr>
<th>Finished builds:</th> <th>Finished builds:</th>
@ -178,26 +183,27 @@
<td>[% busyBuilds %]</td> <td>[% busyBuilds %]</td>
</tr> </tr>
</table> </table>
[% END;
[% END %]
[% BLOCK renderViewJobName %] BLOCK renderViewJobName;
[% IF job.description; HTML.escape(job.description); ELSE %]<tt>[% job.job %]</tt> ([% job.attrs %])[% END %] IF job.description; HTML.escape(job.description); ELSE %]<tt>[% job.job %]</tt> ([% job.attrs %])[% END;
[% END %] END;
[% BLOCK maybeLink %] BLOCK maybeLink;
[% IF uri %]<a [% HTML.attributes(href => uri, class => class) %][% IF confirmmsg %]onclick="javascript:return confirm('[% confirmmsg %]')"[% END %]>[% content %]</a>[% ELSE; content; END %] IF uri %]<a [% HTML.attributes(href => uri, class => class) %][% IF confirmmsg %]onclick="javascript:return confirm('[% confirmmsg %]')"[% END %]>[% content %]</a>[% ELSE; content; END;
[% END %] END;
[% BLOCK maybeButton %]
[% IF uri %]<a class="btn btn-mini" [% HTML.attributes(href => uri) %][% IF confirmmsg %]onclick="javascript:return confirm('[% confirmmsg %]')"[% END %]>[% content %]</a>[% ELSE; content; END %]
[% END %]
[% BLOCK renderSelection %] BLOCK maybeButton;
[% IF edit %] IF uri %]<a class="btn btn-mini" [% HTML.attributes(href => uri); IF confirmmsg %]onclick="javascript:return confirm('[% confirmmsg %]')"[% END; content %]</a>[% ELSE; content; END;
[% IF radiobuttons %] END;
BLOCK renderSelection;
IF edit;
IF radiobuttons; %]
<div class="controls"> <div class="controls">
[% FOREACH name IN options.keys.sort %] [% FOREACH name IN options.keys.sort %]
<label class="radio inline"> <label class="radio inline">
@ -214,31 +220,33 @@
<option [% HTML.attributes(value => name) %] [% IF name == curValue; "selected='selected'"; END %]>[% options.$name %]</option> <option [% HTML.attributes(value => name) %] [% IF name == curValue; "selected='selected'"; END %]>[% options.$name %]</option>
[% END %] [% END %]
</select> </select>
[% END %] [% END;
[% ELSE %] ELSE;
[% options.$curValue %] options.$curValue;
[% END %] END;
[% END %] END;
[% BLOCK maybeEditString; BLOCK maybeEditString;
IF edit %] IF edit %]
<input type="text" class="string [% extraClass %]" [% HTML.attributes(id => param, name => param, value => value) %] /> <input type="text" class="string [% extraClass %]" [% HTML.attributes(id => param, name => param, value => value) %] />
[% ELSE; [% ELSE;
HTML.escape(value); HTML.escape(value);
END %] END;
[% END %] END;
[% BLOCK renderFullBuildLink %]
[% INCLUDE renderFullJobNameOfBuild build=build %] <a href="[% c.uri_for('/build' build.id) %]">build [% build.id %]</a>[% %]
[% END %]
[% BLOCK renderBuildStatusIcon %] BLOCK renderFullBuildLink;
[% finished = build != undef ? build.finished : 1 %] INCLUDE renderFullJobNameOfBuild build=build %] <a href="[% c.uri_for('/build' build.id) %]">build [% build.id %]</a>[%
[% busy = busy != undef ? busy : build.busy %] END;
[% buildstatus = buildstatus != undef ? buildstatus : build.buildstatus %]
[% IF finished %]
[% IF buildstatus == 0 %] BLOCK renderBuildStatusIcon;
finished = build != undef ? build.finished : 1;
busy = busy != undef ? busy : build.busy;
buildstatus = buildstatus != undef ? buildstatus : build.buildstatus;
IF finished;
IF buildstatus == 0 %]
<img src="/static/images/checkmark_[% size %].png" alt="Succeeded" /> <img src="/static/images/checkmark_[% size %].png" alt="Succeeded" />
[% ELSIF buildstatus == 1 %] [% ELSIF buildstatus == 1 %]
<img src="/static/images/error_[% size %].png" alt="Failed" /> <img src="/static/images/error_[% size %].png" alt="Failed" />
@ -252,19 +260,20 @@
<img src="/static/images/error_[% size %].png" alt="Failed (with result)" /> <img src="/static/images/error_[% size %].png" alt="Failed (with result)" />
[% ELSE %] [% ELSE %]
<img src="/static/images/error_[% size %].png" alt="Failed" /> <img src="/static/images/error_[% size %].png" alt="Failed" />
[% END %] [% END;
[% ELSIF busy %] ELSIF busy %]
<img src="/static/images/help_[% size %].png" alt="Busy" /> <img src="/static/images/help_[% size %].png" alt="Busy" />
[% ELSE %] [% ELSE %]
<img src="/static/images/help_[% size %].png" alt="Scheduled" /> <img src="/static/images/help_[% size %].png" alt="Scheduled" />
[% END %] [% END;
[% END %] END;
[% BLOCK renderStatus %]
[% IF build.finished %] BLOCK renderStatus;
[% buildstatus = build.buildstatus %] IF build.finished;
[% IF icon; INCLUDE renderBuildStatusIcon size=16; END %] buildstatus = build.buildstatus;
[% IF buildstatus == 0 %] IF icon; INCLUDE renderBuildStatusIcon size=16; END;
IF buildstatus == 0 %]
<strong>Success</strong> <strong>Success</strong>
[% ELSIF buildstatus == 1 %] [% ELSIF buildstatus == 1 %]
<span class="error">Build returned a non-zero exit code</span> <span class="error">Build returned a non-zero exit code</span>
@ -279,144 +288,146 @@
[% ELSE %] [% ELSE %]
<span class="error">Build failed</span> <span class="error">Build failed</span>
(see <a href="#nix-error">below</a>) (see <a href="#nix-error">below</a>)
[% END %] [% END;
[% ELSIF build.busy %] ELSIF build.busy %]
<strong>Build in progress</strong> <strong>Build in progress</strong>
since [% INCLUDE renderDateTime timestamp = build.starttime %] since [% INCLUDE renderDateTime timestamp = build.starttime;
[% ELSE %] ELSE %]
<strong>Scheduled to be built</strong> <strong>Scheduled to be built</strong>
[% END;
END;
BLOCK renderInputValue;
IF input.type == "build" || input.type == "sysbuild";
INCLUDE renderFullBuildLink build=input.dependency;
ELSIF input.type == "string" || input.type == "boolean" %]
<tt>"[% input.value %]"</tt>
[% ELSE %]
<tt>[% input.uri %][% IF input.revision %] (r[% input.revision %])[% END %]</tt>
[% END;
END;
BLOCK renderShortInputValue;
IF input.type == "build" || input.type == "sysbuild" %]
<a href="[% c.uri_for('/build' input.dependency.id) %]">[% input.dependency.id %]</a>
[% ELSIF input.type == "string" || input.type == "boolean" %]
<tt>"[% input.value %]"</tt>
[% ELSE %]
<tt>[% input.uri %][% IF input.revision %] (r[% input.revision %])[% END %]</tt>
[% END %] [% END %]
[% END %] [% END;
[% BLOCK renderInputValue %]
[% IF input.type == "build" || input.type == "sysbuild" %]
[% INCLUDE renderFullBuildLink build=input.dependency %]</a>
[% ELSIF input.type == "string" || input.type == "boolean" %]
<tt>"[% input.value %]"</tt>
[% ELSE %]
<tt>[% input.uri %][% IF input.revision %] (r[% input.revision %])[% END %]</tt>
[% END %]
[% END %]
[% BLOCK renderShortInputValue %] BLOCK renderDiffUri;
[% IF input.type == "build" || input.type == "sysbuild" %] nouri = 1;
<a href="[% c.uri_for('/build' input.dependency.id) %]">[% input.dependency.id %]</a> FOREACH m IN mappers;
[% ELSIF input.type == "string" || input.type == "boolean" %] base = m.baseuri;
<tt>"[% input.value %]"</tt> url = bi1.uri;
[% ELSE %] path = url.replace(base, '');
<tt>[% input.uri %][% IF input.revision %] (r[% input.revision %])[% END %]</tt> IF url.match(base) %]
[% END %] <a target="_new" href="[% m.uri.replace('_path_', path).replace('_1_', bi1.revision).replace('_2_', bi2.revision) %]">[% contents %]</a>
[% END %] [% nouri = 0;
END;
END;
IF nouri;
res = bi1.uri.split(' ');
url = res.0;
branch = res.1;
IF bi1.type == "hg" || bi1.type == "git" %]
<a target="_new" href="/api/scmdiff?uri=[% url %]&rev1=[% bi1.revision %]&rev2=[% bi2.revision %]&type=[% bi1.type %]&branch=[% branch %]">[% contents %]</a>
[% ELSE;
contents;
END;
END;
END;
[% BLOCK renderDiffUri; %]
[% nouri = 1 %]
[% FOREACH m IN mappers %]
[% base = m.baseuri %]
[% url = bi1.uri %]
[% path = url.replace(base, '') %]
[% IF url.match(base) %]
<a target="_new" href="[% m.uri.replace('_path_', path).replace('_1_', bi1.revision).replace('_2_', bi2.revision) %]">[% contents %]</a>
[% nouri = 0 %]
[% END %]
[% END %]
[% IF nouri %]
[% res = bi1.uri.split(' ') %]
[% url = res.0 %]
[% branch = res.1 %]
[% IF bi1.type == "hg" || bi1.type == "git" %]
<a target="_new" href="/api/scmdiff?uri=[% url %]&rev1=[% bi1.revision %]&rev2=[% bi2.revision %]&type=[% bi1.type %]&branch=[% branch %]">[% contents %]</a>
[% ELSE %]
[% contents %]
[% END %]
[% END %]
[% END %]
[% BLOCK renderInputDiff; %] BLOCK renderInputDiff; %]
<table class="table table-striped table-condensed"> <table class="table table-striped table-condensed">
[% IF !nestedDiff %] [% IF !nestedDiff %]
<tr><th>Input</th><th>Changes</th></tr> <tr><th>Input</th><th>Changes</th></tr>
[% END %] [% END;
[% IF !nestLevel %] IF !nestLevel;
[% nestLevel = 0 %] nestLevel = 0;
[% END %] END;
[% IF nestLevel <= 3 %] IF nestLevel <= 3;
[% FOREACH bi1 IN build1.inputs %] FOREACH bi1 IN build1.inputs;
[% deletedInput = 1 %] deletedInput = 1;
[% FOREACH bi2 IN build2.inputs %] FOREACH bi2 IN build2.inputs;
[% IF bi1.name == bi2.name %] IF bi1.name == bi2.name;
[% IF bi1.type == bi2.type %] IF bi1.type == bi2.type;
[% IF bi1.value != bi2.value || bi1.uri != bi2.uri %] IF bi1.value != bi2.value || bi1.uri != bi2.uri %]
<tr><td><b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderShortInputValue input=bi1 %]</tt> to <tt>[% INCLUDE renderShortInputValue input=bi2 %]</tt></td></tr> <tr><td><b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderShortInputValue input=bi1 %]</tt> to <tt>[% INCLUDE renderShortInputValue input=bi2 %]</tt></td></tr>
[% ELSIF bi1.uri == bi2.uri && bi1.revision != bi2.revision %] [% ELSIF bi1.uri == bi2.uri && bi1.revision != bi2.revision %]
[% IF bi1.type == "git" %] [% IF bi1.type == "git" %]
<tr><td> <tr><td>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision.substr(0, 6) _ ' to ' _ bi2.revision.substr(0, 6)) %]</tt> <b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision.substr(0, 6) _ ' to ' _ bi2.revision.substr(0, 6)) %]</tt>
</td></tr> </td></tr>
[% ELSE %]
<tr><td>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision _ ' to ' _ bi2.revision) %]</tt>
</td></tr>
[% END %]
[% ELSIF bi1.dependency.id != bi2.dependency.id || bi1.path != bi2.path %]
<tr><td>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderShortInputValue input=bi1 %]</tt> to <tt>[% INCLUDE renderShortInputValue input=bi2 %]</tt>
<br/>
<br/>
[% INCLUDE renderInputDiff build1=bi1.dependency, build2=bi2.dependency, nestedDiff=1, nestLevel=nestLevel+1 %]
</td></tr>
[% END %]
[% ELSE %] [% ELSE %]
<tr><td><b>[% bi1.name %]</b></td><td>Changed input type from '[% type = bi1.type; inputTypes.$type %]' to '[% type = bi2.type; inputTypes.$type %]'</td></tr> <tr><td>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision _ ' to ' _ bi2.revision) %]</tt>
</td></tr>
[% END %] [% END %]
[% ELSIF bi1.dependency.id != bi2.dependency.id || bi1.path != bi2.path %]
[% deletedInput = 0 %] <tr><td>
[% END %] <b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderShortInputValue input=bi1 %]</tt> to <tt>[% INCLUDE renderShortInputValue input=bi2 %]</tt>
[% END %] <br/>
[% IF deletedInput == 1 %] <br/>
<tr><td><b>[% bi1.name %]</b></td><td>Input not present in this build.</td></tr> [% INCLUDE renderInputDiff build1=bi1.dependency, build2=bi2.dependency, nestedDiff=1, nestLevel=nestLevel+1 %]
[% END %] </td></tr>
[% END %] [% END %]
[% END %] [% ELSE %]
</table> <tr><td><b>[% bi1.name %]</b></td><td>Changed input type from '[% type = bi1.type; inputTypes.$type %]' to '[% type = bi2.type; inputTypes.$type %]'</td></tr>
[% END;
[% END %] deletedInput = 0;
END;
[% BLOCK hydraStatus %] END;
<table class="tablesorter table table-striped table-condensed"> IF deletedInput == 1 %]
<thead> <tr><td><b>[% bi1.name %]</b></td><td>Input not present in this build.</td></tr>
<tr><th>Machine</th><th>Job</th><th>Type</th><th>Build</th><th>Step</th><th>What</th><th>Since</th></tr> [% END;
</thead> END;
<tbody> END %]
[% FOREACH step IN steps %] </table>
<tr> [% END;
<td><tt>[% IF step.machine; step.machine.match('@(.*)').0; ELSE; 'localhost'; END %]</tt></td>
<td><tt>[% INCLUDE renderFullJobName project = step.build.project.name jobset = step.build.jobset.name job = step.build.job.name %]</tt></td>
<td><tt>[% step.system %]</tt></td>
<td><a href="[% c.uri_for('/build' step.build.id) %]">[% step.build.id %]</a></td>
<td><a href="[% c.uri_for('/build' step.build.id 'nixlog' step.stepnr 'tail-reload') %]">[% step.stepnr %]</a></td>
<td><tt>[% step.drvpath.match('-(.*)').0 %]</tt></td>
<td class='right'>[% INCLUDE renderDuration duration = curTime - step.starttime %] </td>
</tr>
[% END %]
</tbody>
</table>
[% END %]
[% BLOCK renderPager %] BLOCK hydraStatus %]
<ul class="pagination"> <table class="tablesorter table table-striped table-condensed">
<thead>
<tr><th>Machine</th><th>Job</th><th>Type</th><th>Build</th><th>Step</th><th>What</th><th>Since</th></tr>
</thead>
<tbody>
[% FOREACH step IN steps %]
<tr>
<td><tt>[% IF step.machine; step.machine.match('@(.*)').0; ELSE; 'localhost'; END %]</tt></td>
<td><tt>[% INCLUDE renderFullJobName project = step.build.project.name jobset = step.build.jobset.name job = step.build.job.name %]</tt></td>
<td><tt>[% step.system %]</tt></td>
<td><a href="[% c.uri_for('/build' step.build.id) %]">[% step.build.id %]</a></td>
<td><a href="[% c.uri_for('/build' step.build.id 'nixlog' step.stepnr 'tail-reload') %]">[% step.stepnr %]</a></td>
<td><tt>[% step.drvpath.match('-(.*)').0 %]</tt></td>
<td class='right'>[% INCLUDE renderDuration duration = curTime - step.starttime %] </td>
</tr>
[% END %]
</tbody>
</table>
[% END;
BLOCK renderPager %]
<ul class="pagination">
<li><a href="[% "$baseUri?page=1" %]">First</a></li> <li><a href="[% "$baseUri?page=1" %]">First</a></li>
<li [% IF page == 1 %]class="disabled"[% END %]><a href="[% "$baseUri?page="; (page - 1) %]">Previous</a></li> <li [% IF page == 1 %]class="disabled"[% END %]><a href="[% "$baseUri?page="; (page - 1) %]">Previous</a></li>
<li [% IF page * resultsPerPage >= total %]class="disabled"[% END %]><a href="[% "$baseUri?page="; (page + 1) %]">Next</a></li> <li [% IF page * resultsPerPage >= total %]class="disabled"[% END %]><a href="[% "$baseUri?page="; (page + 1) %]">Next</a></li>
<li><a href="[% "$baseUri?page="; (total - 1) div resultsPerPage + 1 %]">Last</a></li> <li><a href="[% "$baseUri?page="; (total - 1) div resultsPerPage + 1 %]">Last</a></li>
</ul> </ul>
[% END %] [% END;
[% BLOCK renderShortEvalInput %] BLOCK renderShortEvalInput;
[% IF input.type == "svn" || input.type == "svn-checkout" || input.type == "bzr" || input.type == "bzr-checkout" %] IF input.type == "svn" || input.type == "svn-checkout" || input.type == "bzr" || input.type == "bzr-checkout" %]
r[% input.revision %] r[% input.revision %]
[% ELSIF input.type == "git" %] [% ELSIF input.type == "git" %]
<tt>[% input.revision.substr(0, 7) %]</tt> <tt>[% input.revision.substr(0, 7) %]</tt>
@ -424,59 +435,62 @@
<tt>[% input.dependency.id %]</tt> <tt>[% input.dependency.id %]</tt>
[% ELSE %] [% ELSE %]
<tt>[% input.revision %]</tt> <tt>[% input.revision %]</tt>
[% END %] [% END;
[% END %] END;
[% BLOCK renderEvals %] BLOCK renderEvals %]
<table class="tablesorter table table-condensed table-striped"> <table class="tablesorter table table-condensed table-striped">
<thead> <thead>
<tr> <tr>
<th>#</th> <th>#</th>
<th>Date</th> <th>Date</th>
<th>Input changes</th> <th>Input changes</th>
<th colspan='2'>Success</th> <th colspan='2'>Success</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
[% FOREACH e IN evals; eval = e.eval; [% FOREACH e IN evals
eval = e.eval;
link = c.uri_for(c.controller('JobsetEval').action_for('view'), [eval.id]) %] link = c.uri_for(c.controller('JobsetEval').action_for('view'), [eval.id]) %]
<tr class="clickable" onclick="window.location = '[% link %]'"> <tr class="clickable" onclick="window.location = '[% link %]'">
<td><a href="[% link %]">[% eval.id %]</a>&nbsp;</td> <td><a href="[% link %]">[% eval.id %]</a>&nbsp;</td>
<td>[% INCLUDE renderDateTime timestamp = eval.timestamp %]&nbsp;</td> <td>[% INCLUDE renderDateTime timestamp = eval.timestamp %]&nbsp;</td>
<td> <td>
[% IF e.changedInputs.size > 0 %] [% IF e.changedInputs.size > 0;
[% sep=''; FOREACH input IN e.changedInputs %] sep='';
[% sep %] [% input.name %] → [% INCLUDE renderShortEvalInput input=input %] FOREACH input IN e.changedInputs;
[% sep=','; END %] sep; %] [% input.name %] → [% INCLUDE renderShortEvalInput input=input;
[% ELSE %] sep=',';
- END;
[% END %] ELSE %]
</td> -
<td align='right'> [% END %]
<span class="label label-success">[% e.nrSucceeded %]</span> </td>
<span class="label label-important">[% e.nrFailed %]</span> <td align='right'>
[% IF e.nrScheduled > 0 %] <span class="label label-success">[% e.nrSucceeded %]</span>
<span class="label">[% e.nrScheduled %]</span> <span class="label label-important">[% e.nrFailed %]</span>
[% END %] [% IF e.nrScheduled > 0 %]
</td> <span class="label">[% e.nrScheduled %]</span>
<td align='right'> [% END %]
[% IF e.diff > 0 %] </td>
<span class='label label-success'><strong>+[% e.diff %]</strong></span> <td align='right'>
[% ELSIF e.diff < 0 && e.nrScheduled == 0 %] [% IF e.diff > 0 %]
<span class='label label-important'><strong>[% e.diff %]</strong></span> <span class='label label-success'><strong>+[% e.diff %]</strong></span>
[% END %] [% ELSIF e.diff < 0 && e.nrScheduled == 0 %]
</td> <span class='label label-important'><strong>[% e.diff %]</strong></span>
</tr> [% END %]
[% END %] </td>
[% IF linkToAll %] </tr>
<tr><td class="centered" colspan=54"><a href="[% linkToAll %]"><em>More...</em></a></td></tr> [% END;
[% END %] IF linkToAll %]
</tbody> <tr><td class="centered" colspan=54"><a href="[% linkToAll %]"><em>More...</em></a></td></tr>
</table> [% END %]
[% END %] </tbody>
</table>
[% END;
[% BLOCK renderLogLinks %] BLOCK renderLogLinks %]
(<a href="[% url %]">log</a>, <a href="[% "$url/raw" %]">raw</a>, <a href="[% "$url/tail-reload" %]">tail</a>) (<a href="[% url %]">log</a>, <a href="[% "$url/raw" %]">raw</a>, <a href="[% "$url/tail-reload" %]">tail</a>)
[% END %] [% END %]