Re: Which url coding strategy to make more restful in page with navigator?

2010-08-09 Thread Holger
1.4.9 but I tried 1.4.7 also (the version you entered in JIRA issue). Have you got any idea? Or maybe provide full code, including Data Views and Panels? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Which-url-coding-strategy-to-make-more-restful-in-page

Re: Which url coding strategy to make more restful in page with navigator?

2010-07-07 Thread Nowaker
? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Which-url-coding-strategy-to-make-more-restful-in-page-with-navigator-tp2197248p2281681.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-17 Thread Igor Vaynberg
please attach your code to a jira issue so it doesnt get lost. -igor 2010/5/14 cleverpig greatclever...@gmail.com: hi,everybody! Maybe we should not do the same thing to reinvent the wheel. After a morning of thinking and programming, I wrote a few simple restful navigator implement! Here

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-17 Thread cleverpig
ok,I'd created a improvement issue: https://issues.apache.org/jira/browse/WICKET-2876 2010/5/17 Igor Vaynberg igor.vaynb...@gmail.com: please attach your code to a jira issue so it doesnt get lost. -igor 2010/5/14 cleverpig greatclever...@gmail.com: hi,everybody! Maybe we should not do

Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread cleverpig
hi,everybody! I checked a variety url coding strategies, but did not find one that is very appropriate when using datatable and navigator in page. HybridUrlCodingStrategy might also be, but it can not display the page parameter in url, can not be true bookmarkable. And the version number int its

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread Igor Vaynberg
if you use a bookmarkable paging navigator then even the default mounting strategy will work. you can probably find one by searching the list. -igor On Thu, May 13, 2010 at 12:56 AM, cleverpig greatclever...@gmail.com wrote: hi,everybody! I checked a variety url coding strategies, but did not

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread cleverpig
thanks,igor! but where can I find out this bookmarkable paging navigator? I only get it:http://apache-wicket.1842946.n4.nabble.com/PageNavigator-Vs-Nice-Url-td1848271.html#a1848272 but that is a old track about nice url and paging navigator,including a lot discuss without final result.

Possibility of mounting multiple pages on / and Custom URL coding strategy?

2008-08-31 Thread Ritesh Trivedi
Hi, As part of my requirement, I have to create a custom url coding strategy for bookmarkable pages. The URLs should be like e.g. http://domain.com/somestr_[id].html. The problem I am facing is all the bookmarkable pages need to have a static mount string, which makes the URL to be http

Re: Possibility of mounting multiple pages on / and Custom URL coding strategy?

2008-08-31 Thread Igor Vaynberg
this is already possible, create your own irequestcycleprocessor -igor On Sun, Aug 31, 2008 at 10:16 AM, Ritesh Trivedi [EMAIL PROTECTED] wrote: Hi, As part of my requirement, I have to create a custom url coding strategy for bookmarkable pages. The URLs should be like e.g. http

Re: Possibility of mounting multiple pages on / and Custom URL coding strategy?

2008-08-31 Thread Ritesh Trivedi
strategy. igor.vaynberg wrote: this is already possible, create your own irequestcycleprocessor -igor On Sun, Aug 31, 2008 at 10:16 AM, Ritesh Trivedi [EMAIL PROTECTED] wrote: Hi, As part of my requirement, I have to create a custom url coding strategy for bookmarkable pages

Re: Possibility of mounting multiple pages on / and Custom URL coding strategy?

2008-08-31 Thread Igor Vaynberg
possible, create your own irequestcycleprocessor -igor On Sun, Aug 31, 2008 at 10:16 AM, Ritesh Trivedi [EMAIL PROTECTED] wrote: Hi, As part of my requirement, I have to create a custom url coding strategy for bookmarkable pages. The URLs should be like e.g. http://domain.com/somestr_[id].html

Re: Url Coding Strategy for choosing Locale by URL Sub Directory

2008-07-30 Thread ssanchez
Hi, I'm facing this same problem. It seems still unresolved but, has anyone been able to solve it? Which is the best way to deal with this? -- View this message in context: http://www.nabble.com/Url-Coding-Strategy-for-choosing-Locale-by-URL-%22Sub-Directory%22-tp15803555p18729497.html

Re: Url Coding Strategy for choosing Locale by URL Sub Directory

2008-03-05 Thread Charlie Dobbie
Hi Wicket-User, I have a similar situation - I'm tasked to build a site that appears to have multiple directories but that actually use the same set of pages. So for example: http://mysite.com/clientname/Login http://mysite.com/clientname/Register

Url Coding Strategy for choosing Locale by URL Sub Directory

2008-03-03 Thread oliverw
) b) Where to start? I debugged through most of the request cycle code but I'm still not sure what's the best place to hook into. Any hint would be appreciated. -- View this message in context: http://www.nabble.com/Url-Coding-Strategy-for-choosing-Locale-by-URL-%22Sub-Directory%22

Wicket 1.3 URL Coding Strategy Reference Guide

2007-11-28 Thread William Hoover
Is there a definitive reference guide for all of the current url coding strategies in Wicket 1.3? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket 1.3 URL Coding Strategy Reference Guide

2007-11-28 Thread Roy van Rijn
This is a good start: http://people.apache.org/~tobrien/wicket/apidocs/org/apache/wicket/request/target/coding/package-summary.html Its the JavaDoc of the wicket.request.target.coding, there you can see all the coding strategies with a short description on how to use them. Roy On 11/28/07,

Url Coding Strategy

2007-10-02 Thread kent lai
Hi, I am wondering if Wicket supports an in-built coding strategy where I can, given the following form /{var1}/fragment1/fragment2/{var2}/{var3} it can be mounted as a url to a page, passing in page parameters var1, var2, and var3. A more real use case of this could be a

Re: Url Coding Strategy

2007-10-02 Thread David Bernard
Have you try to customise (ignore fragment1 and fragment2, or override matches methods) the following class: * org.apache.wicket.request.target.coding.IndexedParamUrlCodingStrategy * or org.apache.wicket.request.target.coding.MixedParamUrlCodingStrategy Or use a filter like urlrewrite

Re: Url Coding Strategy

2007-10-02 Thread kent lai
Mixing MixedParamUrlCodingStrategy with urlrewrite sounds like a great idea. I would give it a go. Thanks! kent On 03 Oct 2007, at 12:48 AM, David Bernard wrote: Have you try to customise (ignore fragment1 and fragment2, or override matches methods) the following class: *