diff -r b59a964f37ef -r fde18ad07a01 uh_parser/uh.pl --- a/uh_parser/uh.pl Mon May 10 12:03:05 2010 +0100 +++ b/uh_parser/uh.pl Mon May 10 14:23:00 2010 +0100 @@ -105,6 +105,7 @@ $saxhandler->add_observer('releaseables', $releaseables::reset_status); our $allbldinfs = {}; +our $allconfigs = {}; my $parser = XML::SAX::ParserFactory->parser(Handler=>$saxhandler); for (@logfiles) @@ -240,7 +241,17 @@ # PRINT HTML SUMMARY my $aggregated_html = "$outputdir/index.html"; open(AGGREGATED, ">$aggregated_html"); -print AGGREGATED "RAPTOR BUILD SUMMARY
\n"; +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 "
GENERAL FAILURES
\n"; print AGGREGATED "\n";