Skip to content

Instantly share code, notes, and snippets.

@robertpfeiffer
Created November 3, 2009 15:10
Show Gist options
  • Save robertpfeiffer/225105 to your computer and use it in GitHub Desktop.
Save robertpfeiffer/225105 to your computer and use it in GitHub Desktop.
digraph Features {
subgraph cluster_0 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
invoice ->accounting;
accounts -> leads;
humanresources -> leads;
humanresources -> salesorder;
salesorder -> invoice;
products -> salesorder;
procurement -> accounting;
accounting -> humanresources;
label = "Business Processes";
}
subgraph cluster_1 {
style=filled;
color=lightblue;
node [style=filled,color=white];
security -> search;
reporting -> controlling;
security -> reporting;
security -> interfaces;
label = "Meta";
}
accounting -> interfaces;
accounting -> controlling;
accounts -> salesorder;
humanresources -> security;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment