Don't show platforms for which we have no logs.

This commit is contained in:
Dag-Erling Smørgrav 2003-05-15 08:44:18 +00:00
parent ac74e878e4
commit 5e62823b5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115022

View File

@ -96,7 +96,8 @@ MAIN:{
foreach my $arch (sort(keys(%ARCHES))) {
foreach my $machine (sort(@{$ARCHES{$arch}})) {
print " <tr>
my $have_logs = 0;
my $html = " <tr>
<td>$arch</td>
<td>$machine</td>
";
@ -122,12 +123,15 @@ MAIN:{
"</span><br />";
}
if ($links eq "") {
print(" <td>n/a</td>\n");
$html .= " <td>n/a</td>\n";
} else {
print(" <td>$links</td>\n");
$html .= " <td>$links</td>\n";
$have_logs++;
}
}
print " </tr>\n";
$html .= " </tr>\n";
print $html
if $have_logs > 0;
}
}
my $date = strftime("%Y-%m-%d %H:%M GMT", gmtime());