[llvm-commits] CVS: llvm-test/GenerateReport.pl
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Wed Apr 27 13:12:43 PDT 2005
Changes in directory llvm-test:
GenerateReport.pl updated: 1.26 -> 1.27
---
Log message:
Cut 60-70% off of the file size of the html files.
---
Diffs of the changes: (+5 -5)
GenerateReport.pl | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm-test/GenerateReport.pl
diff -u llvm-test/GenerateReport.pl:1.26 llvm-test/GenerateReport.pl:1.27
--- llvm-test/GenerateReport.pl:1.26 Sat Mar 26 18:37:59 2005
+++ llvm-test/GenerateReport.pl Wed Apr 27 15:12:30 2005
@@ -209,19 +209,19 @@
}; "";
}
sub printLine {
- print "<td bgcolor='" . ($_[0] ? "#DDDDDD" : "#AAAAAA") . "' width=1>\n";
+# print "<td bgcolor='" . ($_[0] ? "#DDDDDD" : "#AAAAAA") . "' width=1>\n";
}
print "<table border='0' cellspacing='0' cellpadding='0'>\n";
print "<tr bgcolor=#FFCC99>\n";
map {
- print "<td bgcolor='#DDAA77' width='1'></td>";
+ #print "<td bgcolor='#DDAA77' width='1'></td>";
$_ = "<center><b><a href=\"#$_\">$_</a></b></center>"
if $_ ne "|"; printCell $_
} @Header;
- print "<td bgcolor='#DDAA77' width='1'></td>";
- print "\n</tr><tr bgcolor='black'>";
- print "<td height=1></td>" x (2*@Header+1);
+ #print "<td bgcolor='#DDAA77' width='1'></td>";
+ print "\n</tr><tr bgcolor='black' height=1>";
+ #print "<td height=1></td>" x (2*@Header+1);
print "</tr>\n";
my $RowCount = 0;
foreach $Row (@Values) {
More information about the llvm-commits
mailing list