You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Bernard D'Have <bd...@SpiritSystems.be> on 2001/09/05 18:26:14 UTC

[PATCH TC4] correction to org.apache.catalina.util.URL.java

Hi,

small patch for the following bug:

URL context= new URL("http://localhost/cocoon/");
URL relative= new URL(context, "index.xml");

relative is set to "http://localhost/index.xml" and NOT
"http://localhost/cocoon/index.xml"
as returned by java.net.URL.


the patch in attachment consist of a small correction to URL.java and 2 more
tests in URLTestCase.

Thanks for your work,

Bernard D'Havé