blob: d3753850b956837e1179e02f817ffffe924e4529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $FreeBSD$
digraph src {
node [color=grey62, style=filled, bgcolor=black];
# Alumni go here.
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"]
# Here are the mentor/mentee relationships.
cperciva -> flz
schweikh -> dds
}
|