analýza/princip.dot
author František Kučera <franta-hg@frantovo.cz>
Tue, 03 Sep 2019 23:28:46 +0200
branchv_0
changeset 136 025ec3d898c4
parent 87 25dec6931f18
permissions -rw-r--r--
mouse.globalcode.info – website skeleton

digraph princip {
	rankdir=LR
	
	gen		[label="Generátor\n(Ant: build.xml)" shape="box"]
	xml		[label="Texty v XML"]
	xhtml	[label="XHTML web"]
	xslt	[label="XSLT šablony"]
	
	atom	[label="Atom"]
	rss		[label="RSS"]
	sitemap	[label="sitemap.xml"]
	
	xml -> gen;
	xslt -> gen;
	
	gen -> xhtml;
	gen -> atom;
	gen -> rss;
	gen -> sitemap;
}