Changeset 838
- Timestamp:
- 09/08/06 20:20:31 (2 years ago)
- Files:
-
- trunk/build-docs.xml (modified) (4 diffs)
- trunk/build.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build-docs.xml
r835 r838 16 16 <sequential> 17 17 18 <java classname="org.apache.xalan.xslt.Process" fork="true" failonerror="true" >18 <java classname="org.apache.xalan.xslt.Process" fork="true" failonerror="true" output="build/docbook.log" append="true"> 19 19 <jvmarg line="-Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeParserConfiguration" /> 20 20 <jvmarg … … 351 351 </fileset> 352 352 </copy> 353 <tidy dest="dist/docs" failonerror="false"> 354 <filesets> 353 <!-- too verbose <tidy dest="dist/docs" failonerror="false"> 354 <filesets> --> 355 <copy todir="dist/docs"> 355 356 <fileset dir="build/docs"> 356 357 <include name="userguide/*.html" /> 357 358 <include name="api/**/*.html" /> 358 359 </fileset> 359 </filesets> 360 </tidy> 360 </copy> 361 <!-- </filesets> 362 </tidy> --> 361 363 362 364 <!-- TODO find a better way --> … … 390 392 <element name="filesets" optional="false" /> 391 393 <sequential> 392 <apply executable="tidy" dest="@{dest}" failonerror="@{failonerror}" error="build/tidy.log">393 <arg line="-quiet -@{encoding} -wrap 100 -errors" />394 <apply executable="tidy" dest="@{dest}" failonerror="@{failonerror}" output="build/tidy.log" append="true"> 395 <arg line="-quiet -@{encoding} -wrap 100" /> 394 396 <arg value="-o" /> 395 397 <targetfile /> … … 406 408 <element name="filesets" optional="false" /> 407 409 <sequential> 408 <apply executable="tidy" dest="@{dest}" failonerror="@{failonerror}" error="build/tidy.log">410 <apply executable="tidy" dest="@{dest}" failonerror="@{failonerror}" output="build/tidy.log" append="true"> 409 411 <arg line="-xml -quiet -utf8 -wrap 100 -indent -errors" /> 410 412 <arg value="-o" /> trunk/build.xml
r828 r838 390 390 </target> 391 391 392 <target name="export.tar" depends="export.tar.bin, export.tar.sources" description="Packages binaries and sources distributions"/>392 <target name="export.tar" depends="export.tar.bin, export.tar.sources" description="Packages binaries and sources distributions"/> 393 393 394 394 <target name="export.win32" depends="dist.win32"> … … 398 398 </path> 399 399 </pathconvert> 400 <exec executable="makensis" failonerror="true" >400 <exec executable="makensis" failonerror="true" output="build/nsis.log" append="true"> 401 401 <arg value="-V4" /> 402 402 <arg value="-NOCD" />
