On 13 November 2010 02:54, Bill Moseley <[email protected]> wrote: > Any tricks to do a $c->visit type of call but w/o doing a full dispatch, > that is, without calling the auto and end actions?
Doesn't $c->forward(...) do exactly that? Or have I completely misunderstood the docs? $c->visit( $action [, \...@captures, \...@arguments ] ) $c->visit( $class, $method, [, \...@captures, \...@arguments ] ) Almost the same as forward, but does a full dispatch, instead of just calling the new $action / $class->$method. This means that begin, auto and the method you go to are called, just like a new request. _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
