Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Eelco Hillenius
On 8/10/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Why - Just to look nice, or is this a case where you might be needing > to use a BookmarkablePageLink? There'll still be cases where Wicket > will use it's internal links (where there's state being passed > around), but there may also be cases w

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Gwyn Evans
Why - Just to look nice, or is this a case where you might be needing to use a BookmarkablePageLink? There'll still be cases where Wicket will use it's internal links (where there's state being passed around), but there may also be cases where there's no state that could be used by bookmarkable u

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Igor Vaynberg
sure, you can subclass webrequestcodingstrategy and override methods on it that encode/decode these urls. its no trivial task so you must get encoding/decoding to work exactly right or lots of things might break.-Igor On 8/10/06, Spencer Crissman <[EMAIL PROTECTED]> wrote: here you tell wicket to r

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Spencer Crissman
here you tell wicket to redirect to an /instance/ of a page, so wicket is not in control. you give it a page object with some internal state and tell it to go to it. a bookmarkable url cannot be used here because the page has arbitrary state that cannot be encoded into the url. so wicket puts the p

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Igor Vaynberg
pagemap:pageid:pageversion:listenerinterface-IGorOn 8/10/06, Igor Vaynberg <[EMAIL PROTECTED] > wrote:the details are internal and you shouldnt really be bothered by them, but if you must know it is the version of the page. -IgorOn 8/10/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: When one g

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Igor Vaynberg
the details are internal and you shouldnt really be bothered by them, but if you must know it is the version of the page.-IgorOn 8/10/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote:When one gets an url like : http://localhost:8081/test/app?wicket:interface=:2:3:What does the rightmost digit (3)

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Pierre-Yves Saumont
When one gets an url like : http://localhost:8081/test/app?wicket:interface=:2:3: What does the rightmost digit (3) means ? Pierre-Yves Igor Vaynberg a écrit : > On 8/10/06, *spencer.c* <[EMAIL PROTECTED] > > wrote: > > > I have an app that I've created for test

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Igor Vaynberg
On 8/10/06, spencer.c <[EMAIL PROTECTED]> wrote: I have an app that I've created for testing purposes.  There are two pages,one is an index, the other a form.  If I fill out the form on the secondpage, and redirect to the home page in the form submit method using the following code:setResponsePage(

[Wicket-user] Mounted URL Differences

2006-08-10 Thread spencer.c
New to the framework, so bear with me, as I'm likely to have many questions. I have an app that I've created for testing purposes. There are two pages, one is an index, the other a form. If I fill out the form on the second page, and redirect to the home page in the form submit method using th