Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

text::micromason::templatedir(3pm) [debian man page]

MicroMason::TemplateDir(3pm)				User Contributed Perl Documentation			      MicroMason::TemplateDir(3pm)

NAME
Text::MicroMason::TemplateDir - Use Base Directory and Relative Paths SYNOPSIS
Instead of using this class directly, pass its name to be mixed in: use Text::MicroMason; my $mason = Text::MicroMason->new( -TemplateDir, template_root=>'/foo' ); Use the standard compile and execute methods to parse and evalute templates: print $mason->compile( file=>$filepath )->( 'name'=>'Dave' ); print $mason->execute( file=>$filepath, 'name'=>'Dave' ); Templates stored in files are looked up relative to the template root: print $mason->execute( file=>"includes/greeting.msn", 'name'=>'Charles'); When including other files into a template you can use relative paths: <& ../includes/greeting.msn, name => 'Alice' &> DESCRIPTION
This module changes the resolution of files passed to compile() and execute() to be relative to a base directory path or to the currently executing template. Supported Attributes template_root Base directory from which to find templates. strict_root Optional directory beyond which not to read files. If set to 1, uses template_root, Causes read_file to croak if any filename outside of the root is provided. (Note that this is not a chroot jail and only affects attempts to load a file as a template; for greater security see the chroot() builtin and Text::MicroMason::Safe.) Private Methods prepare Intercepts uses of file templates and applies the base-path adjustment. read_file Intercepts file access to check for strict_root. EXCEPTIONS The following additional exceptions are generated by Text::MicroMason::TemplateDir when appropriate: o Text::MicroMason::TemplateDir: Strict root '%s' doesn't seem to exist The strict_root directory (or template_root if strict_root is '1') doesn't seem to exist. Strict root checking uses Cwd's abs_path(), and requires the strict_root directory to exist at the time the check is performed. o Text::MicroMason::TemplatePath: Template '%s' not in required base path '%s' The template found in the configured template path was not within the configured strict_root directory. This may be caused by requesting an absolute template filename not within strict_root, or by specifying a strict_root which does not match the configured template path. SEE ALSO
For an overview of this templating framework, see Text::MicroMason. This is a mixin class intended for use with Text::MicroMason::Base. For distribution, installation, support, copyright and license information, see Text::MicroMason::Docs::ReadMe. perl v5.10.1 2009-11-11 MicroMason::TemplateDir(3pm)

Check Out this Related Man Page

MicroMason::ExecuteCache(3pm)				User Contributed Perl Documentation			     MicroMason::ExecuteCache(3pm)

NAME
Text::MicroMason::ExecuteCache - Use a Cache for Template Results SYNOPSIS
Instead of using this class directly, pass its name to be mixed in: use Text::MicroMason; my $mason = Text::MicroMason->new( -ExecuteCache ); Use the standard compile method to parse a template into a subroutine: my $subref = $mason->compile( text=>$template ); print $subref->( 'name'=>'Dave' ); The template does not have to be interpreted the second time because the results are cached: print $subref->( 'name'=>'Dave' ); # fast second time When run with different arguments, the template is re-interpreted and the results stored: print $subref->( 'name'=>'Bob' ); # first time for Bob print $subref->( 'name'=>'Bob' ); # fast second time for Bob DESCRIPTION
Caches the output of templates. Note that you should not use this feature if your template code interacts with any external state, such as making changes to an external data source or obtaining values that will change in the future. (However, you can still use the caching provided by Text::MicroMason::CompileCache.) Public Methods compile() Wraps each template that is compiled into a Perl subroutine in a memoizing closure. Supported Attributes execute_cache Defaults to an instance of Text::MicroMason::Cache::Simple. This module uses a simple cache interface that is widely supported: the only methods required are "get($key)" and "set($key, $value)". You can use the simple cache classes provided in the Text::MicroMason::Cache:: namespace, or select other caching modules on CPAN that support the interface described in Cache::Cache. SEE ALSO
For an overview of this templating framework, see Text::MicroMason. This is a mixin class intended for use with Text::MicroMason::Base. For distribution, installation, support, copyright and license information, see Text::MicroMason::Docs::ReadMe. perl v5.10.1 2007-01-29 MicroMason::ExecuteCache(3pm)
Man Page