analýza/princip.dot
changeset 6 801a8935caf7
parent 1 a05c6f3cbc3e
child 87 25dec6931f18
--- a/analýza/princip.dot	Sun Apr 03 02:39:06 2011 +0200
+++ b/analýza/princip.dot	Sun Apr 03 16:34:42 2011 +0200
@@ -1,11 +1,20 @@
 digraph princip {
     rankdir=LR
 
-    gen		[label="Generátor" shape="box" labelURL="xxxxxxxx"]
+    gen		[label="Generátor\n(Ant: build.xml)" shape="box"]
     xml		[label="Texty v XML"]
     xhtml	[label="XHTML web"]
-    xslt	[label="XSLT šablona"]
+    xslt	[label="XSLT šablony"]
+
+    atom	[label="Atom"]
+    rss		[label="RSS"]
+    sitemap	[label="sitemap.xml"]
 
-    xml -> gen -> xhtml;
+    xml -> gen;
     xslt -> gen;
+
+    gen -> xhtml;
+    gen -> atom;
+    gen -> rss;
+    gen -> sitemap;
 }