Author: markt Date: Tue Sep 30 12:52:34 2014 New Revision: 1628424 URL: http://svn.apache.org/r1628424 Log: Review of r1628197 by kkolinko.
Modified: tomcat/trunk/java/org/apache/catalina/webresources/JarWarResource.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/webresources/JarWarResource.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/webresources/JarWarResource.java?rev=1628424&r1=1628423&r2=1628424&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/webresources/JarWarResource.java (original) +++ tomcat/trunk/java/org/apache/catalina/webresources/JarWarResource.java Tue Sep 30 12:52:34 2014 @@ -41,7 +41,7 @@ public class JarWarResource extends Abst String baseUrl, JarEntry jarEntry, String archivePath, String internalPath, Manifest manifest) { super(root, webAppPath, base, "jar:war:" + baseUrl + "^/" + archivePath, - jarEntry, internalPath, manifest, "jar" + baseUrl + "!/" + archivePath); + jarEntry, internalPath, manifest, "jar:" + baseUrl + "!/" + archivePath); this.archivePath = archivePath; } Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1628424&r1=1628423&r2=1628424&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Tue Sep 30 12:52:34 2014 @@ -80,7 +80,7 @@ by Realms when the credential is stored using hex encoding. (markt) </fix> <fix> - <bug>57038</bug>: Add a <code>WebResource.getCoseBase()</code> method, + <bug>57038</bug>: Add a <code>WebResource.getCodeBase()</code> method, implement for all <code>WebResource</code> implementations and then use it in the web application class loader to set the correct code base for resources loaded from JARs and WARs. (markt) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org