Collapse the Architecture and Machine columns to conserve screen space.

This commit is contained in:
Dag-Erling Smørgrav 2003-10-10 23:25:43 +00:00
parent 7f59ff24d8
commit a39eb57a16

View File

@ -93,8 +93,7 @@ MAIN:{
<table border=\"1\" cellpadding=\"3\">
<tr>
<th>Architecture</th>
<th>Machine</th>
<th>Platform</th>
";
foreach my $branch (sort(keys(%BRANCHES))) {
print(" <th>$branch</th>\n");
@ -104,8 +103,7 @@ MAIN:{
foreach my $arch (sort(keys(%ARCHES))) {
foreach my $machine (sort(keys(%{$ARCHES{$arch}}))) {
my $html = " <tr>
<td>$arch</td>
<td>$machine</td>
<td>$arch/$machine</td>
";
foreach my $branch (sort(keys(%BRANCHES))) {
my $log = "tinderbox-$branch-$arch-$machine";