Author: kkolinko
Date: Fri Jan 4 17:04:58 2013
New Revision: 1428985
URL: http://svn.apache.org/viewvc?rev=1428985&view=rev
Log:
Remove support for Tomcat 5 from the site build script
Modified:
tomcat/site/trunk/README.txt
tomcat/site/trunk/build.properties.default
tomcat/site/trunk/build.xml
Modified: tomcat/site/trunk/README.txt
URL:
http://svn.apache.org/viewvc/tomcat/site/trunk/README.txt?rev=1428985&r1=1428984&r2=1428985&view=diff
==============================================================================
--- tomcat/site/trunk/README.txt (original)
+++ tomcat/site/trunk/README.txt Fri Jan 4 17:04:58 2013
@@ -61,7 +61,7 @@ reflected on the live tomcat.apache.org
immediately, so go to http://tomcat.apache.org/ and have fun.
-To update the documentation for Tomcat 5.5.x, Tomcat 6.0.x, Tomcat 7.0.x:
+To update the documentation for Tomcat 6.0.x or 7.0.x:
==========================================================================
1. If you are using the "sparse" checkout feature, make sure that
@@ -71,7 +71,6 @@ To update the documentation for Tomcat 5
The commands are:
cd tomcat-site
- svn up --set-depth infinity docs/tomcat-5.5-doc
svn up --set-depth infinity docs/tomcat-6.0-doc
svn up --set-depth infinity docs/tomcat-7.0-doc
@@ -92,7 +91,6 @@ To update the documentation for Tomcat 5
The commands are:
cd tomcat-site
- ant release-5
ant release-6
ant release-7
Modified: tomcat/site/trunk/build.properties.default
URL:
http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1428985&r1=1428984&r2=1428985&view=diff
==============================================================================
--- tomcat/site/trunk/build.properties.default (original)
+++ tomcat/site/trunk/build.properties.default Fri Jan 4 17:04:58 2013
@@ -36,7 +36,6 @@ tomcat.loc=http://www.apache.org/dist/to
# ----- Tomcat versions -----
-tomcat55=5.5.36
tomcat60=6.0.36
tomcat70=7.0.34
@@ -45,9 +44,6 @@ tomcat70=7.0.34
tomcat-site-docs.home=${base.path}/tomcat-site-docs/
# ----- Tomcat Docs locations -----
-tomcat55.loc=${tomcat.loc}/tomcat-5/v${tomcat55}/bin/apache-tomcat-${tomcat55}-fulldocs.tar.gz
-tomcat55.home=${tomcat-site-docs.home}/${tomcat55}
-
tomcat60.loc=${tomcat.loc}/tomcat-6/v${tomcat60}/bin/apache-tomcat-${tomcat60}-fulldocs.tar.gz
tomcat60.home=${tomcat-site-docs.home}/${tomcat60}
Modified: tomcat/site/trunk/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1428985&r1=1428984&r2=1428985&view=diff
==============================================================================
--- tomcat/site/trunk/build.xml (original)
+++ tomcat/site/trunk/build.xml Fri Jan 4 17:04:58 2013
@@ -22,7 +22,6 @@
<property name="faq.src" location="xdocs-faq"/>
<property name="faq.dest" location="${docs.dest}/faq"/>
- <!-- Requires JDK 1.4 -->
<target name="docs"
description="Render HTML Pages via XSLT">
@@ -86,28 +85,6 @@
</target>
- <target name="release-5"
- depends="docs"
- description="Used after a release to update the docs for Tomcat 5.5">
-
- <!-- Download the latest version -->
- <antcall target="downloadgz">
- <param name="sourcefile" value="${tomcat55.loc}"/>
- <param name="destfile"
value="${tomcat55.home}/tomcat-5.5-doc/index.html"/>
- <param name="destdir" value="${tomcat55.home}"/>
- </antcall>
-
- <!-- Delete the old version -->
- <delete dir="${docs.dest}/tomcat-5.5-doc"/>
-
- <!-- Copy the latest version -->
- <copy todir="${docs.dest}/tomcat-5.5-doc" >
- <fileset dir="${tomcat55.home}/tomcat-5.5-doc" >
- <exclude name="/WEB-INF/**" />
- </fileset>
- </copy>
- </target>
-
<target name="release-6"
depends="docs"
description="Used after a release to update the docs for Tomcat 6.0">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]