/* $Id: issue.dot,v 1.2 2000/02/16 20:57:42 connolly Exp $ */ digraph Issue { start -> changeRequestOutstanding [ label="R request"] ; changeRequestOutstanding -> changeAccepted [ label="E accept" ]; changeRequestOutstanding -> dissentOutstanding [ label="E escalate" ]; changeRequestOutstanding -> changeDeclined [ label="E decline" ]; changeDeclined -> changeRequestOutstanding [ label="R appeal" ]; changeDeclined -> requestWithdrawn [ label="R withdraw" ]; changeDeclined -> requestWithdrawn [ style=dotted, label="R timeout" ]; changeAccepted -> changeRequestOutstanding [ label="R clarify" ]; changeAccepted -> changeVerified [ label="R verify" ]; changeAccepted -> changeVerified [ label="R timeout", style=dotted ]; dissentOutstanding [ shape=box, color=red]; requestWithdrawn [ shape=box, color=green ]; changeVerified [ shape=box, color=yellow ]; }