You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2010/11/30 18:42:01 UTC

svn commit: r1040652 - in /tomcat/trunk: java/org/apache/catalina/startup/HostConfig.java webapps/docs/changelog.xml

Author: markt
Date: Tue Nov 30 17:42:01 2010
New Revision: 1040652

URL: http://svn.apache.org/viewvc?rev=1040652&view=rev
Log:
Context name rather than Context path is passed in so construct ContextName object correctly.

Modified:
    tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java?rev=1040652&r1=1040651&r2=1040652&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java Tue Nov 30 17:42:01 2010
@@ -478,7 +478,7 @@ public class HostConfig
 
         File appBase = appBase();
         File configBase = configBase();
-        ContextName cn = new ContextName(name, null);
+        ContextName cn = new ContextName(name);
         String baseName = cn.getBaseName();
         
         // Deploy XML descriptors from configBase

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1040652&r1=1040651&r2=1040652&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Nov 30 17:42:01 2010
@@ -76,6 +76,9 @@
         Further Lifecycle refactoring for Connectors and associated components.
         (markt)
       </fix>
+      <fix>
+        Correct handling of versioned web applications in deployer. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org