diff -r a05c6f3cbc3e -r 801a8935caf7 analýza/princip.dot --- a/analýza/princip.dot Sat Apr 02 19:20:45 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"] - xml -> gen -> xhtml; + atom [label="Atom"] + rss [label="RSS"] + sitemap [label="sitemap.xml"] + + xml -> gen; xslt -> gen; + + gen -> xhtml; + gen -> atom; + gen -> rss; + gen -> sitemap; }