Author: markt
Date: Sat Mar 17 14:11:13 2007
New Revision: 519443
URL: http://svn.apache.org/viewvc?view=rev&rev=519443
Log:
Further tweak to 1.3/1.4 build process to add back some missing help files.
Modified:
tomcat/container/branches/tc4.1.x/webapps/manager/build.xml
Modified: tomcat/container/branches/tc4.1.x/webapps/manager/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/container/branches/tc4.1.x/webapps/manager/build.xml?view=diff&rev=519443&r1=519442&r2=519443
==============================================================================
--- tomcat/container/branches/tc4.1.x/webapps/manager/build.xml (original)
+++ tomcat/container/branches/tc4.1.x/webapps/manager/build.xml Sat Mar 17
14:11:13 2007
@@ -15,6 +15,7 @@
<property name="webapps.dist" value="../dist"/>
<property name="webapp.name" value="manager"/>
+ <available property="jdk.1.4.present" classname="java.nio.Buffer" />
<!-- =================== BUILD: Create Directories ====================== -->
<target name="build-prepare">
@@ -35,8 +36,23 @@
</target>
+ <!-- ================ BUILD: Create help files ========================== -->
+ <target name="build-help" depends="build-prepare" if="jdk.1.4.present">
+ <style basedir="../tomcat-docs"
+ destdir="${webapps.build}/${webapp.name}"
+ extension=".html"
+ style="tomcat-docs.xsl"
+ excludes="build.xml project.xml"
+ includes="manager-howto.xml,html-manager-howto.xml">
+ <param name="relative-path" expression="."/>
+ <param name="project-menu" expression="nomenu"/>
+ <param name="standalone" expression="standalone"/>
+ </style>
+ </target>
+
+
<!-- ================= BUILD: Compile Server Components ================= -->
- <target name="build-main" depends="build-static" >
+ <target name="build-main" depends="build-static,build-help" >
<!-- Images Subdirectory -->
<copy todir="${webapps.build}/${webapp.name}/images">
<fileset dir="../tomcat-docs/images">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]