<project name="Style test" default="transform" basedir=".">

  <!-- set global properties for this build -->
  <property name="src" value="."/>
  <property name="build" value="."/>
  <property name="dist"  value="Z:\public_html\cours"/>


  <target name="transform">
    <style basedir="${src}" destdir="${build}"
    		processor="xalan"
		extension="html" style="${src}/rdf2index.xsl" in="index.rdf">
    <fileset dir="${src}" >
      <exclude name="**/*.xml"/>
    </fileset>
	<!--
	No param for the moment
	<param name="date" expression="'07-01-2000'"/>
	-->
   	</style>
  </target>
  
</project>

