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

(-)a/showdependencygraph.cgi (-1 / +13 lines)
Lines 226-232 foreach my $k (@bug_ids) { Link Here
226
  }
226
  }
227
227
228
  if (is_open_state($stat)) {
228
  if (is_open_state($stat)) {
229
    push(@params, "color=green");
229
    if ($stat eq 'Needs Signoff') {
230
        push(@params, "color=orange");
231
    } elsif ($stat eq 'Signed off') {
232
        push(@params, "color=yellow");
233
    } elsif ($stat eq 'Passed QA') {
234
        push(@params, "color=blue");
235
    } elsif ($stat eq 'Failed QA' or $stat eq 'Does not apply') {
236
        push(@params, "color=red");
237
    } elsif ($stat eq 'In Discussion') {
238
        push(@params, "color=brown");
239
    } else {
240
        push(@params, "color=green");
241
    }
230
  }
242
  }
231
243
232
  if (@params) {
244
  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