Re: [Catalyst] Multiple chain sources?

2010-11-23 Thread Bill Crawford
On 23 November 2010 15:34, Oleg Kostyuk wrote: >   $c->forward( $action [, \...@arguments ] ) > As I think, $c->forward(user => [$c->user->id]) isn't one of them. > So, what this should mean? $c->forward( $action [, \...@arguments ]) $c->forward( 'user' , [ $c->user->id ] ) The '

Re: [Catalyst] Multiple chain sources?

2010-11-23 Thread Oleg Kostyuk
2010/11/23 Eden Cardim : > No, that's currently not possible with chained. Matt and I, howeever, > are working on a grammar-based dispatcher that will allow easy > expression of those types of constructs. I would like to get more details about this. Is it possible to get repo url, please? > You'

Re: [Catalyst] Multiple chain sources?

2010-11-22 Thread Eden Cardim
> "Matthew" == Matthew Braid writes: Matthew> Hi all, Just wondering - is it possible for an action to Matthew> have multiple chain paths? Matthew> I'd like my site to have a path like /user/N/profile Matthew> (/user/N being a chain path, /profile being an end node off Ma

Re: [Catalyst] Multiple chain sources?

2010-11-22 Thread will trillich
That's a very nice arrangement! Thanks for posting, Dave, this is very helpful. On Mon, Nov 22, 2010 at 8:29 AM, David Schmidt wrote: > On Mon, Nov 22, 2010 at 9:24 AM, David Schmidt wrote: > > On Mon, Nov 22, 2010 at 6:15 AM, Matthew Braid > wrote: > >> Hi all, > >> > >> Just wondering - is

Re: [Catalyst] Multiple chain sources?

2010-11-22 Thread David Schmidt
On Mon, Nov 22, 2010 at 9:24 AM, David Schmidt wrote: > On Mon, Nov 22, 2010 at 6:15 AM, Matthew Braid wrote: >> Hi all, >> >> Just wondering - is it possible for an action to have multiple chain paths? >> >> I'd like my site to have a path like /user/N/profile (/user/N being a >> chain path, /pr

Re: [Catalyst] Multiple chain sources?

2010-11-22 Thread David Schmidt
On Mon, Nov 22, 2010 at 6:15 AM, Matthew Braid wrote: > Hi all, > > Just wondering - is it possible for an action to have multiple chain paths? > > I'd like my site to have a path like /user/N/profile (/user/N being a > chain path, /profile being an end node off that path), but also have a > path

[Catalyst] Multiple chain sources?

2010-11-21 Thread Matthew Braid
Hi all, Just wondering - is it possible for an action to have multiple chain paths? I'd like my site to have a path like /user/N/profile (/user/N being a chain path, /profile being an end node off that path), but also have a path like /my/profile (where /my is a chain path that acts as if the use