analýza/princip.dot
author František Kučera <franta-hg@frantovo.cz>
Fri, 11 Jan 2019 23:08:47 +0100
branchv_0
changeset 234 2fc56dd7f003
parent 87 25dec6931f18
permissions -rw-r--r--
examples: update XML example (namespace, metadata) and move it to a separate file

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;
}