Add stub files to keep track of the mentor/mentee relationships.

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
This commit is contained in:
Florent Thoumie 2007-03-30 16:56:38 +00:00
parent 735e7a1ab2
commit 7c2fa96d86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168054
4 changed files with 64 additions and 1 deletions

View File

@ -1,7 +1,8 @@
# From: @(#)Makefile 8.1 (Berkeley) 6/8/93
# $FreeBSD$
FILES= ascii birthtoken bsd-family-tree eqnchar flowers init.ee \
FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
committers-src.dot eqnchar flowers init.ee \
iso3166 iso639 latin1 man.template mdoc.template operator pci_vendors \
scsi_modes usb_hid_usages
NO_OBJ=

View File

@ -0,0 +1,15 @@
# $FreeBSD$
digraph doc {
node [color=grey62, style=filled, bgcolor=black];
# Alumni go here.
node [color=lightblue2, style=filled, bgcolor=black];
# Current doc committers go here. Try to keep things sorted.
# Here are the mentor/mentee relationships.
}

View File

@ -0,0 +1,27 @@
# $FreeBSD$
digraph ports {
node [color=grey62, style=filled, bgcolor=black];
# Alumni go here.
node [color=lightblue2, style=filled, bgcolor=black];
# Current ports committers go here. Try to keep things sorted.
flz [label="Florent Thoumie\nflz@FreeBSD.org\n2005/03/01"]
garga [label="Renato Botelho\ngarga@FreeBSD.org\n2005/07/11"]
johans [label="Johan Selst\njohans@FreeBSD.org\n2006/04/01"]
laszlof [label="Frank Laszlo\nlaszlof@FreeBSD.org\n2006/11/07"]
pav [label="Pav Lucistnik\npav@FreeBSD.org\n2003/11/12"]
# Here are the mentor/mentee relationships.
flz -> garga
flz -> johans
flz -> laszlof
pav -> flz
}

View File

@ -0,0 +1,20 @@
# $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
}