Commit 6c0edaa7 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 463134: Remove "Show every bug in the system with dependencies" in dependency graphs

r/a=mkanat
parent eeffc2b5
...@@ -96,6 +96,8 @@ sub AddLink { ...@@ -96,6 +96,8 @@ sub AddLink {
} }
} }
ThrowCodeError("missing_bug_id") if !defined $cgi->param('id');
# The list of valid directions. Some are not proposed in the dropdrown # The list of valid directions. Some are not proposed in the dropdrown
# menu despite the fact that they are valid. # menu despite the fact that they are valid.
my @valid_rankdirs = ('LR', 'RL', 'TB', 'BT'); my @valid_rankdirs = ('LR', 'RL', 'TB', 'BT');
...@@ -109,10 +111,6 @@ if (!grep { $_ eq $rankdir } @valid_rankdirs) { ...@@ -109,10 +111,6 @@ if (!grep { $_ eq $rankdir } @valid_rankdirs) {
my $display = $cgi->param('display') || 'tree'; my $display = $cgi->param('display') || 'tree';
my $webdotdir = bz_locations()->{'webdotdir'}; my $webdotdir = bz_locations()->{'webdotdir'};
if (!defined $cgi->param('id') && $display ne 'doall') {
ThrowCodeError("missing_bug_id");
}
my ($fh, $filename) = File::Temp::tempfile("XXXXXXXXXX", my ($fh, $filename) = File::Temp::tempfile("XXXXXXXXXX",
SUFFIX => '.dot', SUFFIX => '.dot',
DIR => $webdotdir, DIR => $webdotdir,
...@@ -132,64 +130,54 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey] ...@@ -132,64 +130,54 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
my %baselist; my %baselist;
if ($display eq 'doall') { foreach my $i (split('[\s,]+', $cgi->param('id'))) {
my $dependencies = $dbh->selectall_arrayref( my $bug = Bugzilla::Bug->check($i);
"SELECT blocked, dependson FROM dependencies"); $baselist{$bug->id} = 1;
}
my @stack = keys(%baselist);
foreach my $dependency (@$dependencies) { if ($display eq 'web') {
my ($blocked, $dependson) = @$dependency; my $sth = $dbh->prepare(q{SELECT blocked, dependson
AddLink($blocked, $dependson, $fh); FROM dependencies
} WHERE blocked = ? OR dependson = ?});
} else {
foreach my $i (split('[\s,]+', $cgi->param('id'))) {
my $bug = Bugzilla::Bug->check($i);
$baselist{$bug->id} = 1;
}
my @stack = keys(%baselist); foreach my $id (@stack) {
my $dependencies = $dbh->selectall_arrayref($sth, undef, ($id, $id));
if ($display eq 'web') { foreach my $dependency (@$dependencies) {
my $sth = $dbh->prepare(q{SELECT blocked, dependson my ($blocked, $dependson) = @$dependency;
FROM dependencies if ($blocked != $id && !exists $seen{$blocked}) {
WHERE blocked = ? OR dependson = ?}); push @stack, $blocked;
foreach my $id (@stack) {
my $dependencies = $dbh->selectall_arrayref($sth, undef, ($id, $id));
foreach my $dependency (@$dependencies) {
my ($blocked, $dependson) = @$dependency;
if ($blocked != $id && !exists $seen{$blocked}) {
push @stack, $blocked;
}
if ($dependson != $id && !exists $seen{$dependson}) {
push @stack, $dependson;
}
AddLink($blocked, $dependson, $fh);
} }
if ($dependson != $id && !exists $seen{$dependson}) {
push @stack, $dependson;
}
AddLink($blocked, $dependson, $fh);
} }
} }
# This is the default: a tree instead of a spider web. }
else { # This is the default: a tree instead of a spider web.
my @blocker_stack = @stack; else {
foreach my $id (@blocker_stack) { my @blocker_stack = @stack;
my $blocker_ids = Bugzilla::Bug::EmitDependList('blocked', 'dependson', $id); foreach my $id (@blocker_stack) {
foreach my $blocker_id (@$blocker_ids) { my $blocker_ids = Bugzilla::Bug::EmitDependList('blocked', 'dependson', $id);
push(@blocker_stack, $blocker_id) unless $seen{$blocker_id}; foreach my $blocker_id (@$blocker_ids) {
AddLink($id, $blocker_id, $fh); push(@blocker_stack, $blocker_id) unless $seen{$blocker_id};
} AddLink($id, $blocker_id, $fh);
} }
my @dependent_stack = @stack; }
foreach my $id (@dependent_stack) { my @dependent_stack = @stack;
my $dep_bug_ids = Bugzilla::Bug::EmitDependList('dependson', 'blocked', $id); foreach my $id (@dependent_stack) {
foreach my $dep_bug_id (@$dep_bug_ids) { my $dep_bug_ids = Bugzilla::Bug::EmitDependList('dependson', 'blocked', $id);
push(@dependent_stack, $dep_bug_id) unless $seen{$dep_bug_id}; foreach my $dep_bug_id (@$dep_bug_ids) {
AddLink($dep_bug_id, $id, $fh); push(@dependent_stack, $dep_bug_id) unless $seen{$dep_bug_id};
} AddLink($dep_bug_id, $id, $fh);
} }
} }
}
foreach my $k (keys(%baselist)) { foreach my $k (keys(%baselist)) {
$seen{$k} = 1; $seen{$k} = 1;
}
} }
my $sth = $dbh->prepare( my $sth = $dbh->prepare(
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
[%# INTERFACE: [%# INTERFACE:
# bug_id: integer. The number of the bug(s). # bug_id: integer. The number of the bug(s).
# multiple_bugs: boolean. True if bug_id contains > 1 bug number. # multiple_bugs: boolean. True if bug_id contains > 1 bug number.
# doall: boolean. True if we are displaying every bug in the database.
# showsummary: boolean. True if we are showing bug summaries. # showsummary: boolean. True if we are showing bug summaries.
# rankdir: string. "TB" if we are ranking top-to-bottom, # rankdir: string. "TB" if we are ranking top-to-bottom,
"LR" if left-to-right. "LR" if left-to-right.
...@@ -37,7 +36,7 @@ ...@@ -37,7 +36,7 @@
header = title header = title
%] %]
[% IF NOT multiple_bugs AND NOT doall %] [% IF NOT multiple_bugs %]
[% filtered_desc = short_desc FILTER html %] [% filtered_desc = short_desc FILTER html %]
[% title = "$title for $terms.bug $bug_id" [% title = "$title for $terms.bug $bug_id"
header = "$header for $terms.bug <a href=\"show_bug.cgi?id=$bug_id\">$bug_id</a>" header = "$header for $terms.bug <a href=\"show_bug.cgi?id=$bug_id\">$bug_id</a>"
...@@ -82,8 +81,6 @@ ...@@ -82,8 +81,6 @@
Restrict to [% terms.bugs %] having a direct relationship with entered [% terms.bugs %]</option> Restrict to [% terms.bugs %] having a direct relationship with entered [% terms.bugs %]</option>
<option value="web" [% 'selected="selected"' IF display == "web" %]> <option value="web" [% 'selected="selected"' IF display == "web" %]>
Show all [% terms.bugs %] having any relationship with entered [% terms.bugs %]</option> Show all [% terms.bugs %] having any relationship with entered [% terms.bugs %]</option>
<option value="doall" [% 'selected="selected"' IF display == "doall" %]>
Show every [% terms.bug %] in the system with dependencies</option>
</select> </select>
</td> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment