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 wrote

Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
); } 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-component-tp4664870.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
+ 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 ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
) 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.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Sven Meier
-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. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
( PopupSettings.RESIZABLE | PopupSettings.SCROLLBARS).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

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread Sven Meier
(popupSettings); listItem.add(resourceLink); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Add-noise-to-the-URL-of-ResourceLink-component-tp4664870p4664877.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
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 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 Martin Grigorov
'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 unfortunately getUrl

Re: Add noise to the URL of ResourceLink component

2014-03-10 Thread BenHoit
().getString(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-ResourceLink-component