| 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;group=g1] |
| |
| start [label="Project Team elects\nyou as a committer"; style="filled,bold"]; |
| iwgpa [label=<<b>You</b> sign<br/>the IWGPA>]; |
| consent_and_iwgpa [label=<Your <b>Employer</b> signs the<br/>Consent Agreement and<br/><b>You</b> sign the IWGPA>]; |
| final [label="Congratulations,\nyou're a Committer"; style="rounded,filled,bold"]; |
| |
| node [shape=diamond;style=filled;fillcolor=white;fontsize=10;group=g1]; |
| |
| is_self_employed [label="Are you a student,\nself-employed,\nor unemployed?"]; |
| is_member [label="Is your employer\na member of the\nEclipse Foundation?"]; |
| is_participant [label="Is your employer\na participant in\nthe working group?"]; |
| |
| start -> is_self_employed; |
| is_self_employed -> is_member [label="No"]; |
| is_self_employed -> iwgpa [label="Yes"]; |
| iwgpa -> final; |
| |
| is_member -> is_participant [label="Yes"]; |
| is_member -> consent_and_iwgpa [label="No"]; |
| |
| is_participant -> final [label="Yes"]; |
| is_participant -> consent_and_iwgpa [label="No"]; |
| |
| consent_and_iwgpa -> final; |
| } |