Re: Expected mounting options

2008-04-15 Thread Erik van Oosten
I wrote a replacement for WebRequestCodingStrategy and attached it to: https://issues.apache.org/jira/browse/WICKET-1534 This coding strategy will first look at the mount path, and then calls matches(String url) on the mounted URL encoders until one returns true. There is a lot that can be done t

Expected mounting options

2008-04-15 Thread Erik van Oosten
Hi, To my big surprise the following does not work: // The item page is mounted on /tips, but only for urls that have an item id. mount(new MixedParamUrlCodingStrategy("tips", ItemPage.class, new String[]{ParameterConstants.PARAM_ITEM_ID}) { @Override pub