Move PARSED FILES section to the bottom. Minor cosmetic changes
authorDario Sestito <darios@symbian.org>
Tue, 11 May 2010 11:12:25 +0100
changeset 255 71dcc4963b58
parent 254 fde18ad07a01
child 256 788d181d70a4
Move PARSED FILES section to the bottom. Minor cosmetic changes
uh_parser/uh.pl
--- a/uh_parser/uh.pl	Mon May 10 14:23:00 2010 +0100
+++ b/uh_parser/uh.pl	Tue May 11 11:12:25 2010 +0100
@@ -243,15 +243,10 @@
 open(AGGREGATED, ">$aggregated_html");
 print AGGREGATED "RAPTOR BUILD SUMMARY<br/><br/>\n";
 
-my $allfilesstring = '';
-for my $raptorfile (sort {$a cmp $b} @logfiles) { $allfilesstring .= ", $raptorfile"; }
-$allfilesstring =~ s/^, //;
-print AGGREGATED "PARSED LOGS: $allfilesstring<br/>\n";
-
 my $allconfigsstring = '';
 for my $raptorconfig (sort {$a cmp $b} keys %{$allconfigs}) { $allconfigsstring .= ", $raptorconfig"; }
 $allconfigsstring =~ s/^, //;
-print AGGREGATED "BUILT CONFIGS: $allconfigsstring<br/><br/>\n";
+print AGGREGATED "BUILT CONFIGS:<br/>$allconfigsstring<br/>\n";
 
 print AGGREGATED "<br/>GENERAL FAILURES<br/>\n";
 print AGGREGATED "<table border='1'>\n";
@@ -311,6 +306,12 @@
 	}
 }
 print AGGREGATED "</table>\n";
+print AGGREGATED "<br/>\n";
+
+my $allfilesstring = '';
+for my $raptorfile (sort {$a cmp $b} @logfiles) { $allfilesstring .= "<br/>$raptorfile"; }
+print AGGREGATED "PARSED LOGS:$allfilesstring<br/>\n";
+
 close(AGGREGATED);
 
 translate_detail_files_to_html();