Make sure every node that we asked about shows up in the graph, even

if it doesn't have any dependency relationships.
This commit is contained in:
terry%mozilla.org 1999-05-27 14:42:19 +00:00
Родитель cfa0b79063
Коммит 25c106ad95
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -65,6 +65,7 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
$baselist{$i} = 1;
}
}
my @basearray = keys(%baselist);
if ($::FORM{'doall'}) {
SendSQL("select blocked, dependson from dependencies");
@ -74,7 +75,7 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
AddLink($blocked, $dependson);
}
} else {
my @stack = keys(%baselist);
my @stack = @basearray;
while (@stack) {
my $id = shift @stack;
SendSQL("select blocked, dependson from dependencies where blocked = $id or dependson = $id");
@ -91,6 +92,9 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
}
}
foreach my $k (@basearray) {
$seen{$k} = 1;
}
foreach my $k (keys(%seen)) {
my $summary = "";
my $stat;