* Queue runner: don't start scheduled builds builds if they belong to

a disabled project.  Idem for the queue page.
This commit is contained in:
Eelco Dolstra
2008-11-30 18:53:58 +00:00
parent 4f2b47bb0e
commit e686979e55
4 changed files with 13 additions and 7 deletions

View File

@ -38,7 +38,7 @@
</thead>
<tbody>
[% FOREACH build IN builds -%]
<tr class="clickable [% IF build.schedulingInfo.busy %]runningJob[% END %]"
<tr class="clickable [% IF build.schedulingInfo.busy %]runningBuild[% END %] [% IF build.schedulingInfo.disabled == 1 || build.project.enabled == 0 %]disabledBuild[% END %]"
onclick="window.location = '[% c.uri_for('/build' build.id) %]'">
[% IF !hideResultInfo %]
<td>

View File

@ -9,7 +9,9 @@
[% ELSE %]
<p>Note: jobs in <span class="runningJob">red</span> are currently executing.</p>
<p>Note: Builds in <span class="runningBuild">red</span> are
currently executing. Builds in <span
class="disabledBuild">grey</span> are currently disabled.</p>
[% PROCESS renderBuildList builds=queue showSchedulingInfo=1 hideResultInfo=1 %]

View File

@ -172,11 +172,15 @@ ul.productList li {
margin-top: 1em;
}
.runningJob {
.runningBuild {
background-color: #ff3030;
color: white;
}
.disabledBuild {
background-color: #b0b0b0;
}
.productDetails {
display: none;
margin-top: 1em;