Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-02 Thread Matt S Trout
On 1 Feb 2007, at 17:37, John Napiorkowski wrote: Hmm, interesting point. I'm going to go and try writing something that trys to modify the ActionContainer and see what happens! --john You'd be better screwing with $c-action, I think. Something like if ($c-stack-[-1] eq

Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-02 Thread Brian Cassidy
Matt S Trout wrote: On 1 Feb 2007, at 17:37, John Napiorkowski wrote: Hmm, interesting point. I'm going to go and try writing something that trys to modify the ActionContainer and see what happens! --john You'd be better screwing with $c-action, I think. Something like if ($c-stack-[-1] eq

[Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-01 Thread Dami Laurent \(PJ\)
Dear Catalysters, I would like to set up an action chain where the entry point to the chain (first action) has to do different things depending on whether there is another action down the chain or not. Is there a way in the API to ask Catalyst about what is pending in the rest of the action

Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-01 Thread John Napiorkowski
--- Dami Laurent (PJ) [EMAIL PROTECTED] wrote: Dear Catalysters, I would like to set up an action chain where the entry point to the chain (first action) has to do different things depending on whether there is another action down the chain or not. Is there a way in the API to ask

Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-01 Thread Jonas Alves
On 01/02/07, Dami Laurent (PJ) [EMAIL PROTECTED] wrote: Dear Catalysters, I would like to set up an action chain where the entry point to the chain (first action) has to do different things depending on whether there is another action down the chain or not. Is there a way in the API to ask

Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-01 Thread John Napiorkowski
--- Jonas Alves [EMAIL PROTECTED] wrote: On 01/02/07, Dami Laurent (PJ) [EMAIL PROTECTED] wrote: Dear Catalysters, I would like to set up an action chain where the entry point to the chain (first action) has to do different things depending on whether there is another action