| Dancer-Template-Tiny documentation | Contained in the Dancer-Template-Tiny distribution. |
Dancer::Template::Tiny - Template::Tiny backend to Dancer
version 0.03
This template engine allows you to use Template::Tiny in Dancer.
Template::Tiny is an implementation of a subset of Template::Toolkit (the major parts) which takes much less memory and is faster. If you're only using the main functions of Template::Toolkit, you could use Template::Tiny. You can also seemlessly move back to Template::Toolkit whenver you want.
You can read more on Template::Tiny.
To use this engine, all you need to configure in your Dancer's
config.yaml:
template: "tiny"
Of course, you can also set this while working using set:
# code code code
set template => 'tiny';
Since Dancer has internal support for a wrapper-like option with the
layout configuration option, you have a WRAPPER like with
Template::Toolkit even though Template::Tiny doesn't really support it. :)
Renders the template. Accepts a string to a file or a reference to a string of the template.
Sawyer X, <xsawyerx at cpan.org>
Please report any bugs or feature requests to
bug-dancer-template-tiny at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dancer-Template-Tiny.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Dancer::Template::Tiny
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dancer-Template-Tiny
Copyright 2010 Sawyer X.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
Sawyer X <xsawyerx@cpan.org>
This software is copyright (c) 2010 by Sawyer X.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dancer-Template-Tiny documentation | Contained in the Dancer-Template-Tiny distribution. |
use strict; use warnings; package Dancer::Template::Tiny; BEGIN { $Dancer::Template::Tiny::VERSION = '0.03'; } # ABSTRACT: Template::Tiny backend to Dancer use Template::Tiny; use Dancer::FileUtils 'read_file_content'; use base 'Dancer::Template::Abstract'; my $_template = Template::Tiny->new; sub render($$$) { my ( $self, $template, $tokens ) = @_; ( ref $template || -f $template ) or die "$template is not a regular file or reference"; my $template_data = ref $template ? ${$template} : read_file_content($template); my $content; $_template->process( \$template_data, $tokens, \$content, ) or die "Could not process template file '$template'"; return $content; } 1;
__END__