Re: Release 6.4 - API break?

2012-12-18 Thread aws0934
When I try to build a project on Wicket 6.4.0, Maven complains with: The POM for org.apache.wicket:wicket-core:jar:6.4.0 is missing, no dependency information available Maybe this is related to your problem. Arne -- View this message in context:

Re: Release 6.4 - API break?

2012-12-18 Thread aws0934
It is already announced on the homepage, so I thought it was final, sorry. Arne -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Release-6-4-API-break-tp4654875p4654881.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Mounting of ConcatResourceBundleReference in a WebPage

2012-12-07 Thread aws0934
Hi Martin, I do not know how to use IRequestMapper to achieve my goal and could not find a suitable example. Do you know where I can find one? Basically, I just want to remove the package name from my CSS-/JS-URLs (ConcatResourceBundleReferences) so that for instance

Re: Mounting of ConcatResourceBundleReference in a WebPage

2012-11-27 Thread aws0934
As I figured out, it definitely hurts, because mounting the bundle in a webpage on each request leaks memory, as the map containing the reference keys grows and grows and grows. So, is there any other way to have a nice URL for a customized ConcatResourceBundleReference which relies on session

Mounting of ConcatResourceBundleReference in a WebPage

2012-11-07 Thread aws0934
I want a nice URL for my customized ConcatResourceBundleReference. If the bundle would not have a reference to the Session object in order to get the WebClientInfo, I could easily mount it in the applicationĀ“s init method. As a workaround I mount the resource in my abstract BasePage (superclass