Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dancer::template::templatetoolkit(3pm) [debian man page]

Dancer::Template::TemplateToolkit(3pm)			User Contributed Perl Documentation		    Dancer::Template::TemplateToolkit(3pm)

NAME
Dancer::Template::TemplateToolkit - Template Toolkit wrapper for Dancer DESCRIPTION
This class is an interface between Dancer's template engine abstraction layer and the Template module. This template engine is recomended for production purposes, but depends on the Template module. In order to use this engine, use the template setting: template: template_toolkit This can be done in your config.yml file or directly in your app code with the set keyword. Note that by default, Dancer configures the Template::Toolkit engine to use <% %> brackets instead of its default [% %] brackets. This can be changed within your config file - for example: template: template_toolkit engines: template_toolkit: start_tag: '[%' stop_tag: '%]' You can also add any options you would normally add to the Template module's initialization. You could, for instance, enable saving the compiled templates: engines: template_toolkit: COMPILE_DIR: 'caches/templates' COMPILE_EXT: '.ttc' By default, Template is used, but you can configure Dancer to use a subclass with the "subclass" option. engines: template_toolkit: subclass: My::Template WRAPPER, META variables, SETs Dancer already provides a WRAPPER-like ability, which we call a "layout". The reason we do not use TT's WRAPPER (which also makes it incompatible with it) is because not all template systems support it. Actually, most don't. However, you might want to use it, and be able to define META variables and regular Template::Toolkit variables. These few steps will get you there: o Disable the layout in Dancer You can do this by simply commenting (or removing) the "layout" configuration in the config.yml file. o Use Template Toolkit template engine Change the configuration of the template to Template Toolkit: # in config.yml template: "template_toolkit" o Tell the Template Toolkit engine who's your wrapper # in config.yml # ... engines: template_toolkit: WRAPPER: layouts/main.tt Done! Everything will work fine out of the box, including variables and META variables. SEE ALSO
Dancer, Template AUTHOR
This module has been written by Alexis Sukrieh LICENSE
This module is free software and is released under the same terms as Perl itself. perl v5.14.2 2012-01-27 Dancer::Template::TemplateToolkit(3pm)

Check Out this Related Man Page

Dancer::ModuleLoader(3pm)				User Contributed Perl Documentation				 Dancer::ModuleLoader(3pm)

NAME
Dancer::ModuleLoader - dynamic module loading helpers for Dancer core components SYNOPSIS
Taken directly from Dancer::Template::TemplateToolkit (which is core): die "Template is needed by Dancer::Template::TemplateToolkit" unless Dancer::ModuleLoader->load('Template'); # we now have Template loaded DESCRIPTION
Sometimes in Dancer core we need to use modules, but we don't want to declare them all in advance in compile-time. These could be because the specific modules provide extra features which depend on code that isn't (and shouldn't) be in core, or perhaps because we only want these components loaded in lazy style, saving loading time a bit. For example, why load Template (which isn't required by Dancer) when you don't use Dancer::Template::TemplateToolkit? To do such things takes a bit of code for localizing $@ and "eval"ing. That code has been refactored into this module to help Dancer core developers. Please only use this for Dancer core modules. If you're writing an external Dancer module (Dancer::Template::Tiny, Dancer::Session::Cookie, etc.), please simply ""use ModuleYouNeed"" in your code and don't use this module. METHODS
/SUBROUTINES load Runs a ""use ModuleYouNeed"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->load('Something') or die "Couldn't load Something "; # load version 5.0 or more Dancer::ModuleLoader->load('Something', '5.0') or die "Couldn't load Something "; # load version 5.0 or more my ($res, $error) = Dancer::ModuleLoader->load('Something', '5.0'); $res or die "Couldn't load Something : '$error' "; Takes in arguments the module name, and optionally the minimum version number required. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. If you need to give argumentto the loading module, please use the method "load_with_params" require Runs a ""require ModuleYouNeed"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->require('Something') or die "Couldn't require Something "; my ($res, $error) = Dancer::ModuleLoader->require('Something'); $res or die "Couldn't require Something : '$error' "; If you are unsure what you need ("require" or "load"), learn the differences between "require" and "use". Takes in arguments the module name. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. load_with_params Runs a ""use ModuleYouNeed qw(param1 param2 ...)"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->load('Something', qw(param1 param2) ) or die "Couldn't load Something "; my ($res, $error) = Dancer::ModuleLoader->load('Something', @params); $res or die "Couldn't load Something : '$error' "; Takes in arguments the module name, and optionally parameters to pass to the import internal method. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. use_lib Runs a ""use lib qw(path1 path2)"" at run time instead of compile time. use Dancer::ModuleLoader; ... Dancer::ModuleLoader->use_lib('path1', @other_paths) or die "Couldn't perform use lib "; my ($res, $error) = Dancer::ModuleLoader->use_lib('path1', @other_paths); $res or die "Couldn't perform use lib : '$error' "; Takes in arguments a list of path to be prepended to @INC, in a similar way than "use lib". However, this is performed at run time, so the list of paths can be generated and dynamic. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. class_from_setting Given a setting in Dancer::Config, composes the class it should be. This is the function that translates: # in config.yaml template: "template_toolkit" To the class: Dancer::Template::TemplateToolkit Example: use Dancer::ModuleLoader; my $class = Dancer::ModuleLoader->class_from_setting( 'Dancer::Template' => 'template_toolkit', ); # $class == 'Dancer::Template::TemplateToolkit $class = Dancer::ModuleLoader->class_from_setting( 'Dancer::Template' => 'tiny', ); # class == 'Dancer::Template::Tiny AUTHOR
Alexis Sukrieh LICENSE AND COPYRIGHT
Copyright 2009-2010 Alexis Sukrieh. 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. perl v5.14.2 2011-11-26 Dancer::ModuleLoader(3pm)
Man Page