This commit is contained in:
Eelco Dolstra 2009-03-18 18:50:42 +00:00
parent 9e4b029285
commit ba7b94a852
3 changed files with 5 additions and 3 deletions

View file

@ -125,8 +125,8 @@ sub download : Chained('build') PathPart {
}
sub contents : Chained('build') PathPart {
my ($self, $c, $productnr, @path) = @_;
sub contents : Chained('build') PathPart Args(1) {
my ($self, $c, $productnr) = @_;
my $product = $c->stash->{build}->buildproducts->find({productnr => $productnr});
notFound($c, "Build doesn't have a product $productnr.") if !defined $product;

View file

@ -224,7 +224,7 @@ sub release :Local {
my $primaryBuild = $project->builds->find($releaseId,
{ join => 'resultInfo', '+select' => ["resultInfo.releasename"], '+as' => ["releasename"] });
error($c, "Release $releaseId doesn't exist.") if !defined $primaryBuild;
$c->stash->{release} = getRelease($primaryBuild, $jobs);
}

View file

@ -6,6 +6,8 @@
<h1>Release <tt>[% releaseName %]</tt></h1>
<p><em>Released on [% INCLUDE renderDateTime timestamp = release.timestamp %].</em></p>
[% IF release.status == 1 %]
<p class="error">This is a failed release. One of its jobs has failed. See below for details.</p>
[% ELSIF release.status == 2 %]