Re: [Wicket-user] Accessing Path Info

2005-11-23 Thread Dorel Vaida
Igor Vaynberg wrote: or use a url rewriting filter to change the url to a bookmarkable page ie rewrite all www.example.com/shortcut/(expr) http://www.example.com/shortcut/%28expr%29 to www.example.com/app?bookmarkablePage=Shortcutparam=expr

Re: [Wicket-user] Accessing Path Info

2005-11-23 Thread Nick Heudecker
Thanks for the suggestions. I think I'm going to use a servlet or a filter to forward to the Wicket BookmarkablePage. --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today Register for a JBoss Training Course. Free

Re: [Wicket-user] Accessing Path Info

2005-11-23 Thread Eelco Hillenius
What I'm - kind of offline - am working on right now is something that at least partially acomplishes that. It's a big refactor (luckily as we always made sure not to expose too much without breaking public API's so far) and I'm combining it with other things like improved state management and

Re: [Wicket-user] Accessing Path Info

2005-11-23 Thread Nick Heudecker
Let me know if you need/want a hand with it. On 11/23/05, Eelco Hillenius [EMAIL PROTECTED] wrote: What I'm - kind of offline - am working on right now is something that at least partially acomplishes that. It's a big refactor (luckily as we always made sure not to expose too much without

Re: [Wicket-user] Accessing Path Info

2005-11-22 Thread Juergen Donnerstag
Two options (may be 3): - see WebRequest/ResponseWithCryptedUrl for an example - subclass WebRequestCycle.doParseRequest (a user hook) - wait until we defined and implemented a revised URL strategy Juergen On 11/22/05, Nick Heudecker [EMAIL PROTECTED] wrote: Hi, I would like to create a URL

Re: [Wicket-user] Accessing Path Info

2005-11-22 Thread Eelco Hillenius
I think you can do stuff like that now, at least partially. I'm just now starting to work on further improving this (or at least exploring some ideas). Eelco On 11/22/05, Nick Heudecker [EMAIL PROTECTED] wrote: Hi, I would like to create a URL that looks like:

Re: [Wicket-user] Accessing Path Info

2005-11-22 Thread Igor Vaynberg
or use a url rewriting filter to change the url to a bookmarkable page ierewrite all www.example.com/shortcut/(expr)to www.example.com/app?bookmarkablePage=Shortcutparam=expr-IgorOn 11/22/05, Eelco Hillenius [EMAIL PROTECTED] wrote:I think you can do stuff like that now, at least partially. I'm