Author: markt
Date: Mon Dec 2 14:42:55 2013
New Revision: 1547033
URL: http://svn.apache.org/r1547033
Log:
Correct URL for fragment
Modified:
tomcat/tc7.0.x/trunk/ (props changed)
tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
Merged /tomcat/trunk:r1547032
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1547033&r1=1547032&r2=1547033&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java
Mon Dec 2 14:42:55 2013
@@ -2690,7 +2690,8 @@ public class ContextConfig implements Li
fragment.setDistributable(true);
} else {
InputSource source = new InputSource(
- resourceURL.toString() + "!/" + FRAGMENT_LOCATION);
+ "jar:" + resourceURL.toString() + "!/" +
+ FRAGMENT_LOCATION);
source.setByteStream(is);
parseWebXml(source, fragment, true);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]