Compare commits

...
Author SHA1 Message Date
Graham Ollis 654ff61789 v1.46
- Mojolicious 4.0 compatability
2013-05-19 11:13:27 -04:00
Graham Ollis d340a27585 travis update 2013-05-19 11:10:25 -04:00
Graham Ollis 5d3e3eaf3b mojo 4.0 compat 2013-05-19 11:07:01 -04:00
Graham Ollis d63632735f test against 5.16 2013-05-07 20:26:06 -04:00
Graham Ollis 90f8df88a9 v1.45
- correctly support app->default->{layout} (GH#37, Fayland Lam)
2013-04-26 13:38:19 -04:00
Fayland LamandGraham Ollis fe963f6511 fix for defaults layout 2013-04-26 13:35:46 -04:00
6 changed files with 62 additions and 4 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
language: perl
install:
- cpanm Mojolicious Template
- cpanm -n Mojolicious
- cpanm -n Template
script: HARNESS_IS_VERBOSE=1 prove -v -Ilib t
perl:
- "5.16"
- "5.14"
- "5.12"
- "5.10"
+6
View File
@@ -2,6 +2,12 @@ Revision history for Mojolicious::Plugin::TtRenderer
{{$NEXT}}
1.46 May 19, 2013
- Mojolicious 4.0 compatability
1.45 April 26, 2013
- correctly support app->default->{layout} (GH#37, Fayland Lam)
1.44 April 13, 2013
- promote development changes to production
+1 -1
View File
@@ -5,7 +5,7 @@ license = Perl_5
copyright_holder = Ask Bjørn Hansen
# copyright_year = 2009
version = 1.44
version = 1.46
[Prereqs]
Mojolicious = 3.33
+5 -1
View File
@@ -81,12 +81,16 @@ sub _render {
$t = 'inline' if defined $inline;
return unless $t;
my $helper = Mojolicious::Plugin::TtRenderer::Helper->new(ctx => $c);
# Purge previous result
$$output = '';
# fixes for t/lite_app_with_default_layouts.t
unless ($c->stash->{layout}) {
$c->stash->{content} ||= $c->stash->{'mojo.content'}->{content};
}
my @params = ({%{$c->stash}, c => $c, h => $helper}, $output, {binmode => ':utf8'});
my $provider = $self->tt->{SERVICE}->{CONTEXT}->{LOAD_TEMPLATES}->[0];
$provider->options($options);
+10 -1
View File
@@ -7,13 +7,22 @@ use warnings;
use utf8;
use Test::More tests => 3;
use Test::More;
use Mojolicious::Lite;
use Test::Mojo;
use File::Temp qw( tempdir );
use File::Spec;
if($Mojolicious::VERSION >= 4.0)
{
plan skip_all => 'test broken in mojo 4.0';
}
else
{
plan tests => 3;
}
# Send log to tmp file so that it doesn't clutter up the screen.
app->log->level('fatal');
app->log->path(do {
+37
View File
@@ -0,0 +1,37 @@
#!/usr/bin/env perl
use strict;
use warnings;
BEGIN { $ENV{MOJO_MODE}='testing'; };
use utf8;
use Test::More tests => 3;
use Mojolicious::Lite;
use Mojo::ByteStream 'b';
use Test::Mojo;
use File::Temp qw( tempdir );
# Silence
app->log->level('fatal');
use_ok('Mojolicious::Plugin::TtRenderer::Engine');
plugin 'tt_renderer' => {template_options => {PRE_CHOMP => 1, POST_CHOMP => 1, TRIM => 1, COMPILE_DIR => tempdir( CLEANUP => 1 ) }};
app->defaults(layout => 'wrapper');
get '/test' => 'test';
my $t = Test::Mojo->new;
$t->get_ok('/test')->content_is("WS-hello-EW");
__DATA__
@@ test.html.tt
hello
@@ layouts/wrapper.html.tt
WS-[%- content -%]-EW