[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.1, Fri Oct 22 00:52:19 2004 UTC (13 years ago) by nathans
Branch: MAIN

Add scripts for making bk changesets and suse patches from ptools mods.

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',
	'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;