Description
When using the following code to create an absolute url in wicket 1.5.7 from a page class and parameters, there are also duplicate segments in the url. the rendered absolute url is not correct.
final Url url = RequestCycle.get().mapUrlFor( pageClass, pageParameters );
final String result = RequestCycle.get().getUrlRenderer().renderFullUrl( url );
RequestCycle.get().mapUrlFor(..) does not return an "absolute" url (first segment will not be empty).
See also description in WICKET-4561