annotate example/process.gv.txt @ 3:1a267297f779

graphviz now works, giving real version
author k0s <k0scist@gmail.com>
date Thu, 14 Jan 2010 00:16:34 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
1 digraph g {
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
2 start -> types;
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
3 start [label="new project"];
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
4 types [label="pastescript template"];
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
5 types -> templates [dir=none];
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
6 templates [
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
7 label="webob_view|genshi_view|console_script"
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
8 shape="record"];
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
9 types -> development;
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
10 development -> types;
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
11 development -> integration;
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
12 integration [label="integration with website + middleware"];
1a267297f779 graphviz now works, giving real version
k0s <k0scist@gmail.com>
parents:
diff changeset
13 };