NAME
    Dancer::Template::TemplateFlute - Template::Flute wrapper for Dancer
VERSION
    Version 0.0092
DESCRIPTION
    This class is an interface between Dancer's template engine abstraction
    layer and the Template::Flute module.
    In order to use this engine, use the template setting:
        template: template_flute
    The default template extension is ".html".
  LAYOUT
    Each layout needs a specification file and a template file. To embed the
    content of your current view into the layout, put the following into
    your specification file, e.g. views/layouts/main.xml:
        
        
        
    This replaces the contents of the following block in your HTML template,
    e.g. views/layouts/main.html:
        
        Your content
        
  ITERATORS
    Iterators can be specified explicitly in the configuration file as
    below.
      engines:
        template_flute:
          iterators:
            fruits:
              class: JSON
              file: fruits.json
  FILTER OPTIONS
    Filter options and classes can be specified in the configuration file as
    below.
      engines:
        template_flute:
          filters:
            currency:
              options:
                int_curr_symbol: "$"
            image:
              class: "Flowers::Filters::Image"
  FORMS
    Dancer::Template::TemplateFlute includes a form plugin
    Dancer::Plugin::Form, which supports Template::Flute forms.
    The token `form' is reserved for forms. It can be a single
    Dancer::Plugin::Form object or an arrayref of Dancer::Plugin::Form
    objects.
    Typical usage for a single form.
    XML Specification
      
      
      
    HTML
      
    Code
      any [qw/get post/] => '/register' => sub {
          my $form = form('registration');
          my %values = %{$form->values};
          # VALIDATE, filter, etc. the values
          $form->fill(\%values);
          template register => {form => $form };
      };
    Usage example for multiple forms
    Specification
      
      
      
      
    HTML
      Register
      
      Login
      
    Code
      any [qw/get post/] => '/multiple' => sub {
          my $login = form('logintest');
          debug to_dumper({params});
          if (params->{login}) {
              my %vals = %{$login->values};
              # VALIDATE %vals here
              $login->fill(\%vals);
          }
          else {
              # pick from session
              $login->fill;
          }
          my $registration = form('registrationtest');
          if (params->{register}) {
              my %vals = %{$registration->values};
              # VALIDATE %vals here
              $registration->fill(\%vals);
          }
          else {
              # pick from session
              $registration->fill;
          }
          template multiple => { form => [ $login, $registration ] };
      };
METHODS
  default_tmpl_ext
    Returns default template extension.
  render TEMPLATE TOKENS
    Renders template TEMPLATE with values from TOKENS.
SEE ALSO
    Dancer, Template::Flute
AUTHOR
    Stefan Hornburg (Racke), 
BUGS
    Please report any bugs or feature requests to `bug-template-flute at
    rt.cpan.org', or through the web interface at
    http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Template-Flute.
SUPPORT
    You can find documentation for this module with the perldoc command.
        perldoc Template::Flute
    You can also look for information at:
    * RT: CPAN's request tracker
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dancer-Template-TemplateFlu
        te
    * AnnoCPAN: Annotated CPAN documentation
        http://annocpan.org/dist/Dancer-Template-TemplateFlute
    * CPAN Ratings
        http://cpanratings.perl.org/d/Dancer-Template-TemplateFlute
    * Search CPAN
        http://search.cpan.org/dist/Dancer-Template-TemplateFlute/
LICENSE AND COPYRIGHT
    Copyright 2011-2013 Stefan Hornburg (Racke) .
    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.