Description
The fix in WICKET-3337 introduced a bug: now an url to a resource can be rendered differently if the base url changes.
In practice this means that some js files can end up twice in a page DOM.
First with the page load:
"wicket/resource/org.apache.wicket.markup.html.WicketEventReference/wicket-event-ts1303754909421.js"
and
"wicket/resource/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax-ts1303754909421.js"
Secondly after an ajax event two "new" js gets loaded:
"./wicket/resource/org.apache.wicket.markup.html.WicketEventReference/wicket-event-ts1303754909421.js"
and
"./wicket/resource/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax-ts1303754909421.js"