Re: Ad Hoc URL Mapping

2009-10-12 Thread nino martinez wael
You can already do this, a 2 sec google search brought this up: http://blog.xebia.com/2008/10/09/readable-url%E2%80%99s-in-wicket-an-introduction-to-wicketstuff-annotation/ http://css.dzone.com/news/wicket-creating-restful-urls 2009/10/12 Luther Baker lutherba...@gmail.com I'd like to use a

Re: Ad Hoc URL Mapping

2009-10-12 Thread Luther Baker
Thank nino. Unfortunately, I think you may have misunderstood my question. Indeed, I understand how to configure Wicket for RESTful URLs but my question is different. What I'm asking has to do with the PLACEMENT of the url parts. IE: I want the leftmost portion of the URL to be a parameter.

Re: Ad Hoc URL Mapping

2009-10-12 Thread Jeremy Thomerson
I think you would need to create your own strategy. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Oct 12, 2009 at 1:31 PM, Luther Baker lutherba...@gmail.com wrote: Thank nino. Unfortunately, I think you may have misunderstood my question. Indeed, I understand how to configure

Ad Hoc URL Mapping

2009-10-11 Thread Luther Baker
I'd like to use a RESTful URL style where the page parameters are not necessarily at the far right of the URL. For starters, I understand the basics of Indexed and/or MixedParam url mounting to convert this: /issues/list?project=*myapp*max=*14* to this: /issues/list/*myapp*/*14*