view example/process.gv.txt @ 7:68643e72c749

use abstract base class for transformers so that behaviour can be streamlined
author k0s <k0scist@gmail.com>
date Wed, 03 Feb 2010 17:56:24 -0500
parents 1a267297f779
children
line wrap: on
line source

digraph g {
start -> types;
start [label="new project"];
types [label="pastescript template"];
types -> templates [dir=none];
templates [
          label="webob_view|genshi_view|console_script"
          shape="record"];
types -> development;
development -> types;
development -> integration;
integration [label="integration with website + middleware"];
};