* Only include the system type in URLs if there are multiple jobs with

the same name.
This commit is contained in:
Eelco Dolstra
2010-03-07 11:38:39 +00:00
parent b8a78b2c3f
commit f816a5a28d
2 changed files with 7 additions and 1 deletions

View File

@ -162,6 +162,10 @@ sub result : Chained('view') PathPart('') {
my $result = getViewResult($primaryBuild, $c->stash->{jobs});
$c->stash->{result} = $result;
my %jobNames;
$jobNames{$_->{job}->job}++ foreach @{$result->{jobs}};
$c->stash->{jobNames} = \%jobNames;
if (scalar @args == 1 && $args[0] eq "release") {
requireProjectOwner($c, $c->stash->{project});