My lazy header ...

AntDoc
Target antdoc.antdoc

antdoc.antdoc
  |
  +--init

Tests the Ant AntDoc task.

Generates the HTML stuff in the ${TEMPORARY_ROOT_DIRECTORY_PATH}/antdoc directory.

Detail:
<target
	depends="init"
	description="Tests the Ant AntDoc task."
	name="antdoc.antdoc"
>
	<property
		name="TITLE_TEXT"
		value="My Ant scripts documentation"
	/>

	<property
		name="HEADER_TEXT"
		value="My header text"
	/>

	<property
		name="FOOTER_TEXT"
		value="Footer"
	/>

	<delete dir="${TEMPORARY_ROOT_DIRECTORY_PATH}/antdoc"/>

	<echo level="info">The documentation will be generated in '${TEMPORARY_ROOT_DIRECTORY_PATH}/antdoc'</echo>

	<taskdef
		classname="${ED_PACKAGE}.ant.AntDoc"
		name="AntDoc"
	/>

	<AntDoc
		antURL="file:/${ant.home}/docs"
		css="${WEBSITE_CSS_FILE_PATH}"
		destination="${TEMPORARY_ROOT_DIRECTORY_PATH}/antdoc"
		runtime="no"
		welcome="${JAVA_SOURCE_DIRECTORY_PATH}/${ED_PACKAGE_PATH}/ant/AntDocTask.html"
	>
		<--filter>
                        				<include name="^antdoc."/>
                        				<include name="^usage"/>
                        				<include name="dummy"/>
                        				<include name="init"/>
                        				<exclude name="antdoc.antdoc.out"/>
                        			</filter-->

		<title>${TITLE_TEXT}</title>

		<header>${HEADER_TEXT}</header>

		<footer>${FOOTER_TEXT}</footer>

		<fileset dir=".">
			<include name="*build.xml"/>

			<include name="src/batch/AntDocGUI_build.xml"/>
		</fileset>

		<fileset dir="..">
			<include name="ant/build.xml"/>

			<include name="EDoclet/build.xml"/>

			<include name="J2ME/build.xml"/>

			<include name="Netorial/build.xml"/>

			<include name="web/build.xml"/>

			<include name="WedSitor/build.xml"/>

			<include name="Winterthur/build.xml"/>

			<include name="XPS/build.xml"/>
		</fileset>

		<--fileset dir="F:\win32app\Programming\crimson-1.1.3">
                        				<include name="build.xml"/>
                        			</fileset-->
	</AntDoc>

	<fixcrlf srcdir="${TEMPORARY_ROOT_DIRECTORY_PATH}/antdoc">
		<include name="**/*.html"/>
	</fixcrlf>
</target>

... is just like my footer!

Edouard Mercier 2003.12.08 20:31:08 - AntDoc V0.8h - XSL Transformer Factory: com.icl.saxon.TransformerFactoryImpl