Re: loginContextService.redirectToSavedRequest sometimes throws HttpException: null

2014-03-03 Thread Lidija Dolinar
Sorry for the ugly code formatting :-/. Regards, Lidija

loginContextService.redirectToSavedRequest sometimes throws HttpException: null

2014-03-03 Thread Lidija Dolinar
Hi, After the user successfully logs in he is redirected to the page where he came from. The location is written in the shiroSavedRequest cookie. The redirect works most of the time, but occasionally for some users the below code throws an exception. I tried bullet-proofing it by setting requestUr

Apache Tapestry 5.4-beta-3

2014-03-03 Thread Howard Lewis Ship
Just a follow on ... following a successful vote, 5.4-beta-3 is now available for download (binary, source, and API documentation) from http://www.apache.org/dist/tapestry/ ... and is now available from the central Maven repository as well. -- Howard M. Lewis Ship Creator of Apache Tapestry The

Re: tapestryZone is not a function

2014-03-03 Thread Emmanuel DEMEY
Are you developing a full jquery application or a prototype+jquery app ? For your use case, you should have a full jquery app. Manu Le 1 mars 2014 18:39, "nn kk" a écrit : > Hi I have the following code: > > > > t:event="playerTeamChange" > t:model="prop:teamM

Re: Use cases for the "any" component

2014-03-03 Thread Emmanuel DEMEY
Most of the time I use any with the use case 2 also Le 3 mars 2014 20:50, "George Christman" a écrit : > Like lance, I use it for option 2 as well as extended to make new > components from it. > > > On Mon, Mar 3, 2014 at 3:51 AM, Kristian Marinkovic < > kristian.marinko...@gmail.com> wrote: > >

Re: Add ajax spinning gif to a zone.

2014-03-03 Thread Emmanuel DEMEY
Or if you are using jquery, you can maybe have a look to the ajaxStop and ajaxStart events. Manu Le 3 mars 2014 20:59, "George Christman" a écrit : > Hello, I'm wondering how you can add an animated load .gif to my app > letting a user know an ajax request is underway? Example, when you do an > a

Re: Add ajax spinning gif to a zone.

2014-03-03 Thread Lance Java
I'm not sure it's exactly what you're after but here's an example of polling an asynchronous task http://tapestry-stitch.uklance.cloudbees.net/progresslinkdemo

Add ajax spinning gif to a zone.

2014-03-03 Thread George Christman
Hello, I'm wondering how you can add an animated load .gif to my app letting a user know an ajax request is underway? Example, when you do an ajax file upload, is thee a way to show the animated gif until the file has be loaded into the interface? I'm not sure if I can do this with zones nor do I k

Re: Use cases for the "any" component

2014-03-03 Thread George Christman
Like lance, I use it for option 2 as well as extended to make new components from it. On Mon, Mar 3, 2014 at 3:51 AM, Kristian Marinkovic < kristian.marinko...@gmail.com> wrote: > i use it if i need unique clientIds for certain dom elements to access it > with my javascripts. > g, > Kris > > > O

RE: Tapestry App Not booting right - dependency tree help

2014-03-03 Thread nhhockeyplayer nashua
ok i apologize if I stirred things up. everyone can shine..its a choice. weekend transient dependency chasing is taxing. maven is the best build method on the planet and as much as I used ANT... I wont go back.. but I will have to figure out what transient dependencies are hampering my effort a

Re: shiro UsernamePasswordToken "RememberMe" problems

2014-03-03 Thread Lidija Dolinar
Lenny and Kalle, thank you for your responses. On Tue, Feb 25, 2014 at 10:26 PM, Kalle Korhonen wrote: > > > Shiro makes a strong separation between remembered and authenticated use > cases. It depends on your security settings whether you want to allow > remembered only users. How should the

Re: Use cases for the "any" component

2014-03-03 Thread Kristian Marinkovic
i use it if i need unique clientIds for certain dom elements to access it with my javascripts. g, Kris On Mon, Mar 3, 2014 at 8:18 AM, Lance Java wrote: > I've used option 2 and I've also extended "any" to make new components. >