* Make jobsets viewable under

http://server/jobset/<project>/<jobset>.
This commit is contained in:
Eelco Dolstra
2009-03-13 15:23:08 +00:00
parent ae364b9e5f
commit 3af294f848
3 changed files with 43 additions and 3 deletions

View File

@ -35,7 +35,7 @@ sub get_builds : Chained('job') PathPart('') CaptureArgs(0) {
$c->stash->{allBuilds} =
$c->stash->{jobset}->builds->search({job => $c->stash->{jobName}});
$c->stash->{channelBaseName} =
$c->stash->{curProject}->name . "-" . $c->stash->{jobName};
$c->stash->{curProject}->name . "-" . $c->stash->{jobset}->name . "-" . $c->stash->{jobName};
}