Re: [Catalyst] forwarding to chained actions

2007-04-24 Thread Roberto Henríquez
Bernhard Graf escribió: Is there a way to forward to (the end point of) a chained action and run the whole action chain again? Simplified example: sub instance : PathPart('') Chained('/') CaptureArgs(1) { my ($self, $c, $data_id) = @_; # fetch data for $data_id and put on stash $c->stash

Re: [Catalyst] internal redirect

2007-04-11 Thread Roberto Henríquez
Adeola Awoyemi escribió: Hi all, Is there a way to do an internal redirect in Catalyst? In my application I'm generating images on the fly and want to redirect to the image if creation succeeds. For instance: $image = Imager->new() $image->read( file => $src_file ); $new_img = $

Re: [Catalyst] internal redirect

2007-04-11 Thread Roberto Henríquez
Adeola Awoyemi escribió: Hi all, Is there a way to do an internal redirect in Catalyst? In my application I'm generating images on the fly and want to redirect to the image if creation succeeds. For instance: $image = Imager->new() $image->read( file => $src_file ); $new_img = $