limit Most Recently Doomed to the 20 most doomed. the full report takes forever

git-svn-id: svn://10.0.0.236/trunk@42614 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
endico%mozilla.org 1999-08-07 01:49:03 +00:00
parent 969f4b8a82
commit d62a888c47

View File

@ -711,10 +711,15 @@ sub most_recently_doomed
# sort people by the number of bugs they have assigned to this milestone
@people = sort bybugs @people;
my $totalpeople = @people;
if ($totalpeople > 20) {
splice @people, 0, $totalpeople-20;
}
print "<TABLE>\n";
print "<TR><TD COLSPAN=2>\n";
print "$totalpeople engineers have $bugtotal untouched new bugs.\n";
print "These are the 20 most doomed.";
print "</TD></TR>\n";
while (@people)