[BACK]Return to developers.pl CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfsmisc

File: [Development] / xfs-cmds / xfsmisc / Attic / developers.pl (download)

Revision 1.2, Fri Nov 12 13:40:00 2004 UTC (12 years, 11 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.1: +1 -0 lines

Add John to the list.
Merge of xfs-cmds-melb:slinx:20133a 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',
	'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;