Difference between revisions of "Architecture for the export journal in dot"

From Dreamwidth Notes
Jump to: navigation, search
(this file is in the DOT graph language.)
 
Line 1: Line 1:
 +
<pre>
 
digraph {
 
digraph {
  
Line 35: Line 36:
  
 
}
 
}
 +
</pre>

Revision as of 17:32, 10 December 2009

digraph {

Human->"Exporter Interface"

subgraph clusterdata_flow
{
    "Journal Database"->Filter
	Filter->Reformatter
	Reformatter->"LaTex Generator"
	"LaTex Generator"->LaTex
	LaTex->Outputter
}

subgraph clustercontrol_flow
{
	"Exporter Interface"->"Asynch Job"
	"Asynch Job"->Controller
	Controller->"Journal Database"
	Controller->Filter
	Controller->Reformatter
	Controller->"LaTex Generator"
	Controller->LaTex
	Controller->Outputter
}

subgraph clusterancillary_utilities
{
	Outputter->"DW Mail"
	Outputter->Email
	"Asynch Job"->"Export Q"
	"Export Q"->"Exporter Interface"
	"LaTex Generator"->"Picture Reformatter"

}

}