analýza/princip.dot
author František Kučera <franta-hg@frantovo.cz>
Sun, 03 Apr 2011 16:34:42 +0200
changeset 6 801a8935caf7
parent 1 a05c6f3cbc3e
child 87 25dec6931f18
permissions -rw-r--r--
Java funkce pro zjištění poslední úpravy souboru, Atom agregace, konfigurační soubor webu.

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