Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5c11f60f3d | ||
|
|
2a9d4476c7 | ||
|
|
bca2f85fb3 | ||
|
|
5b364d31ac | ||
|
|
f9bc6aa56a | ||
|
|
65e4bbf7c8 | ||
|
|
5870c014c2 | ||
|
|
8dcb4147f7 | ||
|
|
c489fbc86e | ||
|
|
9699560925 | ||
|
|
247e2251b3 | ||
|
|
1b1e8cb63e | ||
|
|
6598b29c2c | ||
|
|
b40a0f97ee | ||
|
|
a1f36d716f | ||
|
|
af07f0f983 | ||
|
|
14884dd82d | ||
|
|
f029ad393f | ||
|
|
3ca192cd4f | ||
|
|
e955bb151a | ||
|
|
02696ed4a1 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
/Mojolicious-Plugin-TtRenderer-*
|
||||
/.build
|
||||
/example/myapp/log/development.log
|
||||
|
||||
@@ -4,7 +4,8 @@ install:
|
||||
- cpanm -n Template
|
||||
script: HARNESS_IS_VERBOSE=1 prove -v -Ilib t
|
||||
perl:
|
||||
- "5.19"
|
||||
- "5.21"
|
||||
- "5.20"
|
||||
- "5.18"
|
||||
- "5.16"
|
||||
- "5.14"
|
||||
|
||||
11
Changes
11
Changes
@@ -2,6 +2,17 @@ Revision history for Mojolicious::Plugin::TtRenderer
|
||||
|
||||
{{$NEXT}}
|
||||
|
||||
1.53 2014-05-31 06:22:47 -0400
|
||||
- Mojolicious 5.0 support
|
||||
|
||||
1.52 2014-05-08 19:26:47 -0400
|
||||
- updated repository name
|
||||
|
||||
1.51 2014-03-21 14:59:39 -0400
|
||||
- extended diagnostics
|
||||
- documentation tweaks
|
||||
- fix non-lite app example (GH#41, uwisser)
|
||||
|
||||
1.50 2013-08-08T16:51:21-0400
|
||||
- update Changes to follow spec (GH#39, Сергей Романов)
|
||||
- minor documentation fixes
|
||||
|
||||
231
README.md
Normal file
231
README.md
Normal file
@@ -0,0 +1,231 @@
|
||||
# Mojolicious::Plugin::TtRenderer [](http://travis-ci.org/plicease/Mojolicious-Plugin-TtRenderer)
|
||||
|
||||
Template Renderer Plugin for Mojolicious
|
||||
|
||||
# SYNOPSIS
|
||||
|
||||
[Mojolicious::Lite](https://metacpan.org/pod/Mojolicious::Lite):
|
||||
|
||||
plugin 'tt_renderer';
|
||||
|
||||
[Mojolicious](https://metacpan.org/pod/Mojolicious)
|
||||
|
||||
$self->plugin('tt_renderer');
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
This plugin is a simple Template Toolkit renderer for [Mojolicious](https://metacpan.org/pod/Mojolicious).
|
||||
Its defaults are usually reasonable, although for finer grain detail in
|
||||
configuration you may want to use
|
||||
[Mojolicious::Plugin::TtRenderer::Engine](https://metacpan.org/pod/Mojolicious::Plugin::TtRenderer::Engine) directly.
|
||||
|
||||
# OPTIONS
|
||||
|
||||
These are the options that can be passed in as arguments to this plugin.
|
||||
|
||||
## template\_options
|
||||
|
||||
Configuration hash passed into [Template](https://metacpan.org/pod/Template)'s constructor, see
|
||||
[Template Toolkit's configuration summary](https://metacpan.org/pod/Template#CONFIGURATION-SUMMARY)
|
||||
for details. Here is an example using the [Mojolicious::Lite](https://metacpan.org/pod/Mojolicious::Lite) form:
|
||||
|
||||
plugin 'tt_renderer' => {
|
||||
template_options => {
|
||||
PRE_CHOMP => 1,
|
||||
POST_CHOMP => 1,
|
||||
TRIM => 1,
|
||||
},
|
||||
};
|
||||
|
||||
Here is the same example using the full [Mojolicious](https://metacpan.org/pod/Mojolicious) app form:
|
||||
|
||||
package MyApp;
|
||||
|
||||
use Mojo::Base qw( Mojolicious );
|
||||
|
||||
sub startup {
|
||||
my($self) = @_;
|
||||
|
||||
$self->plugin('tt_renderer' => {
|
||||
template_options => {
|
||||
PRE_CHOMP => 1,
|
||||
POST_CHOMP => 1,
|
||||
TRIM => 1,
|
||||
},
|
||||
}
|
||||
|
||||
...
|
||||
}
|
||||
|
||||
These options will be used if you do not override them:
|
||||
|
||||
- INCLUDE\_PATH
|
||||
|
||||
Generated based on your application's renderer's configuration. It
|
||||
will include all renderer paths, in addition to search files located
|
||||
in the `__DATA__` section by the usual logic used by [Mojolicious](https://metacpan.org/pod/Mojolicious).
|
||||
|
||||
- COMPILE\_EXT
|
||||
|
||||
`.ttc`
|
||||
|
||||
- UNICODE
|
||||
|
||||
`1` (true)
|
||||
|
||||
- ENCODING
|
||||
|
||||
`utf-87`
|
||||
|
||||
- CACHE\_SIZE
|
||||
|
||||
`128`
|
||||
|
||||
- RELATIVE
|
||||
|
||||
`1` (true)
|
||||
|
||||
## cache\_dir
|
||||
|
||||
Specifies the directory in which compiled template files are
|
||||
written. This:
|
||||
|
||||
plugin 'tt_renderer', { cache_dir => 'some/path' };
|
||||
|
||||
is equivalent to
|
||||
|
||||
plugin 'tt_renderer', { template_options { COMPILE_DIR => 'some/path' } };
|
||||
|
||||
except in the first example relative paths are relative to the [Mojolicious](https://metacpan.org/pod/Mojolicious)
|
||||
app's home directory (`$app->home`).
|
||||
|
||||
# STASH
|
||||
|
||||
## h
|
||||
|
||||
Helpers are available via the `h` entry in the stash.
|
||||
|
||||
<a href="[% h.url_for('index') %]">go back to index</a>
|
||||
|
||||
## c
|
||||
|
||||
The current controller instance can be accessed as `c`.
|
||||
|
||||
I see you are requesting a document from [% c.req.headers.host %].
|
||||
|
||||
# EXAMPLES
|
||||
|
||||
[Mojolicious::Lite](https://metacpan.org/pod/Mojolicious::Lite) example:
|
||||
|
||||
use Mojolicious::Lite;
|
||||
|
||||
plugin 'tt_renderer';
|
||||
|
||||
get '/' => sub {
|
||||
my $self = shift;
|
||||
$self->render('index');
|
||||
};
|
||||
|
||||
app->start;
|
||||
|
||||
__DATA__
|
||||
|
||||
@@ index.html.tt
|
||||
[%
|
||||
WRAPPER 'layouts/default.html.tt'
|
||||
title = 'Welcome'
|
||||
%]
|
||||
<p>Welcome to the Mojolicious real-time web framework!</p>
|
||||
<p>Welcome to the TtRenderer plugin!</p>
|
||||
[% END %]
|
||||
|
||||
@@ layouts/default.html.tt
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><title>[% title %]</title></head>
|
||||
<body>[% content %]</body>
|
||||
</html>
|
||||
|
||||
[Mojolicious](https://metacpan.org/pod/Mojolicious) example:
|
||||
|
||||
package MyApp;
|
||||
use Mojo::Base 'Mojolicious';
|
||||
|
||||
sub startup {
|
||||
my $self = shift;
|
||||
$self->plugin('tt_renderer');
|
||||
my $r = $self->routes;
|
||||
$r->get('/')->to('example#welcome');
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
package MyApp::Example;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
# This action will render a template
|
||||
sub welcome {
|
||||
my $self = shift;
|
||||
|
||||
# Render template "example/welcome.html.tt" with message
|
||||
$self->render(
|
||||
message => 'Looks like your TtRenderer is working!');
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
These are also included with the `Mojolicious::Plugin::TtRenderer`
|
||||
distribution, including the support files required for the full
|
||||
[Mojolicious](https://metacpan.org/pod/Mojolicious) app example.
|
||||
|
||||
# SEE ALSO
|
||||
|
||||
[Mojolicious::Plugin::TtRenderer::Engine](https://metacpan.org/pod/Mojolicious::Plugin::TtRenderer::Engine),
|
||||
[Mojolicious](https://metacpan.org/pod/Mojolicious),
|
||||
[Mojolicious::Guides](https://metacpan.org/pod/Mojolicious::Guides),
|
||||
[http://mojolicious.org](http://mojolicious.org).
|
||||
|
||||
# AUTHOR
|
||||
|
||||
original author: Ask Bjørn Hansen
|
||||
|
||||
current maintainer: Graham Ollis <plicease@cpan.org>
|
||||
|
||||
contributors:
|
||||
|
||||
vti
|
||||
|
||||
Marcus Ramberg
|
||||
|
||||
Matthias Bethke
|
||||
|
||||
Htbaa
|
||||
|
||||
Magnus Holm
|
||||
|
||||
Maxim Vuets
|
||||
|
||||
Rafael Kitover
|
||||
|
||||
giftnuss
|
||||
|
||||
Cosimo Streppone
|
||||
|
||||
Fayland Lam
|
||||
|
||||
Jason Crowther
|
||||
|
||||
spleenjack
|
||||
|
||||
Árpád Szász
|
||||
|
||||
Сергей Романов
|
||||
|
||||
uwisser
|
||||
|
||||
# COPYRIGHT AND LICENSE
|
||||
|
||||
This software is copyright (c) 2014 by Ask Bjørn Hansen.
|
||||
|
||||
This is free software; you can redistribute it and/or modify it under
|
||||
the same terms as the Perl 5 programming language system itself.
|
||||
246
README.pod
246
README.pod
@@ -1,246 +0,0 @@
|
||||
=pod
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Mojolicious::Plugin::TtRenderer - Template Renderer Plugin for Mojolicious
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 1.50
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
L<Mojolicious::Lite>:
|
||||
|
||||
plugin 'tt_renderer';
|
||||
|
||||
L<Mojolicious>
|
||||
|
||||
$self->plugin('tt_renderer');
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This plugin is a simple Template Toolkit renderer for L<Mojolicious>.
|
||||
Its defaults are usually reasonable, although for finer grain detail in
|
||||
configuration you may want to use
|
||||
L<Mojolicious::Plugin::TtRenderer::Engine> directly.
|
||||
|
||||
=encoding utf-8
|
||||
|
||||
=for stopwords Bjørn
|
||||
Szász
|
||||
Árpád
|
||||
|
||||
=head1 OPTIONS
|
||||
|
||||
These are the options that can be passed in as arguments to this plugin.
|
||||
|
||||
=head2 template_options
|
||||
|
||||
Configuration hash passed into L<Template>'s constructor, see
|
||||
L<Template Toolkit's configuration summary|Template#CONFIGURATION-SUMMARY>
|
||||
for details. Here is an example using the L<Mojolicious::Lite> form:
|
||||
|
||||
plugin 'tt_renderer' => {
|
||||
template_options => {
|
||||
PRE_CHOMP => 1,
|
||||
POST_CHOMP => 1,
|
||||
TRIM => 1,
|
||||
},
|
||||
};
|
||||
|
||||
Here is the same example using the full L<Mojolicious> app form:
|
||||
|
||||
package MyApp;
|
||||
|
||||
use Mojo::Base qw( Mojolicious );
|
||||
|
||||
sub startup {
|
||||
my($self) = @_;
|
||||
|
||||
$self->plugin('tt_renderer' => {
|
||||
template_options => {
|
||||
PRE_CHOMP => 1,
|
||||
POST_CHOMP => 1,
|
||||
TRIM => 1,
|
||||
},
|
||||
}
|
||||
|
||||
...
|
||||
}
|
||||
|
||||
These options will be used if you do not override them:
|
||||
|
||||
=over 4
|
||||
|
||||
=item INCLUDE_PATH
|
||||
|
||||
Generated based on your application's renderer's configuration. It
|
||||
will include all renderer paths, in addition to search files located
|
||||
in the C<__DATA__> section by the usual logic used by L<Mojolicious>.
|
||||
|
||||
=item COMPILE_EXT
|
||||
|
||||
C<.ttc>
|
||||
|
||||
=item UNICODE
|
||||
|
||||
C<1> (true)
|
||||
|
||||
=item ENCODING
|
||||
|
||||
C<utf-87>
|
||||
|
||||
=item CACHE_SIZE
|
||||
|
||||
C<128>
|
||||
|
||||
=item RELATIVE
|
||||
|
||||
C<1> (true)
|
||||
|
||||
=back
|
||||
|
||||
=head2 cache_dir
|
||||
|
||||
Specifies the directory in which compiled template files are
|
||||
written. This:
|
||||
|
||||
plugin 'tt_renderer', { cache_dir => 'some/path' };
|
||||
|
||||
is equivalent to
|
||||
|
||||
plugin 'tt_renderer', { template_options { COMPILE_DIR => 'some/path' } };
|
||||
|
||||
except in the first example relative paths are relative to the L<Mojolicious>
|
||||
app's home directory (C<$app-E<gt>home>).
|
||||
|
||||
=head1 STASH
|
||||
|
||||
=head2 h
|
||||
|
||||
Helpers are available via the C<h> entry in the stash.
|
||||
|
||||
<a href="[% h.url_for('index') %]">go back to index</a>
|
||||
|
||||
=head2 c
|
||||
|
||||
The current controller instance can be accessed as C<c>.
|
||||
|
||||
I see you are requesting a document from [% c.req.headers.host %].
|
||||
|
||||
=head1 EXAMPLES
|
||||
|
||||
L<Mojolicious::Lite> example:
|
||||
|
||||
use Mojolicious::Lite;
|
||||
|
||||
plugin 'tt_renderer';
|
||||
|
||||
get '/' => sub {
|
||||
my $self = shift;
|
||||
$self->render('index');
|
||||
};
|
||||
|
||||
app->start;
|
||||
|
||||
__DATA__
|
||||
|
||||
@@ index.html.tt
|
||||
[%
|
||||
WRAPPER 'layouts/default.html.tt'
|
||||
title = 'Welcome'
|
||||
%]
|
||||
<p>Welcome to the Mojolicious real-time web framework!</p>
|
||||
<p>Welcome to the TtRenderer plugin!</p>
|
||||
[% END %]
|
||||
|
||||
@@ layouts/default.html.tt
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><title>[% title %]</title></head>
|
||||
<body>[% content %]</body>
|
||||
</html>
|
||||
|
||||
L<Mojolicious> example:
|
||||
|
||||
package MyApp;
|
||||
use Mojo::Base 'Mojolicious';
|
||||
|
||||
sub startup {
|
||||
my $self = shift;
|
||||
$self->plugin('tt_renderer');
|
||||
my $r = $self->routes;
|
||||
$r->get('/')->to('example#welcome');
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
package MyApp::Example;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
# This action will render a template
|
||||
sub welcome {
|
||||
my $self = shift;
|
||||
|
||||
# Render template "example/welcome.html.tt" with message
|
||||
$self->render(
|
||||
message => 'Looks like your TtRenderer is working!');
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
These are also included with the C<Mojolicious::Plugin::TtRenderer>
|
||||
distribution, including the support files required for the full
|
||||
L<Mojolicious> app example.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<Mojolicious::Plugin::TtRenderer::Engine>,
|
||||
L<Mojolicious>,
|
||||
L<Mojolicious::Guides>,
|
||||
L<http://mojolicious.org>.
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
original author: Ask Bjørn Hansen
|
||||
|
||||
current maintainer: Graham Ollis <plicease@cpan.org>
|
||||
|
||||
contributors:
|
||||
|
||||
vti
|
||||
|
||||
Marcus Ramberg
|
||||
|
||||
Matthias Bethke
|
||||
|
||||
Htbaa
|
||||
|
||||
Magnus Holm
|
||||
|
||||
Maxim Vuets
|
||||
|
||||
Rafael Kitover
|
||||
|
||||
giftnuss
|
||||
|
||||
Cosimo Streppone
|
||||
|
||||
Fayland Lam
|
||||
|
||||
Jason Crowther
|
||||
|
||||
spleenjack
|
||||
|
||||
Árpád Szász
|
||||
|
||||
Сергей Романов
|
||||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
This software is copyright (c) 2013 by Ask Bjørn Hansen.
|
||||
|
||||
This is free software; you can redistribute it and/or modify it under
|
||||
the same terms as the Perl 5 programming language system itself.
|
||||
|
||||
55
dist.ini
55
dist.ini
@@ -5,41 +5,17 @@ license = Perl_5
|
||||
copyright_holder = Ask Bjørn Hansen
|
||||
# copyright_year = 2009
|
||||
|
||||
version = 1.50
|
||||
version = 1.53
|
||||
|
||||
[@Author::Plicease]
|
||||
release_tests = 1
|
||||
travis_status = 1
|
||||
installer = ModuleBuild
|
||||
|
||||
[Prereqs]
|
||||
Mojolicious = 3.33
|
||||
Template = 2.18
|
||||
|
||||
[Prereqs / TestRequires ]
|
||||
Test::More = 0
|
||||
|
||||
[MetaResources]
|
||||
bugtracker.web = https://github.com/plicease/mojox-renderer-tt/issues
|
||||
repository.web = http://github.com/plicease/mojox-renderer-tt
|
||||
repository.url = git://github.com/plicease/mojox-renderer-tt.git
|
||||
repository.type = git
|
||||
|
||||
[CheckChangeLog]
|
||||
[Test::Compile]
|
||||
[HasVersionTests]
|
||||
[MetaTests]
|
||||
|
||||
[ReadmeAnyFromPod]
|
||||
type = text
|
||||
filename = README
|
||||
location = build
|
||||
|
||||
[ReadmeAnyFromPod / ReadMePodInRoot]
|
||||
type = pod
|
||||
filename = README.pod
|
||||
location = root
|
||||
|
||||
[MinimumPerl]
|
||||
|
||||
[Author::Plicease::Thanks]
|
||||
current = Graham Ollis <plicease@cpan.org>
|
||||
original = Ask Bjørn Hansen
|
||||
@@ -57,6 +33,7 @@ contributor = Jason Crowther
|
||||
contributor = spleenjack
|
||||
contributor = Árpád Szász
|
||||
contributor = Сергей Романов
|
||||
contributor = uwisser
|
||||
|
||||
[Author::Plicease::Upload]
|
||||
|
||||
@@ -64,3 +41,27 @@ contributor = Сергей Романов
|
||||
|
||||
[MetaNoIndex]
|
||||
directory = example
|
||||
|
||||
[RemovePrereqs]
|
||||
; comes with Perl
|
||||
remove = warnings
|
||||
remove = strict
|
||||
remove = lib
|
||||
remove = utf8
|
||||
remove = base
|
||||
remove = Carp
|
||||
remove = Cwd
|
||||
remove = File::Spec
|
||||
remove = Scalar::Util
|
||||
remove = File::Temp
|
||||
remove = FindBin
|
||||
remove = IO::Handle
|
||||
|
||||
; comes with Mojolicious
|
||||
remove = Mojo::Base
|
||||
remove = Mojo::ByteStream
|
||||
remove = Mojolicious::Plugin
|
||||
remove = Mojo::IOLoop
|
||||
remove = Mojolicious::Lite
|
||||
remove = Test::Mojo
|
||||
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
[Thu Aug 8 09:00:16 2013] [info] Listening at "http://*:3000".
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Your secret passphrase needs to be changed!!!
|
||||
[Thu Aug 8 09:00:20 2013] [debug] GET "/".
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Routing to controller "MyApp::Example" and action "welcome".
|
||||
[Thu Aug 8 09:00:20 2013] [error] parse error - example/welcome.html.tt line 8: unexpected end of input
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Template "exception.development.html.ep" not found.
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Template "exception.html.ep" not found.
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Rendering inline template.
|
||||
[Thu Aug 8 09:00:20 2013] [debug] Rendering inline template.
|
||||
[Thu Aug 8 09:00:20 2013] [debug] 500 Internal Server Error (0.061556s, 16.245/s).
|
||||
[Thu Aug 8 09:00:41 2013] [info] Listening at "http://*:3000".
|
||||
[Thu Aug 8 09:00:44 2013] [debug] Your secret passphrase needs to be changed!!!
|
||||
[Thu Aug 8 09:00:44 2013] [debug] GET "/".
|
||||
[Thu Aug 8 09:00:44 2013] [debug] Routing to controller "MyApp::Example" and action "welcome".
|
||||
[Thu Aug 8 09:00:44 2013] [debug] 200 OK (0.032461s, 30.806/s).
|
||||
[Thu Aug 8 09:00:47 2013] [debug] GET "/".
|
||||
[Thu Aug 8 09:00:47 2013] [debug] Routing to controller "MyApp::Example" and action "welcome".
|
||||
[Thu Aug 8 09:00:47 2013] [debug] 200 OK (0.001260s, 793.651/s).
|
||||
[Thu Aug 8 09:00:52 2013] [debug] GET "/".
|
||||
[Thu Aug 8 09:00:52 2013] [debug] Routing to controller "MyApp::Example" and action "welcome".
|
||||
[Thu Aug 8 09:00:52 2013] [debug] 200 OK (0.001683s, 594.177/s).
|
||||
@@ -2,9 +2,9 @@
|
||||
WRAPPER 'layouts/default.html.tt'
|
||||
title = 'Welcome'
|
||||
%]
|
||||
<h2>[% $message %]</h2>
|
||||
This page was generated from the template "templates/example/welcome.html.ep"
|
||||
and the layout "templates/layouts/default.html.ep",
|
||||
<h2>[% message %]</h2>
|
||||
This page was generated from the template "templates/example/welcome.html.tt"
|
||||
and the layout "templates/layouts/default.html.tt",
|
||||
<a href="[% url_for %]">click here</a> to reload the page or
|
||||
<a href="/index.html">here</a> to move forward to a static page.
|
||||
[% END %]
|
||||
|
||||
@@ -102,6 +102,7 @@ sub _render {
|
||||
$self->tt->process(\$inline, @params);
|
||||
}
|
||||
else {
|
||||
$t =~ s{^/}{};
|
||||
my @ret = $provider->fetch($t);
|
||||
|
||||
if (not defined $ret[1]) {
|
||||
@@ -226,6 +227,14 @@ __END__
|
||||
|
||||
=encoding utf-8
|
||||
|
||||
=begin stopwords
|
||||
|
||||
Bjørn
|
||||
Szász
|
||||
Árpád
|
||||
|
||||
=end stopwords
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
Add the handler:
|
||||
@@ -254,6 +263,16 @@ Add the handler:
|
||||
|
||||
Template parameter are taken from C<$c-E<gt>stash>.
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
See L<Mojolicious::Plugin::TtRenderer> for details on the plugin interface to this module.
|
||||
|
||||
This module provides an engine for the rendering of L<Template Toolkit|Template> templates
|
||||
within a Mojolicious context. Templates may be, stored on the local file system, provided
|
||||
inline by the controller or included in the C<__DATA__> section. Where possible this modules
|
||||
attempts to provide a TT analogue interface to the L<Perlish templates|Mojo::Template> which
|
||||
come with Mojolicious.
|
||||
|
||||
=head1 RENDERING
|
||||
|
||||
The template file for C<"example/welcome"> would be C<"templates/welcome.html.tt">.
|
||||
@@ -306,7 +325,7 @@ templates. Will default to a temp-dir if not set.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<Mojolicious::Plugin::TtRenderer::Engine>,
|
||||
L<Mojolicious::Plugin::TtRenderer>,
|
||||
L<Mojolicious>,
|
||||
L<Mojolicious::Guides>,
|
||||
L<http://mojolicious.org>.
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More tests => 1;
|
||||
use Test::More;
|
||||
use Mojo::IOLoop;
|
||||
|
||||
our $format;
|
||||
|
||||
my $loop = eval { Mojo::IOLoop->singleton };
|
||||
diag $@ if $@;
|
||||
ok $loop;
|
||||
diag ref eval { $loop->reactor };
|
||||
diag sprintf $format, 'mojo io loop', ref eval { $loop->reactor };
|
||||
diag $@ if $@;
|
||||
|
||||
1;
|
||||
1
t/00_diag.pre.txt
Normal file
1
t/00_diag.pre.txt
Normal file
@@ -0,0 +1 @@
|
||||
EV
|
||||
89
t/00_diag.t
Normal file
89
t/00_diag.t
Normal file
@@ -0,0 +1,89 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
use Config;
|
||||
use Test::More tests => 1;
|
||||
BEGIN {
|
||||
my @modules;
|
||||
eval q{
|
||||
require FindBin;
|
||||
require File::Spec;
|
||||
1;
|
||||
} || die $@;
|
||||
do {
|
||||
my $fh;
|
||||
open($fh, '<', File::Spec->catfile($FindBin::Bin, '00_diag.pre.txt'));
|
||||
@modules = <$fh>;
|
||||
close $fh;
|
||||
chomp @modules;
|
||||
};
|
||||
eval qq{ require $_ } for @modules;
|
||||
};
|
||||
|
||||
sub spacer ()
|
||||
{
|
||||
diag '';
|
||||
diag '';
|
||||
diag '';
|
||||
}
|
||||
|
||||
pass 'okay';
|
||||
|
||||
my @modules;
|
||||
do {
|
||||
my $fh;
|
||||
open($fh, '<', File::Spec->catfile($FindBin::Bin, '00_diag.txt'));
|
||||
@modules = <$fh>;
|
||||
close $fh;
|
||||
chomp @modules;
|
||||
};
|
||||
|
||||
my $max = 1;
|
||||
$max = $_ > $max ? $_ : $max for map { length $_ } @modules;
|
||||
our $format = "%-${max}s %s";
|
||||
|
||||
spacer;
|
||||
|
||||
my @keys = sort grep /(MOJO|PERL|\A(LC|HARNESS)_|\A(SHELL|LANG)\Z)/i, keys %ENV;
|
||||
|
||||
if(@keys > 0)
|
||||
{
|
||||
diag "$_=$ENV{$_}" for @keys;
|
||||
|
||||
if($ENV{PERL5LIB})
|
||||
{
|
||||
spacer;
|
||||
diag "PERL5LIB path";
|
||||
diag $_ for split $Config{path_sep}, $ENV{PERL5LIB};
|
||||
|
||||
}
|
||||
elsif($ENV{PERLLIB})
|
||||
{
|
||||
spacer;
|
||||
diag "PERLLIB path";
|
||||
diag $_ for split $Config{path_sep}, $ENV{PERLLIB};
|
||||
}
|
||||
|
||||
spacer;
|
||||
}
|
||||
|
||||
diag sprintf $format, 'perl ', $^V;
|
||||
|
||||
require(File::Spec->catfile($FindBin::Bin, '00_diag.pl'))
|
||||
if -e File::Spec->catfile($FindBin::Bin, '00_diag.pl');
|
||||
|
||||
foreach my $module (@modules)
|
||||
{
|
||||
if(eval qq{ require $module; 1 })
|
||||
{
|
||||
my $ver = eval qq{ \$$module\::VERSION };
|
||||
$ver = 'undef' unless defined $ver;
|
||||
diag sprintf $format, $module, $ver;
|
||||
}
|
||||
else
|
||||
{
|
||||
diag sprintf $format, $module, '-';
|
||||
}
|
||||
}
|
||||
|
||||
spacer;
|
||||
|
||||
7
t/00_diag.txt
Normal file
7
t/00_diag.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
EV
|
||||
Module::Build
|
||||
Mojolicious
|
||||
POSIX
|
||||
Template
|
||||
Template::Provider
|
||||
Test::More
|
||||
@@ -1,69 +0,0 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
#BEGIN { $ENV{MOJO_MODE}='testing'; };
|
||||
|
||||
use utf8;
|
||||
|
||||
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 {
|
||||
File::Spec->catfile(tempdir(CLEANUP => 1), 'mojo.log');
|
||||
});
|
||||
|
||||
plugin 'tt_renderer' => {template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) }};
|
||||
|
||||
get '/exception' => sub { die };
|
||||
|
||||
#say app->mode;
|
||||
#app->start;
|
||||
#exit;
|
||||
|
||||
my $t = Test::Mojo->new;
|
||||
|
||||
$t->app->renderer->default_handler('tt');
|
||||
|
||||
my $deep_recursion = 0;
|
||||
|
||||
do {
|
||||
local $SIG{__WARN__} = sub {
|
||||
my $warning = shift;
|
||||
if($warning =~ /Deep recursion/) {
|
||||
$deep_recursion = 1;
|
||||
die $warning;
|
||||
}
|
||||
};
|
||||
$t->get_ok('/exception')
|
||||
->status_is(500);
|
||||
};
|
||||
|
||||
ok !$deep_recursion, 'no deep recursion';
|
||||
|
||||
__DATA__
|
||||
|
||||
@@ exception.development.html.tt
|
||||
[% 1 + % %]
|
||||
|
||||
@@ exception.html.tt
|
||||
[% 1 + % %]
|
||||
|
||||
@@ exception.testing.html.tt
|
||||
[% 1 + % %]
|
||||
12
t/pod.t
12
t/pod.t
@@ -1,12 +0,0 @@
|
||||
#!perl -T
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More;
|
||||
|
||||
# Ensure a recent version of Test::Pod
|
||||
my $min_tp = 1.22;
|
||||
eval "use Test::Pod $min_tp";
|
||||
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
|
||||
|
||||
all_pod_files_ok();
|
||||
@@ -24,7 +24,7 @@ BEGIN { $ENV{MOJO_TMPDIR} ||= tempdir( CLEANUP => 1) }
|
||||
|
||||
# Make sure sockets are working
|
||||
plan skip_all => 'working sockets required for this test!'
|
||||
unless Mojo::IOLoop->new->generate_port;
|
||||
unless Mojo::IOLoop::Server->new->generate_port;
|
||||
plan tests => 6;
|
||||
|
||||
# Leela: OK, this has gotta stop. I'm going to remind Fry of his humanity the way only a woman can.
|
||||
|
||||
@@ -5,5 +5,5 @@ use Test::More tests => 1;
|
||||
SKIP: {
|
||||
eval q{ use Dist::Zilla::PluginBundle::Author::Plicease };
|
||||
skip '[@Plicease] is not installed', 1 if $@;
|
||||
ok $Dist::Zilla::PluginBundle::Author::Plicease::VERSION >= 0.7, '[@Plicease] >= 0.7';
|
||||
ok $Dist::Zilla::PluginBundle::Author::Plicease::VERSION >= 1.45, '[@Plicease] >= 1.45';
|
||||
}
|
||||
|
||||
@@ -20,6 +20,8 @@ my $config;
|
||||
$config = LoadFile($config_filename)
|
||||
if -r $config_filename;
|
||||
|
||||
plan skip_all => 'disabled' if $config->{pod_coverage}->{skip};
|
||||
|
||||
chdir(File::Spec->catdir($FindBin::Bin, File::Spec->updir, File::Spec->updir));
|
||||
|
||||
my @private_classes;
|
||||
|
||||
@@ -20,6 +20,8 @@ my $config;
|
||||
$config = LoadFile($config_filename)
|
||||
if -r $config_filename;
|
||||
|
||||
plan skip_all => 'disabled' if $config->{pod_spelling_system}->{skip};
|
||||
|
||||
chdir(File::Spec->catdir($FindBin::Bin, File::Spec->updir, File::Spec->updir));
|
||||
|
||||
add_stopwords(@{ $config->{pod_spelling_system}->{stopwords} });
|
||||
@@ -29,6 +31,7 @@ all_pod_files_spelling_ok;
|
||||
__DATA__
|
||||
Plicease
|
||||
stdout
|
||||
stderr
|
||||
stdin
|
||||
subref
|
||||
loopback
|
||||
@@ -37,3 +40,62 @@ os
|
||||
Ollis
|
||||
Mojolicious
|
||||
plicease
|
||||
CPAN
|
||||
reinstall
|
||||
TODO
|
||||
filename
|
||||
filenames
|
||||
login
|
||||
callback
|
||||
callbacks
|
||||
standalone
|
||||
VMS
|
||||
hostname
|
||||
hostnames
|
||||
TCP
|
||||
UDP
|
||||
IP
|
||||
API
|
||||
MSWin32
|
||||
OpenBSD
|
||||
FreeBSD
|
||||
NetBSD
|
||||
unencrypted
|
||||
WebSocket
|
||||
WebSockets
|
||||
timestamp
|
||||
timestamps
|
||||
poney
|
||||
BackPAN
|
||||
portably
|
||||
RedHat
|
||||
AIX
|
||||
BSD
|
||||
XS
|
||||
FFI
|
||||
perlish
|
||||
optimizations
|
||||
subdirectory
|
||||
RESTful
|
||||
SQLite
|
||||
JavaScript
|
||||
dir
|
||||
plugins
|
||||
munge
|
||||
jQuery
|
||||
namespace
|
||||
PDF
|
||||
PDFs
|
||||
usernames
|
||||
DBI
|
||||
pluggable
|
||||
APIs
|
||||
SSL
|
||||
JSON
|
||||
YAML
|
||||
uncommented
|
||||
Solaris
|
||||
OpenVMS
|
||||
URI
|
||||
URL
|
||||
CGI
|
||||
|
||||
@@ -25,6 +25,8 @@ pod_spelling_system:
|
||||
- renderer's
|
||||
- Toolkit's
|
||||
- Fayland
|
||||
- TT
|
||||
- uwisser
|
||||
|
||||
pod_coverage:
|
||||
# format is "Class#method" or "Class", regex allowed
|
||||
|
||||
63
xt/release/unused_vars.t
Normal file
63
xt/release/unused_vars.t
Normal file
@@ -0,0 +1,63 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More;
|
||||
BEGIN { plan skip_all => 'test requires Test::Vars ' unless eval q{ use Test::Vars; 1 } }
|
||||
BEGIN { plan skip_all => 'test requires Path::Class' unless eval q{ use Path::Class::Dir; 1 } }
|
||||
BEGIN { plan skip_all => 'test requires YAML' unless eval q{ use YAML; 1 } }
|
||||
|
||||
my $dir = Path::Class::Dir->new(__FILE__)->parent->parent->parent;
|
||||
my $config = YAML::LoadFile($dir->file(qw( xt release release.yml )));
|
||||
|
||||
plan skip_all => 'disabled' unless defined $config->{unused_vars}->{skip} && !$config->{unused_vars}->{skip};
|
||||
|
||||
my @modules;
|
||||
recurse($dir->subdir('lib'));
|
||||
|
||||
sub recurse
|
||||
{
|
||||
my $dir = shift;
|
||||
foreach my $child ($dir->children)
|
||||
{
|
||||
if($child->is_dir)
|
||||
{
|
||||
recurse($child);
|
||||
}
|
||||
else
|
||||
{
|
||||
push @modules, $child if $child->basename =~ /\.pm$/;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plan tests => scalar @modules;
|
||||
|
||||
my %global = (
|
||||
ignore_vars => { map { $_ => 1 } @{ $config->{unused_vars}->{global}->{ignore_vars} } },
|
||||
);
|
||||
if(defined $config->{unused_vars}->{global}->{ignore_if})
|
||||
{
|
||||
$global{ignore_if} = eval $config->{unused_vars}->{global}->{ignore_if};
|
||||
die $@ if $@;
|
||||
}
|
||||
|
||||
foreach my $file (@modules)
|
||||
{
|
||||
my @mod = $file->components;
|
||||
shift @mod; # get rid of '.';
|
||||
shift @mod; # get rid of 'lib';
|
||||
$mod[-1] =~ s/\.pm$//;
|
||||
my $mod = join '::', @mod;
|
||||
|
||||
my %local = %global;
|
||||
foreach my $ignore (@{ $config->{unused_vars}->{module}->{$mod}->{ignore_vars} || []})
|
||||
{
|
||||
$local{ignore_vars}->{$ignore} = 1;
|
||||
}
|
||||
if(defined $config->{unused_vars}->{module}->{$mod}->{ignore_if})
|
||||
{
|
||||
$local{ignore_if} = eval $config->{unused_vars}->{module}->{$mod}->{ignore_if};
|
||||
die $@ if $@;
|
||||
}
|
||||
|
||||
vars_ok($file, %local);
|
||||
}
|
||||
36
xt/release/version.t
Normal file
36
xt/release/version.t
Normal file
@@ -0,0 +1,36 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
use Test::More;
|
||||
use FindBin ();
|
||||
BEGIN {
|
||||
plan skip_all => "test requires Test::Version 1.001001"
|
||||
unless eval q{ use Test::Version 1.001001 qw( version_all_ok ), { has_version => 1 }; 1 };
|
||||
plan skip_all => "test requires Path::Class"
|
||||
unless eval q{ use Path::Class qw( file dir ); 1 };
|
||||
plan skip_all => 'test requires YAML'
|
||||
unless eval q{ use YAML; 1; };
|
||||
}
|
||||
|
||||
use YAML qw( LoadFile );
|
||||
use FindBin;
|
||||
use File::Spec;
|
||||
|
||||
plan skip_all => "test not built yet (run dzil test)"
|
||||
unless -e dir( $FindBin::Bin)->parent->parent->file('Makefile.PL')
|
||||
|| -e dir( $FindBin::Bin)->parent->parent->file('Build.PL');
|
||||
|
||||
my $config_filename = File::Spec->catfile(
|
||||
$FindBin::Bin, 'release.yml'
|
||||
);
|
||||
|
||||
my $config;
|
||||
$config = LoadFile($config_filename)
|
||||
if -r $config_filename;
|
||||
|
||||
if($config->{version}->{dir})
|
||||
{
|
||||
note "using dir " . $config->{version}->{dir}
|
||||
}
|
||||
|
||||
version_all_ok($config->{version}->{dir} ? ($config->{version}->{dir}) : ());
|
||||
done_testing;
|
||||
Reference in New Issue
Block a user