JETTY-1063, JETTY-1136, JETTY-1166, JETTY-1254, 305791

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2296 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jan Bartel 2010-09-22 10:44:37 +00:00
parent 1d8ada80dc
commit 731aa82359
2 changed files with 11 additions and 1 deletions

View File

@ -36,6 +36,7 @@ jetty-7.2-SNAPSHOT
+ 325128 websocket send during onConnect
+ 325468 Clean work webapp dir before unpack
+ JETTY-912 added per exchange timeout api
+ JETTY-1063 Plugin problems with spaces in classpath resource references
+ JETTY-1245 Do not use direct buffers with NIO SSL
+ JETTY-1249 Apply max idle time to all connectors
+ JETTY-1250 Parallel start of HandlerCollection

View File

@ -3,6 +3,7 @@ package org.eclipse.jetty.webapp;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
@ -74,7 +75,15 @@ public class WebInfConfiguration extends AbstractConfiguration
int i=0;
for (URL u : urls)
{
containerUris[i++] = u.toURI();
try
{
containerUris[i] = u.toURI();
}
catch (URISyntaxException e)
{
containerUris[i] = new URI(u.toString().replaceAll(" ", "%20"));
}
i++;
}
containerJarNameMatcher.match(containerPattern, containerUris, false);
}