Re: [Wicket-user] redirect to previous url

2005-11-08 Thread pepone pepone
I take a look at WebRequestCrawlerSaver and this can be what i loking for what is the way to plug this in a wicket application thanks in advantage On 11/8/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: If you are sure that you are realy not interested in path=xxx, may be it worth if you

Re: [Wicket-user] redirect to previous url

2005-11-08 Thread Juergen Donnerstag
please see http://www.wicket-wiki.org.uk/wiki/index.php/Obfuscating_urls Jürgen On 11/8/05, pepone pepone [EMAIL PROTECTED] wrote: I take a look at WebRequestCrawlerSaver and this can be what i loking for what is the way to plug this in a wicket application thanks in advantage On 11/8/05,

[Wicket-user] redirect to previous url

2005-11-07 Thread pepone pepone
Hello i have a form in my border to do login/logout I wan to redirect user to same url before login the url that i use are allways bookmarkable and i wan to mantain the url whith the same parameters i thinking in same thing like void onSubmit() { //Form logic goes here //before is procesed

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread Juergen Donnerstag
Please see the signin2 example. Juergen On 11/7/05, pepone pepone [EMAIL PROTECTED] wrote: Hello i have a form in my border to do login/logout I wan to redirect user to same url before login the url that i use are allways bookmarkable and i wan to mantain the url whith the same parameters

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread pepone pepone
what i don´t understand is when i must call redirectToInterceptPage beacause my sigin panel is allways in the border and documentation says that continueToOriginal only works with a previous call to redirectToInterceptPage On 11/7/05, Johan Compagner [EMAIL PROTECTED] wrote: We are redirecting

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread pepone pepone
What i trying to do is maintain the clean url that i have before form submit i don´t want that my app has not bookmarkable urls wiht path o version in it On 11/7/05, pepone pepone [EMAIL PROTECTED] wrote: what i don´t understand is when i must call redirectToInterceptPage beacause my sigin

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread Johan Compagner
then you have to make sure that you always redirect to a bookmarkable url at all places! (form submits, link clicks) A form submit will always be a path=x thing So if that form submit is the page before youre redirectToIntercept (so a user submits a form but should login first) Then it will be

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread pepone pepone
In my current aplication all links are bookmarkables or redirects to a bookmarkable pagte and i only want this for the SingInForm user that are not signedin can only access tow forms RegisterForm and SignIn form the register form redirect allways to a page that show the result of regitration or

Re: [Wicket-user] redirect to previous url

2005-11-07 Thread Juergen Donnerstag
If you are sure that you are realy not interested in path=xxx, may be it worth if you create your own WebRequest/WebResponse (see WebRequestCrawlerSaver for an example what can be done) Juergen On 11/8/05, pepone pepone [EMAIL PROTECTED] wrote: In my current aplication all links are