Re: name1/param1/name2/param2 style URLs still supported in 1.5?

2011-09-19 Thread Martin Grigorov
Here is one more resource to read. http://wicketinaction.com/2011/07/wicket-1-5-mounting-pages/ You can do that with indexed parameters. Use pageParameters.getIndexedCount() and then extract the name from the odd parameters and their values from the even: parameters.get(index) On Mon, Sep 19,

RE: name1/param1/name2/param2 style URLs still supported in 1.5?

2011-09-19 Thread Chris Colman
To: users@wicket.apache.org Subject: Re: name1/param1/name2/param2 style URLs still supported in 1.5? Here is one more resource to read. http://wicketinaction.com/2011/07/wicket-1-5-mounting-pages/ You can do that with indexed parameters. Use pageParameters.getIndexedCount() and then extract the name

name1/param1/name2/param2 style URLs still supported in 1.5?

2011-09-18 Thread Chris Colman
We have lots of code in 1.4 that uses parameter/value pairs embedded into the URL using the '/' as a delimeter so that they look like actual directories to search engines. There are lots of search engines out there that have cached these URLs so we would still like to be able to serve them