On 6/18/07, Matt S Trout <[EMAIL PROTECTED]> wrote:
> What I would propose is something like:
>
>    my $template =  $c->action->namespace . '/';
>    $template .=  $c->stash->{template}  ||  $c->action->name;
>    $template .= self->config->{TEMPLATE_EXTENSION};
>
> But the template inheritance that I describe in the other letter in
> this thread might be even better.

You can do this via additional_template_paths.

What you just proposed is woefully incompatible with every single deployed
application so not remotely an option.

True - here is the corrected version:

   $c->stash( additional_template_paths => $c->action->namespace );
   my $template = $c->stash->{template}  ||  $c->action->name .
$self->config->{TEMPLATE_EXTENSION};


--
Zbigniew Lukasiak
http://brudnopis.blogspot.com/

_______________________________________________
List: Catalyst@lists.rawmode.org
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/
Dev site: http://dev.catalyst.perl.org/

Reply via email to