41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# $FreeBSD$
|
|
|
|
digraph src {
|
|
|
|
# Node definitions follow this example:
|
|
#
|
|
# foo [label="Foo Bar\nfoo@FreeBSD.org\n????/??/??"]
|
|
#
|
|
# ????/??/?? is the date when the commit bit was obtained, usually the one you
|
|
# can find looking at CVS logs for the access (or avail) file under CVSROOT.
|
|
#
|
|
# For returned commit bits, the node definition will follow this example:
|
|
#
|
|
# foo [label="Foo Bar\nfoo@FreeBSD.org\n????/??/??\n????/??/??"]
|
|
#
|
|
# The first date is the same as for an active committer, the second date is
|
|
# the date when the commit bit has been returned. Again, check CVS logs.
|
|
|
|
node [color=grey62, style=filled, bgcolor=black];
|
|
|
|
# Alumni go here.. Try to keep things sorted.
|
|
|
|
node [color=lightblue2, style=filled, bgcolor=black];
|
|
|
|
# Current src committers go here. Try to keep things sorted.
|
|
|
|
cperciva [label="Colin Percival\ncperciva@FreeBSD.org\n2004/01/20"]
|
|
dds [label="Diomidis Spinellis\ndds@FreeBSD.org\n2003/06/20"]
|
|
flz [label="Florent Thoumie\nflz@FreeBSD.org\n2006/03/30"]
|
|
schweikh [label="Jens Schweikhardt\nschweikh@FreeBSD.org\n????/??/??"]
|
|
|
|
# Here are the mentor/mentee relationships.
|
|
# Group together all the mentees for a particular mentor.
|
|
# Keep the list sorted by mentor login.
|
|
|
|
cperciva -> flz
|
|
|
|
schweikh -> dds
|
|
|
|
}
|