View | Details | Raw Unified | Return to bug 23672
Collapse All | Expand All

(-)a/showdependencygraph.cgi (-1 / +13 lines)
Lines 215-221 foreach my $k (@bug_ids) { Link Here
215
    }
215
    }
216
216
217
    if (is_open_state($stat)) {
217
    if (is_open_state($stat)) {
218
        push(@params, "color=green");
218
        if ($stat eq 'Needs Signoff') {
219
            push(@params, "color=orange");
220
        } elsif ($stat eq 'Signed off') {
221
            push(@params, "color=yellow");
222
        } elsif ($stat eq 'Passed QA') {
223
            push(@params, "color=blue");
224
        } elsif ($stat eq 'Failed QA' or $stat eq 'Does not apply') {
225
            push(@params, "color=red");
226
        } elsif ($stat eq 'In Discussion') {
227
            push(@params, "color=brown");
228
        } else {
229
            push(@params, "color=green");
230
        }
219
    }
231
    }
220
232
221
    if (@params) {
233
    if (@params) {
(-)a/template/en/default/bug/dependency-graph.html.tmpl (-2 / +5 lines)
Lines 35-41 Link Here
35
[% image_map %]
35
[% image_map %]
36
36
37
<p>
37
<p>
38
  Green circles represent open [% terms.bugs %].
38
  Orange circles represent <span style="color:orange">Needs Signoff</span> [% terms.bugs %].
39
  Yellow circles represent <span style="color:yellow">Signed Off</span> [% terms.bugs %].
40
  Blue circles represent <span style="color:blue">Passed QA</span> [% terms.bugs %].
41
  Red circles represent <span style="color:red">Failed QA or Does not apply</span> [% terms.bugs %].
42
  Brown circles represent <span style="color:brown">In discussion</span> [% terms.bugs %].
39
</p>
43
</p>
40
44
41
[% IF image_map %]
45
[% IF image_map %]
42
- 

Return to bug 23672