Author: markt
Date: Sat Jan 15 10:11:55 2011
New Revision: 1059280
URL: http://svn.apache.org/viewvc?rev=1059280&view=rev
Log:
Additional docs on version ordering
Add 7.0.6 release date
Modified:
tomcat/trunk/webapps/docs/changelog.xml
tomcat/trunk/webapps/docs/config/context.xml
Modified: tomcat/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1059280&r1=1059279&r2=1059280&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Sat Jan 15 10:11:55 2011
@@ -90,6 +90,10 @@
<fix>
Correct a handful of Javadoc warnings. (markt)
</fix>
+ <add>
+ Provide additional detail about how web application version order it
+ determined when using parallel deployment. (markt)
+ </add>
</changelog>
</subsection>
<subsection name="Other">
@@ -105,7 +109,7 @@
</changelog>
</subsection>
</section>
-<section name="Tomcat 7.0.6 (markt)">
+<section name="Tomcat 7.0.6 (markt)" rtext="released 2011-01-14">
<subsection name="General">
<changelog>
<update>
Modified: tomcat/trunk/webapps/docs/config/context.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/context.xml?rev=1059280&r1=1059279&r2=1059280&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/config/context.xml (original)
+++ tomcat/trunk/webapps/docs/config/context.xml Sat Jan 15 10:11:55 2011
@@ -107,6 +107,15 @@
<tr><td><i>Empty
String</i></td><td>42</td><td>##42</td><td>ROOT##42</td></tr>
</table>
+ <p>The version component is treated as a <code>String</code> both for
+ performance reasons and to allow flexability in versioning schemes. String
+ comparissions are used to determine version order. Therefore
+ <code>foo##11.war</code> will be treated as an earlier version than
+ <code>foo##2.war</code>. If using a purely numerical versioning scheme it is
+ recommended that zero padding is used so that <code>foo##002.war</code> is
+ treated as an earlier version than <code>foo##011.war</code>.
+ </p>
+
<p><b>It is NOT recommended to place <Context> elements directly in the
server.xml file.</b> This is because it makes modifying the
<strong>Context</strong> configuration more invasive since the main
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]