316584 Exception on startup if temp path has spaces and extractWAR=false

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2002 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Michael Gorovoy 2010-06-15 03:12:51 +00:00
parent 2347b12be2
commit 221cc8589f
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
jetty-7.1.5-SNAPSHOT
+ 311550 The WebAppProvider should allow setTempDirectory
+ 316449 Websocket disconnect fix
+ 316584 Exception on startup if temp path has spaces and extractWAR=false
jetty-7.1.4.v20100610
+ 298551 SslSocketConnector does not need keystore stream

View File

@ -508,7 +508,7 @@ public class WebInfConfiguration implements Configuration
web_inf_classes.copyTo(webInfClassesDir);
}
web_inf=Resource.newResource(extractedWebInfDir.toURL());
web_inf=Resource.newResource(extractedWebInfDir.getCanonicalPath());
ResourceCollection rc = new ResourceCollection(new Resource[]{web_inf,web_app});