From: terry%mozilla.org <> Date: Thu, 27 May 1999 21:42:19 +0000 (+0000) Subject: Make sure every node that we asked about shows up in the graph, even X-Git-Tag: bugzilla-2.6~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b1a447768cf2986a77c341274a254f06fe9d79d;p=thirdparty%2Fbugzilla.git Make sure every node that we asked about shows up in the graph, even if it doesn't have any dependency relationships. --- diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 1e3a02e2ae..6ead9f84dc 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -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;