Dancer::Template::Tiny - Template::Tiny backend to Dancer


Dancer-Template-Tiny documentation Contained in the Dancer-Template-Tiny distribution.

Index


Code Index:

NAME

Top

Dancer::Template::Tiny - Template::Tiny backend to Dancer

VERSION

Top

version 0.03

SYNOPSIS

Top

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. :)

SUBROUTINES/METHODS

Top

render

Renders the template. Accepts a string to a file or a reference to a string of the template.

AUTHOR

Top

Sawyer X, <xsawyerx at cpan.org>

BUGS

Top

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.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Dancer::Template::Tiny

You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dancer-Template-Tiny

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Dancer-Template-Tiny

* CPAN Ratings

http://cpanratings.perl.org/d/Dancer-Template-Tiny

* Search CPAN

http://search.cpan.org/dist/Dancer-Template-Tiny/

ACKNOWLEDGEMENTS

Top

Dancer

LICENSE AND COPYRIGHT

Top

AUTHOR

Top

  Sawyer X <xsawyerx@cpan.org>

COPYRIGHT AND LICENSE

Top


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__