| digraph { |
| // Graph properties |
| bgcolor=transparent |
| |
| graph [ranksep="0.25", nodesep="0.25"]; |
| |
| // Nodes that define the key points in the process |
| node [shape=box;style=filled;fillcolor=white;fontsize=12] |
| proposal [label="Proposal", group=g1] |
| incubation [label="Incubation", group=g1] |
| mature [label="Mature", group=g1] |
| archived [label="Archived"] |
| |
| proposal -> incubation [label="Creation Review"] |
| incubation -> mature [label="Graduation Review"] |
| incubation:nw -> incubation:w [label="Release Review"] |
| mature:nw -> mature:w [label="Release Review"] |
| incubation -> archived [label="Termination Review"] |
| mature -> archived [label="Termination Review"] |
| } |