File: [Development] / xfs-cmds / xfsmisc / Attic / developers.pl (download)
Revision 1.3, Wed Mar 2 02:46:34 2005 UTC (12 years, 7 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.2: +1 -0
lines
Add Greg to list of folks checking in, for patch generation purposes.
Merge of master-melb:xfs-cmds:21685a by kenmcd.
|
package developers;
use strict;
# Username to real name mapping for people who are to blame^W^W
# checking XFS mods into the xfs-kern/xfs-cmds/dmapi ptools trees.
my %names = (
'arunr', 'Arun Ramakrishnan',
'alkirkco', 'Mandy Kirkconnell',
'cattelan', 'Russell Cattelan',
'dgc', 'David Chinner',
'felixb', 'Felix Blyakher',
'gnb', 'Greg Banks',
'gwehrman', 'Geoffrey Wehrman',
'hch', 'Christoph Hellwig',
'jpk', 'John Keller',
'kfr', 'Kevan Rehm',
'nathans', 'Nathan Scott',
'nstraz', 'Nate Straz',
'overby', 'Glen Overby',
'roehrich', 'Dean Roehrich',
'sandeen', 'Eric Sandeen',
'tes', 'Tim Shimmin',
'wkendall', 'Bill Kendall',
);
sub developer {
my $email = shift @_;
if (!defined($names{$email})) {
die "unknown developer: $email";
}
$names{$email} . ' <' . $email . '@sgi.com>';
}
1;