Re: Tracking logged in users / SessionStore questions

2008-09-14 Thread behlma
Thank you for your help, Igor. igor.vaynberg wrote: no, the session cookie is set and managed by the servlet container -igor On Sat, Sep 13, 2008 at 1:56 AM, behlma [EMAIL PROTECTED] wrote: Hi Igor, actually, the wrong cookie path is set. Could be that this is due to nginx (my

Re: Tracking logged in users / SessionStore questions

2008-09-13 Thread behlma
Hi Igor, actually, the wrong cookie path is set. Could be that this is due to nginx (my webserver). Just to make sure, is there a way to set the session cookie path through wicket? igor.vaynberg wrote: are your cookies disabled? -igor On Thu, Sep 11, 2008 at 11:46 PM, behlma [EMAIL

Re: Tracking logged in users / SessionStore questions

2008-09-12 Thread behlma
Now another question has popped up. My bulletin board overview page, the one displaying all currently active/guests users and forums is a (stateless) BookmarkablePage. To be able to track the (guest) users however, I'm calling getSession().bind() in the page's constructor. The session gets bound

Re: Tracking logged in users / SessionStore questions

2008-09-03 Thread behlma
Thanks a lot, Martijn. -- View this message in context: http://www.nabble.com/Tracking-logged-in-users---SessionStore-questions-tp19273568p19283896.html Sent from the Wicket - User mailing list archive at Nabble.com. - To

Tracking logged in users / SessionStore questions

2008-09-02 Thread behlma
Hi guys, I'm developing a portal/forum application for my dissertation and wanted to display a panel with all currently active users. Now I found an old thread (Wicket 2.0) where Eelco posted an example SessionStore implementation to solve this specific problem, but that raised some questions.

Custom tag processing

2008-02-14 Thread behlma
Hi there, I'm looking for a hint if the following can be done easily *without* the use of a templating language like FreeMarker or Velocity, as I think Wicket itself is a pretty good templating engine. Suppose I have a TextArea field and want to create an email on the fly, with certain

Re: PagingNavigator refactoring request

2008-01-15 Thread behlma
Hi Igor, your patch is working great. As initialisation occurs in onBeforeRender() now, I can even use getParent().getClass() without having an additional pageClass constructor parameter. So, please apply the patch :) Thanks again for your time! igor.vaynberg wrote: see if this patch

Re: PagingNavigator refactoring request

2008-01-14 Thread behlma
Not such a good idea, huh? :) behlma wrote: Hi guys, would it be possible to change PagingNavigator's constructor from public PagingNavigator(final String id, final IPageable pageable, final IPagingLabelProvider labelProvider) { super

Re: PagingNavigator refactoring request

2008-01-14 Thread behlma
)); add(newPagingNavigationIncrementLink(next, pageable, 1)); add(newPagingNavigationLink(last, pageable, -1)); as they are all bookmarkable links. igor.vaynberg wrote: what exactly is the usecase? -igor On Jan 14, 2008 12:49 AM, behlma [EMAIL PROTECTED] wrote

Re: PagingNavigator refactoring request

2008-01-14 Thread behlma
are called. Puh, Thanks again for reading :) igor.vaynberg wrote: would you just override all the newPaging* factory methods? perhaps if you paste your code and what you cannot do i might help you more, right now i just dont see it :| -igor On Jan 14, 2008 12:03 PM, behlma [EMAIL

PagingNavigator refactoring request

2008-01-13 Thread behlma
Hi guys, would it be possible to change PagingNavigator's constructor from public PagingNavigator(final String id, final IPageable pageable, final IPagingLabelProvider labelProvider) { super(id); // Get the navigation bar