added a lowercase to url normal form generation

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1966 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
orbiter 2006-03-26 12:01:00 +00:00
parent 44d72f06c4
commit 4a5b5515b5

View File

@ -183,7 +183,7 @@ public class htmlFilterContentScraper extends htmlFilterAbstractScraper implemen
}
if (defaultPort) return url.getProtocol() + "://" + url.getHost() + path;
return url.getProtocol() + "://" + url.getHost() + ":" + url.getPort() + path;
return url.getProtocol() + "://" + url.getHost().toLowerCase() + ":" + url.getPort() + path;
}
public static String urlNormalform(URL baseURL, String us) {