1 | <project name="xhtml-web" basedir="." default="generuj"> |
---|
2 | |
---|
3 | <!-- Používané adresáře – např. zde můžete vstup a výstup nasměrovat do jiného verzovaného úložiště --> |
---|
4 | <property name="vstup" value="vstup"/> |
---|
5 | <property name="výstup" value="výstup"/> |
---|
6 | <property name="šablona" value="šablona"/> |
---|
7 | <property name="temp" value="temp"/> |
---|
8 | <property name="funkce" value="${šablona}/funkce/build/classes"/> |
---|
9 | |
---|
10 | <property name="vstupníPřípona" value=".xml"/> |
---|
11 | <property name="výstupníPřípona" value=".xhtml"/> |
---|
12 | |
---|
13 | <target name="generuj" description="Vygeneruje kompletní web." depends="kompiluj-funkce,stránky,agregace"> |
---|
14 | </target> |
---|
15 | |
---|
16 | <target name="stránky" description="Vygeneruje samotné XHTML webové stránky." depends="statický-obsah"> |
---|
17 | <xslt basedir="${vstup}" destdir="${výstup}" includes="*${vstupníPřípona}" extension="${výstupníPřípona}" style="${šablona}/stránka.xsl"> |
---|
18 | <param name="konfigurák" expression="../${vstup}/"/> |
---|
19 | <param name="podporaZaostalýchProhlížečů" expression="false"/> |
---|
20 | <param name="vstupníPřípona" expression="${vstupníPřípona}"/> |
---|
21 | <param name="výstupníPřípona" expression="${výstupníPřípona}"/> |
---|
22 | <classpath location="/usr/share/java/saxonb-9.0.jar"/> |
---|
23 | <classpath location="${funkce}"/> |
---|
24 | <factory name="net.sf.saxon.TransformerFactoryImpl"> |
---|
25 | <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> |
---|
26 | </factory> |
---|
27 | </xslt> |
---|
28 | </target> |
---|
29 | |
---|
30 | <target name="agregace" description="Vytvoří agregované výstupy: RSS, Atom, Sitemap.xml."> |
---|
31 | <!-- TODO: sloučit, zjednodušit, parametrizovat --> |
---|
32 | |
---|
33 | <!-- Atom --> |
---|
34 | <xslt in="${vstup}/web.conf" out="${výstup}/atom.xml" style="${šablona}/atom.xsl"> |
---|
35 | <param name="vstupníPřípona" expression="${vstupníPřípona}"/> |
---|
36 | <param name="výstupníPřípona" expression="${výstupníPřípona}"/> |
---|
37 | <classpath location="/usr/share/java/saxonb-9.0.jar"/> |
---|
38 | <classpath location="${funkce}"/> |
---|
39 | <factory name="net.sf.saxon.TransformerFactoryImpl"> |
---|
40 | <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> |
---|
41 | </factory> |
---|
42 | </xslt> |
---|
43 | |
---|
44 | <!-- RSS --> |
---|
45 | <xslt in="${výstup}/atom.xml" out="${výstup}/rss.xml" style="${šablona}/rss.xsl"> |
---|
46 | <classpath location="/usr/share/java/saxonb-9.0.jar"/> |
---|
47 | <classpath location="${funkce}"/> |
---|
48 | <factory name="net.sf.saxon.TransformerFactoryImpl"> |
---|
49 | <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> |
---|
50 | </factory> |
---|
51 | </xslt> |
---|
52 | |
---|
53 | <!-- Sitemap.xml --> |
---|
54 | <xslt in="${výstup}/atom.xml" out="${výstup}/sitemap.xml" style="${šablona}/sitemap.xsl"> |
---|
55 | <classpath location="/usr/share/java/saxonb-9.0.jar"/> |
---|
56 | <classpath location="${funkce}"/> |
---|
57 | <factory name="net.sf.saxon.TransformerFactoryImpl"> |
---|
58 | <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> |
---|
59 | </factory> |
---|
60 | </xslt> |
---|
61 | |
---|
62 | </target> |
---|
63 | |
---|
64 | <target name="kompiluj-funkce" description="Přeloží funkce napsané v Javě."> |
---|
65 | <mkdir dir="${funkce}"/> |
---|
66 | <javac |
---|
67 | srcdir="${šablona}/funkce/src" |
---|
68 | destdir="${funkce}" |
---|
69 | includeAntRuntime="no"> |
---|
70 | </javac> |
---|
71 | </target> |
---|
72 | |
---|
73 | <target name="statický-obsah" description="Kopíruje JS, CSS, obrázky atd."> |
---|
74 | <copy todir="${výstup}"> |
---|
75 | <fileset dir="${vstup}" excludes="*.xml,*.inc,web.conf"/> |
---|
76 | </copy> |
---|
77 | </target> |
---|
78 | |
---|
79 | <target name="čisti" description="Smaže vygenerovaný obsah."> |
---|
80 | <delete includeemptydirs="true"> |
---|
81 | <fileset dir="${výstup}" includes="**/*"/> |
---|
82 | <fileset dir="${funkce}" includes="**/*"/> |
---|
83 | </delete> |
---|
84 | </target> |
---|
85 | |
---|
86 | </project> |
---|