Lines 681-686
my $contributors =
Link Here
|
681 |
-e "$docdir" . "/contributors.yaml" |
681 |
-e "$docdir" . "/contributors.yaml" |
682 |
? YAML::XS::LoadFile( "$docdir" . "/contributors.yaml" ) |
682 |
? YAML::XS::LoadFile( "$docdir" . "/contributors.yaml" ) |
683 |
: {}; |
683 |
: {}; |
|
|
684 |
delete $contributors->{_others_}; |
684 |
for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) { |
685 |
for my $version ( sort { $a <=> $b } keys %{$teams->{team}} ) { |
685 |
for my $role ( keys %{ $teams->{team}->{$version} } ) { |
686 |
for my $role ( keys %{ $teams->{team}->{$version} } ) { |
686 |
my $normalized_role = "$role"; |
687 |
my $normalized_role = "$role"; |
687 |
- |
|
|