[Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread John Patterson
Hi, I would like users to be able to bookmark my login page with a nice link. I have mounted the page and tested that this link does indeed take you to my LoginPage. However, when users are redirected to this page by redirectToInterceptPage the page url is not the bookmarkable one

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread Johan Compagner
that is currently not possiblewe don't have a PageMap.redirectToInterceptPage(final Class pageClass)only a Pagecan you add a feature request for this?johan On 5/3/06, John Patterson [EMAIL PROTECTED] wrote: Hi,I would like users to be able to bookmark my login page with a nicelink. I have mounted

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread Timo Stamm
Johan Compagner schrieb: that is currently not possible What about using the RedirectPage? (I think it's ugly, but it should work) Timo we don't have a PageMap.redirectToInterceptPage(final Class pageClass) only a Page can you add a feature request for this? johan On 5/3/06, John

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread Johan Compagner
yeah that could work. But that is really ugly.johanOn 5/3/06, Timo Stamm [EMAIL PROTECTED] wrote: Johan Compagner schrieb: that is currently not possibleWhat about using the RedirectPage? (I think it's ugly, but it should work)Timo we don't have a PageMap.redirectToInterceptPage(final Class

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread John Patterson
Do you mean the RedirectPage in the library application?  If so, can you explain why such a page is needed to logout?  I thought that Session.invalidate() waits until after the request is finished anyway?On 3 May 2006, at 16:04, Johan Compagner wrote:yeah that could work. But that is really

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread John Patterson
Done.On 3 May 2006, at 15:39, Johan Compagner wrote:that is currently not possiblewe don't have a PageMap.redirectToInterceptPage(final Class pageClass)only a Pagecan you add a feature request for this?johan On 5/3/06, John Patterson [EMAIL PROTECTED] wrote: Hi,I would like users to be able to

Re: [Wicket-user] Redirect to bookmarkable page

2006-05-03 Thread Timo Stamm
John Patterson schrieb: Do you mean the RedirectPage in the library application? I mean wicket.markup.html.pages.RedirectPage It makes a redirect by putting the new URL into the location object using javascript. This URL can be bookmarkable. But I don't even like the RedirectPage, and