3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-23 18:54:05 +01:00

docs/technical: Add protocol modules inheritance graph

This commit is contained in:
James Lu 2016-07-12 00:28:13 -07:00
parent 256801c0b4
commit 0823fb2a1e
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
/* Graph showing inheritance with the current PyLink protocol protocols:
* Update using: dot -Tpng protocol-modules.dot > protocol-modules.png
*/
digraph G {
ratio = 0.8; /* make the graph wider than tall */
subgraph cluster_helper {
label="Protocol module helpers";
style="filled";
node [style="filled",color="white"];
color="lightblue";
"ircs2s_common.py" -> "ts6_common.py";
}
subgraph cluster_pluggable {
label="Pluggable (full) protocol modules";
style="filled";
node [style="filled",color="white"];
color="khaki";
"ircs2s_common.py" -> "nefarious.py";
"ts6_common.py" -> "ts6.py" -> "hybrid.py";
"ts6_common.py" -> "inspircd.py";
"ts6_common.py" -> "unreal.py)";
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB