Remove already disabled jobstatus code
This commit is contained in:
parent
adcdfcde6b
commit
64d617a6b2
|
@ -23,13 +23,6 @@ sub getJobStatus {
|
|||
}
|
||||
|
||||
|
||||
#sub jobstatus : Chained('get_builds') PathPart Args(0) {
|
||||
# my ($self, $c) = @_;
|
||||
# $c->stash->{template} = 'jobstatus.tt';
|
||||
# $c->stash->{latestBuilds} = [getJobStatus($self, $c)->all];
|
||||
#}
|
||||
|
||||
|
||||
# A convenient way to see all the errors - i.e. things demanding
|
||||
# attention - at a glance.
|
||||
sub errors : Chained('get_builds') PathPart Args(0) {
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
[% WRAPPER layout.tt title="Job status" _
|
||||
(job ? " of job $project.name:$jobset.name:$job.name" :
|
||||
jobset ? " of jobset $project.name:$jobset.name" :
|
||||
project ? " of project $project.name" : "") %]
|
||||
[% PROCESS common.tt %]
|
||||
|
||||
<p>Below are the latest builds for each job. It is ordered by the status
|
||||
change time (the timestamp of the last build that had a different
|
||||
build result status). That is, it shows the jobs that most recently
|
||||
changed from failed to successful or vice versa first.</p>
|
||||
|
||||
[% INCLUDE renderBuildList builds=latestBuilds showStatusChange=1
|
||||
hideProjectName=project hideJobsetName=jobset hideJobName=job %]
|
||||
|
||||
[% END %]
|
Loading…
Reference in a new issue