root/analýza/princip.dot @ 6:801a8935caf7

Revision 6:801a8935caf7, 378 bytes (checked in by František Kučera <franta-hg@…>, 13 years ago)

Java funkce pro zjištění poslední úpravy souboru, Atom agregace, konfigurační soubor webu.

RevLine 
[1]1digraph princip {
2    rankdir=LR
3
[6]4    gen         [label="Generátor\n(Ant: build.xml)" shape="box"]
[1]5    xml         [label="Texty v XML"]
6    xhtml       [label="XHTML web"]
[6]7    xslt        [label="XSLT šablony"]
[1]8
[6]9    atom        [label="Atom"]
10    rss         [label="RSS"]
11    sitemap     [label="sitemap.xml"]
12
13    xml -> gen;
[1]14    xslt -> gen;
[6]15
16    gen -> xhtml;
17    gen -> atom;
18    gen -> rss;
19    gen -> sitemap;
[1]20}
Note: See TracBrowser for help on using the browser.