Re: AW: T5:Page navigation

2007-04-13 Thread Patrick Moore
I hope it will be possible to turn this off for some sessions. The case I am concerned about is my phone browser -- which asks the user to confirm every client-side redirect. While I understand the reasons for page-redirects by default -- I do need to not make our phone users life miserable. -Pa

AW: AW: T5:Page navigation

2007-04-12 Thread Peter Schröder
-cache -Ursprüngliche Nachricht- Von: Weisu [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 12. April 2007 02:03 An: [EMAIL PROTECTED] Betreff: Re: AW: T5:Page navigation Thanks everyone. In T4, you can throw redirect-exception, don't think there is one in T5. Peter Schröder-2

Re: AW: T5:Page navigation

2007-04-11 Thread Howard Lewis Ship
t- > Von: Weisu [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 11. April 2007 08:42 > An: users@tapestry.apache.org > Betreff: T5:Page navigation > > > Hi, > I have a login page, when user logins, it navigates to next page. How can > I > hide the login page when I

Re: AW: T5:Page navigation

2007-04-11 Thread Weisu
> > i like this statement: > if (!_user.isLogin()== true) > > very creative! > > -Ursprüngliche Nachricht- > Von: Weisu [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 11. April 2007 08:42 > An: users@tapestry.apache.org > Betreff: T5:Page navig

Re: T5:Page navigation

2007-04-11 Thread Howard Lewis Ship
When you click the browser back button, the page that is displayed often comes from the browser cache. T5 does not yet have the ability to set the response headers that prevent the browser from caching pages. On 4/10/07, Weisu <[EMAIL PROTECTED]> wrote: Hi, I have a login page, when user login

AW: T5:Page navigation

2007-04-11 Thread Peter Schröder
PROTECTED] Gesendet: Mittwoch, 11. April 2007 08:42 An: users@tapestry.apache.org Betreff: T5:Page navigation Hi, I have a login page, when user logins, it navigates to next page. How can I hide the login page when I click the back button from IE. I am using onActive() in Login page likes

T5:Page navigation

2007-04-10 Thread Weisu
Hi, I have a login page, when user logins, it navigates to next page. How can I hide the login page when I click the back button from IE. I am using onActive() in Login page likes: String onActivate() { if (!_user.isLogin()== true) { return null;