Lines 719-728
for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) {
Link Here
|
719 |
my @people = map { |
719 |
my @people = map { |
720 |
{ name => $_, ( $contributors->{$_} ? %{ $contributors->{$_} } : () ) } |
720 |
{ name => $_, ( $contributors->{$_} ? %{ $contributors->{$_} } : () ) } |
721 |
} sort { |
721 |
} sort { |
722 |
my ($alast) = ( split( /\s/, $a ) )[-1]; |
722 |
my ($alast) = $a =~ /(\S+)$/; |
723 |
my ($blast) = ( split( /\s/, $b ) )[-1]; |
723 |
my ($blast) = $b =~ /(\S+)$/; |
724 |
lc($alast) cmp lc($blast) |
724 |
my $cmp = lc($alast||"") cmp lc($blast||""); |
725 |
} keys %{$contributors}; |
725 |
return $cmp if $cmp; |
|
|
726 |
|
727 |
my ($a2last) = $a =~ /(\S+)\s\S+$/; |
728 |
my ($b2last) = $b =~ /(\S+)\s\S+$/; |
729 |
lc($a2last||"") cmp lc($b2last||""); |
730 |
} keys %$contributors; |
726 |
|
731 |
|
727 |
$template->param( contributors => \@people ); |
732 |
$template->param( contributors => \@people ); |
728 |
$template->param( maintenance_team => $teams->{team}->{$dev_team} ); |
733 |
$template->param( maintenance_team => $teams->{team}->{$dev_team} ); |
729 |
- |
|
|