mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 02:20:51 +01:00
7c2fa96d86
Have a look at committers-ports.dot for a start. Simple command to generate the graph is: $ dot -T png -o file.png file.dot Dot can be installed via graphics/graphviz. Discussed on: -developers
21 lines
407 B
Plaintext
21 lines
407 B
Plaintext
# $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"]
|
|
flz [label="Florent Thoumie\nflz@FreeBSD.org\n2006/03/30"]
|
|
|
|
# Here are the mentor/mentee relationships.
|
|
|
|
cperciva -> flz
|
|
|
|
}
|