Merge remote branch 'marcusramberg/master'

This commit is contained in:
Ask Bjørn Hansen
2011-01-22 10:33:09 -08:00
2 changed files with 9 additions and 12 deletions

View File

@@ -52,11 +52,12 @@ sub _init {
return $self;
}
use Data::Dumper;
sub _render {
my ($self, $renderer, $c, $output, $options) = @_;
# Inline
my $inline = $c->{stash}->{inline};
my $inline = $options->{inline};
# Template
my $t = $renderer->template_name($options);
@@ -77,14 +78,10 @@ sub _render {
# Error
unless ($ok) {
my $e = $self->tt->error;
if ($e =~ m/not found/) {
$c->app->log->error(qq/Template "$t" missing or not readable./);
$c->render_not_found;
return;
}
my $e = Mojo::Exception->new(
$self->tt->error.'',
$self->tt->service->process(defined $inline ? \$inline : $path));
$$output = '';
$c->app->log->error(qq/Template error in "$t": $e/);
$c->render_exception($e);

View File

@@ -34,7 +34,7 @@ get '/unknown_helper' => 'unknown_helper';
get '/on-disk' => 'foo';
get '/foo/:message' => 'index';
get '/bar/:message' => 'bar';
get '/inline' => sub { shift->render(inline => '[% 1 + 1 %]', handler => 'tt') };
@@ -44,7 +44,7 @@ my $t = Test::Mojo->new;
$t->get_ok('/exception')->status_is(500)->content_like(qr/error/i);
# Normal rendering
$t->get_ok('/foo/hello')->content_is("hello");
$t->get_ok('/bar/hello')->content_is("hello");
# With include
$t->get_ok('/with_include')->content_is("HelloInclude!Hallo");
@@ -56,7 +56,7 @@ $t->get_ok('/with_wrapper')->content_is("wrapped");
#$t->get_ok('/with_auto_wrapper')->content_is("wrapped");
# Unicode
$t->get_ok('/unicode')->content_is(b("привет")->encode('UTF-8')->to_string);
$t->get_ok('/unicode')->content_is("привет");
# Helpers
$t->get_ok('/helpers')->content_is("/helpers");
@@ -75,7 +75,7 @@ $t->get_ok('/inline')->status_is(200)->content_is('2');
__DATA__
@@ index.html.tt
@@ bar.html.tt
[% message %]
@@ error.html.tt