#
# The PlaQui Development Team
-my %hash, %users, %commits, $texto. $max;
+my %hash, %users, %commits, %lines_count, $texto. $max;
if (shift eq "-d") {
$texto = `svn log > ChangeLog`;
$hash{$datos[5]}++;
$users{$datos[5]}{$datos[3]}++;
$commits{$datos[3]}++;
+ $lines_count{$datos[3]} += $datos[13];
if ($hash{$datos[5]} > $max) {
$max = $hash{$datos[5]};
}
print "\n";
print "Cantidad de commits por usuario:\n";
foreach $user (sort keys %commits) {
- print "\t$user\t$commits{$user}\n";
+ print "\t$user\t$commits{$user}\t($lines_count{$user} lineas)\n";
}
print "\n";
print "( ) = Máximo/s Commiteador/es del Día | ";