build.xml
author František Kučera <franta-hg@frantovo.cz>
Sun, 03 Apr 2011 16:51:06 +0200
changeset 7 5b46493979c9
parent 6 801a8935caf7
child 8 ad0ee12d13fd
permissions -rw-r--r--
Atom – zjednodušení, #2

<project name="xhtml-web" basedir="." default="generuj">

	<!-- Používané adresáře – např. zde můžete vstup a výstup nasměrovat do jiného verzovaného úložiště -->
	<property name="vstup" value="vstup"/>
	<property name="výstup" value="výstup"/>
	<property name="šablona" value="šablona"/>
	<property name="temp" value="temp"/>
	<property name="funkce" value="${šablona}/funkce/build/classes"/>
	
	<target	name="generuj" description="Vygeneruje kompletní web." depends="kompiluj-funkce,stránky,agregace">
	</target>
	
	<target name="stránky" description="Vygeneruje XHTML webové stránky.">		
		<xslt basedir="${vstup}" destdir="${výstup}" includes="*.xml" extension=".xhtml" style="${šablona}/stránka.xsl">
			<classpath location="/usr/share/java/saxonb-9.0.jar"/>
			<classpath location="${funkce}"/>
			<factory name="net.sf.saxon.TransformerFactoryImpl">
				<attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/>				
			</factory>
		</xslt>
	</target>
	
	<target name="agregace" description="Vytvoří agregované výstupy: RSS, Atom, Sitemap.xml">
		<!-- Atom -->
		<xslt in="${vstup}/web.conf" out="${výstup}/atom.xml" style="${šablona}/atom.xsl">
			<classpath location="/usr/share/java/saxonb-9.0.jar"/>
			<classpath location="${funkce}"/>			
			<factory name="net.sf.saxon.TransformerFactoryImpl">
				<attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/>				
			</factory>
		</xslt>
		
	</target>
	
	<target name="kompiluj-funkce" description="">		
		<mkdir dir="${funkce}"/>
		<javac
			srcdir="${šablona}/funkce/src"
			destdir="${funkce}"			
			includeAntRuntime="no">
		</javac>
	</target>
	
</project>