Difference between revisions of "Tmass diagram"
From Ghoulwiki
Ghoulsblade (talk | contribs) |
Ghoulsblade (talk | contribs) |
||
| Line 1: | Line 1: | ||
| − | |||
<graph> | <graph> | ||
digraph G { | digraph G { | ||
| Line 26: | Line 25: | ||
license -> repository [label="*"]; | license -> repository [label="*"]; | ||
| + | |||
| + | } | ||
| + | </graph> | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | <graph> | ||
| + | digraph G { | ||
| + | |||
| + | this -> is -> simpler | ||
} | } | ||
</graph> | </graph> | ||
Latest revision as of 01:09, 26 November 2007
digraph G {
artitem [shape="box"];
repository [shape="box"];
svnuser [shape="box"];
tag [shape="box"];
artist [shape="box"];
license [shape="box"];
artitem -> artist [label="0-1"];
artitem -> repository [label="1"];
artitem -> svnuser [label="0-1"];
artitem -> tag [label="*"];
repository -> license [label="*"];
repository -> svnuser [label="*"];
svnuser -> repository [label="1"];
svnuser -> artitem [label="*"];
tag -> artitem [label="*"];
artist -> artitem [label="*"];
license -> repository [label="*"];
}
digraph G {
this -> is -> simpler
}