RE: Add noise to the URL of ResourceLink component

2014-03-11 Thread Stijn de Witt
. -Stijn -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: maandag 10 maart 2014 17:28 To: users@wicket.apache.org Subject: Re: Add noise to the URL of ResourceLink component On Mon, Mar 10, 2014 at 6:20 PM, Stijn de Witt < stijn.dew...@planonsoftware.com>

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
tring("href"); url = url + "&antiCache=" + System.currentTimeMillis(); tag.put("href", url); } } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-R

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Martin Grigorov
read asking to remove some 'final' from the signature of a method with your use case. We listen! > > > -Original Message- > From: BenHoit [mailto:benoit.lanoise...@orange.com] > Sent: maandag 10 maart 2014 16:38 > To: users@wicket.apache.org > Subject

RE: Add noise to the URL of ResourceLink component

2014-03-10 Thread Stijn de Witt
Subject: Re: Add noise to the URL of ResourceLink component unfortunately getUrl is : protected final CharSequence getURL() -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component-tp4664870p4664879.html Sent from the Users forum

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
unfortunately getUrl is : protected final CharSequence getURL() -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component-tp4664870p4664879.html Sent from the Users forum mailing list archive at Nabble.com

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Sven Meier
S).setHeight(600).setWidth(1000); resourceLink.setPopupSettings(popupSettings); listItem.add(resourceLink); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-componen

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
} }; PopupSettings popupSettings = new PopupSettings( PopupSettings.RESIZABLE | PopupSettings.SCROLLBARS).setHeight(600).setWidth(1000); resourceLink.setPopupSettings(popupSettings); listItem.add(resourceLink); -- View this message in context: http

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Sven Meier
on the link, the content is OK). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component-tp4664870p4664874.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
Cache=1394463265258 but my url in my browser (opened by the resourceLink) is not modified (anticache param isn't visible) ... and the content is not the good one ... (if i clear my browser cache and click on the link, the content is OK). -- View this message in context: http://apache-wicket.184

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Sven Meier
url = url + (url.contains("?") ? "&" : "?"); url = url + "antiCache=" + System.currentTimeMillis(); tag.put("src", url); } but it doesn't work and in my log, url is null ... Does anybody know how to do this ? -

Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
+ System.currentTimeMillis(); tag.put("src", url); } but it doesn't work and in my log, url is null ... Does anybody know how to do this ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-compon