diff --git a/src/lib/Hydra/Controller/Build.pm b/src/lib/Hydra/Controller/Build.pm index 6bd7c992..8f90af43 100644 --- a/src/lib/Hydra/Controller/Build.pm +++ b/src/lib/Hydra/Controller/Build.pm @@ -559,7 +559,7 @@ sub clone_submit : Chained('build') PathPart('clone/submit') Args(0) { } -sub get_info : Chained('build') PathPart('api/get-info') Args(0) { +sub get_info : Chained('build') PathPart('api/get-info') Args(0) { my ($self, $c) = @_; my $build = $c->stash->{build}; # !!! strip the json prefix @@ -571,4 +571,22 @@ sub get_info : Chained('build') PathPart('api/get-info') Args(0) { } +sub get_info : Chained('build') PathPart('evals') Args(0) { + my ($self, $c) = @_; + + $c->stash->{template} = 'evals.tt'; + + my $page = int($c->req->param('page') || "1") || 1; + + my $resultsPerPage = 20; + + my $evals = $c->stash->{build}->jobsetevals; + + $c->stash->{page} = $page; + $c->stash->{resultsPerPage} = $resultsPerPage; + $c->stash->{total} = $evals->search({hasnewbuilds => 1})->count; + $c->stash->{evals} = getEvals($self, $c, $evals, ($page - 1) * $resultsPerPage, $resultsPerPage) +} + + 1; diff --git a/src/root/build.tt b/src/root/build.tt index 5c104321..abf6684b 100644 --- a/src/root/build.tt +++ b/src/root/build.tt @@ -112,7 +112,7 @@
Jobset | [% END %]# | @@ -398,7 +398,7 @@ BLOCK renderEvals %] eval = e.eval; link = c.uri_for(c.controller('JobsetEval').action_for('view'), [eval.id]) %]
---|---|
[% INCLUDE renderFullJobsetName project=eval.get_column('project') jobset=eval.get_column('jobset') %] | [% END %][% eval.id %] | diff --git a/src/root/evals.tt b/src/root/evals.tt index 5d2ff6ba..ae42e833 100644 --- a/src/root/evals.tt +++ b/src/root/evals.tt @@ -1,4 +1,7 @@ -[% WRAPPER layout.tt title=(jobset ? "Evaluations of jobset $project.name:$jobset.name" : "Latest evaluations") %] +[% WRAPPER layout.tt title= + (build ? "Evaluations containing build $build.id" : + jobset ? "Evaluations of jobset $project.name:$jobset.name" : + "Latest evaluations") %] [% PROCESS common.tt %]