Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Dirk Forchel
I mount two different resources almost the same way to figure out how it works. First of all a context relative resource (the dotclear_tmp.png image is relative to the context root in my WEB-INF container) and second a dynamically created image resource (see below). But in my panel the src attribut

Any plans to support content security policy?

2013-11-07 Thread Magro
Hello! Do you have any plans regarding support of the content security policy (http://en.wikipedia.org/wiki/Content_Security_Policy) in Wicket in the near future? The problem at this time is the heavily used inline Java-Script code which interferes with the whitelisting mechanism of script sources

Re: Any plans to support content security policy?

2013-11-07 Thread Martin Grigorov
Hi, Please file a ticket for improvement. Thanks! On Thu, Nov 7, 2013 at 10:38 AM, Magro wrote: > Hello! > Do you have any plans regarding support of the content security policy > (http://en.wikipedia.org/wiki/Content_Security_Policy) in Wicket in the > near > future? The problem at this time i

Websphere 8

2013-11-07 Thread wicket_new_user
Hi Anyone brought up Websphere 8 and is it working without any issues My app works find in Websphere 6 & 7 with the below properties set, but not working with 8. com.ibm.ws.webcontainer.invokefilterscompatibility=true com.ibm.ws.webcontainer.mapFiltersToAsterisk=true com.ibm.ws.webcontainer.remove

Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Ben S
Hello, I've been trying to work on this issue for hours and have had no luck. Basically, my code works just fine in development mode as intended, however when in Deployment mode I can't seem to get WebMarkupContainers toggle between visibility. If they're visible, they won't go invisible, howe

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Dirk Forchel
And finally I've added two Image components to the Panel (this works as expected). In my Panel.class: add( new Image("img1", new SharedResourceReference("dotclear") ) ); add( new Image("img2", new PlaceholderImageResourceReference() ) ); HTML: Rendered URLs: In addition we use the placeholder

Re-Usable Panel with RefreshingView

2013-11-07 Thread Patrick Davids
Hi all, I would like to implement a reusable panel, containing a refreshing view. The goal is to delegate the polulateItem(Item item) of the refreshing view to the outer client, e.g. the page which uses my panel. (I force overriding using abstract method). So far so good. My problem now is: My

Re: How to use BootStrap3 ProgressBar and UpdateableProgress Bar

2013-11-07 Thread Martin Grigorov
Hi, Please file a ticket at wicket-bootstrap project. On Wed, Nov 6, 2013 at 6:19 PM, David Beer wrote: > Hi Guys > > I have added an UploadProgressBar from the Wicket extensions to my upload > form and process, it would be nice if I could keep the Bootstrap3 > components. > > I am having a bi

Re: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Nick Pratt
This functionality does work - can you put your code up on pastebin/gist/whatever so we can take a look? (Markup and Source please) On Wed, Nov 6, 2013 at 8:14 PM, Ben S wrote: > Hello, > > I've been trying to work on this issue for hours and have had no luck. > > Basically, my code works just

[ANNOUNCE] Apache Wicket 6.12.0 released!

2013-11-07 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0! This release marks the twelfth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0. New and notew

Support for security updates on 1.4

2013-11-07 Thread Dean Pehrsson-Chapman
Hi there, Does anyone know how long the wicket core team plan to support security updates on 1.4? We have a 1.4 project and need to prioritise the move to 6/7. Cheers, Dean

Re: Support for security updates on 1.4

2013-11-07 Thread Martin Grigorov
Hi, Once 7.0.0 is released 1.4 support will end and 1.5 will become the security maintenance release. There is no rush to release 7.0.0 at the moment. On Thu, Nov 7, 2013 at 4:23 PM, Dean Pehrsson-Chapman wrote: > Hi there, > > Does anyone know how long the wicket core team plan to support sec

Re: Support for security updates on 1.4

2013-11-07 Thread Martijn Dashorst
One of the major issues with maintaining 1.4 (and 1.5) is that it is hard to get a working java 5 installation on our machines. The other problem is that we don't have any applications (at least at my work) that run on 1.4 or 1.5. When 7.0 is released, I suspect our projects will be on 7.x rather q

Re: Support for security updates on 1.4

2013-11-07 Thread Dean Pehrsson-Chapman
Many thanks Martin. On 7 November 2013 14:35, Martin Grigorov wrote: > Hi, > > Once 7.0.0 is released 1.4 support will end and 1.5 will become the > security maintenance release. > There is no rush to release 7.0.0 at the moment. > > > On Thu, Nov 7, 2013 at 4:23 PM, Dean Pehrsson-Chapman > wr

Session expires almost immediate after login

2013-11-07 Thread Marieke Vandamme
Dear wicket users, We have an ecommerce platform based on wicket. Since our latest release (with wicket 6.8.0) multiple users complain that their session expires too early. We did not set the timeout in our web.xml or something, so it's handled by jetty, and the default of 30 minutes is set there

Re: Bizarre undentified error resulting in blank page

2013-11-07 Thread Peter Henderson
Hi, Just a though. Could it be the constructor of the base class calling abstract methods, before the child instance has been initialized fully? I've done that a couple of times and it produces some very weird results. Peter. On 7 November 2013 03:33, Rafael Barrera Oro wrote: > Hello! > >

Re: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Ben S
Here's the code and markup, I'll begin looking for any errors  I have made, thanks! http://pastebin.com/eVQfYCpx On Thursday, November 7, 2013 5:20 AM, Nick Pratt wrote: This functionality does work - can you put your code up on pastebin/gist/whatever so we can take a look? (Markup and Sour

Re: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Ben S
Hi, I found the solution before receiving an answer. I found that using the wicket:container markup tags in development mode will actually work with setVisible toggling, but not in deployment mode. I don't know if this is due to me using the wicket:container tag incorrectly or not. For my solut

RE: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Paul Bors
Look inside your Application's init() method for something similar to: if(usesDevelopmentConfig()) { ... getDebugSettings().setAjaxDebugModeEnabled(true); getDebugSettings().setOutputMarkupContainerClassName(true); getDebugSettings().setDevelopmentUtilitiesEnabled(true); getReq

wicket quickstart

2013-11-07 Thread Filipe Roque
Hi, Is it my impression or the quickstart in the wicket site is not working? http://wicket.apache.org/start/quickstart.html thank you, Filipe Roque - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional com

Re: wicket quickstart

2013-11-07 Thread Andrea Del Bene
Now I fixed it. For some reason the css and JavaScript code has been wrapped as CDATA... Hi, Is it my impression or the quickstart in the wicket site is not working? http://wicket.apache.org/start/quickstart.html thank you, Filipe Roque -

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Dirk Forchel
No comment? No idea? Probably another solution? Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Struggling-with-ContextRelativeResource-RenderedDynamicImageResource-and-SharedResources-tp4662190p4662219.html Sent from the Users forum mailing list archive at Na

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Ernesto Reinaldo Barreiro
Did you read this? http://wicketinaction.com/2011/07/wicket-1-5-mounting-resources/ On Fri, Nov 8, 2013 at 6:56 AM, Dirk Forchel wrote: > No comment? No idea? Probably another solution? > Thanks > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Struggling

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Dirk Forchel
Yes, I know this article and based on this one I wrote the PlaceholderImageResourceReference class. And it works as expected. I mean I can add this resource reference to each component I want. Panel: add( new Image("placeholderImg", new PlaceholderImageResourceReference() ) ); Markup: But this

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Ernesto Reinaldo Barreiro
If you mount a global resource then you can pass a parameter to it and use that parameter to generate dynamic image. If you create a quickstart I could try to look at it and help (if I can). On Fri, Nov 8, 2013 at 8:18 AM, Dirk Forchel wrote: > Yes, I know this article and based on this one I wr

Re: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Martin Grigorov
Hi, tags are not rendered in deployment mode. See IMarkupSettings#setStripWicketTags(boolean) On Thu, Nov 7, 2013 at 8:53 PM, Ben S wrote: > Hi, I found the solution before receiving an answer. > > I found that using the wicket:container markup tags in development mode > will actually work wi

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2013-11-07 Thread Dirk Forchel
Okay. I know, but their is no need for an additional parameter. I want to generate always the same image (a 1x1px PNG with a transparent background). So I don't see the need for a parameter. But I try to prepare a quickstart. -- View this message in context: http://apache-wicket.1842946.n4.nabb