# HG changeset patch # User Dario Sestito # Date 1273572745 -3600 # Node ID 71dcc4963b58561b28e4b6bc807d201404f17d5f # Parent fde18ad07a01823c288a76956abbaaa33aa38d1a Move PARSED FILES section to the bottom. Minor cosmetic changes diff -r fde18ad07a01 -r 71dcc4963b58 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

\n"; -my $allfilesstring = ''; -for my $raptorfile (sort {$a cmp $b} @logfiles) { $allfilesstring .= ", $raptorfile"; } -$allfilesstring =~ s/^, //; -print AGGREGATED "PARSED LOGS: $allfilesstring
\n"; - my $allconfigsstring = ''; for my $raptorconfig (sort {$a cmp $b} keys %{$allconfigs}) { $allconfigsstring .= ", $raptorconfig"; } $allconfigsstring =~ s/^, //; -print AGGREGATED "BUILT CONFIGS: $allconfigsstring

\n"; +print AGGREGATED "BUILT CONFIGS:
$allconfigsstring
\n"; print AGGREGATED "
GENERAL FAILURES
\n"; print AGGREGATED "\n"; @@ -311,6 +306,12 @@ } } print AGGREGATED "
\n"; +print AGGREGATED "
\n"; + +my $allfilesstring = ''; +for my $raptorfile (sort {$a cmp $b} @logfiles) { $allfilesstring .= "
$raptorfile"; } +print AGGREGATED "PARSED LOGS:$allfilesstring
\n"; + close(AGGREGATED); translate_detail_files_to_html();