integrating documentation into demo files, first draft; run Ant targets docs-download and docs-process to generate the files

This commit is contained in:
Jörn Zaefferer 2009-01-08 21:53:08 +00:00
parent 06054c06f6
commit e9d2650278

View File

@ -233,8 +233,7 @@
<get src="${url}Tabs" dest="tabs.xml" />
</target>
<!--depends="download-docs"-->
<target name="docs-process" >
<target name="docs-process" depends="docs-download">
<property name="docs.dir" value="${ui.dir}/documentation" />
<delete dir="${docs.dir}" />
<mkdir dir="${docs.dir}" />
@ -242,7 +241,9 @@
</target>
<target name="docs-clean">
<delete file="*.xml" exclude="build.xml" />
<delete>
<fileset file="*.xml" excludes="build.xml" />
</delete>
</target>
</project>