Changeset 4282 for trunk/tools/api-browser/build.xml
- Timestamp:
- 12/20/07 18:42:50 (1 year ago)
- Files:
-
- 1 modified
-
trunk/tools/api-browser/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/api-browser/build.xml
r4208 r4282 41 41 42 42 <target name="transform" description="Transform XML via XSL to HTML"> 43 <delete file="index.html" /> 44 <delete file="validation.html" /> 45 <delete file="ui.html" /> 46 <delete file="plugins.html" /> 47 <xslt includes="index.xml,validation.xml,ui.xml,plugins.xml" destdir="." style="style.xsl" /> 43 <delete dir="output" /> 44 <mkdir dir="output" /> 45 <xslt includes="*.xml" excludes="build.xml" destdir="output" style="style.xsl" /> 48 46 </target> 49 47
