Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Text::MicroMason::PassVariables - Pass template data as variables SYNOPSIS
Instead of using this class directly, pass its name to be mixed in: use Text::MicroMason; my $mason = Text::MicroMason->new( -PassVariables ); Use the standard compile and execute methods to parse and evalute templates: print $mason->compile( text=>$template )->( 'name'=>'Dave' ); print $mason->execute( text=>$template, 'name'=>'Dave' ); Templates can now access their arguments as global variables: Welcome, <% $name %>! DESCRIPTION
Like Text::Template, this package passes in template arguments as package variables. For example, if you pass in an argument list of "foo => 23", it will set the variable $foo in the package your template is compiled in. This allows template code to refer to $name rather than $ARGS{name}. The strict pragma is disabled to facilitate these variable references. Caution: Please note that this approach has some drawbacks, including the risk of clobbering global variables used for other purposes. It is included primarily to allow the TextTemplate module to emulate the behavior of Text::Template, and for quick-and-dirty simple templates where succinctness is more important than robustness. Supported Attributes package Target package namespace. Defaults to Text::MicroMason::Commands. Private Methods assembler_rules() Adds Perl fragments to handle package and symbol table munging. assemble() Modifies Perl subroutine to embed the target package namespace. install_args_hash() Performs symbol table munging to transfer the contents of an arguments hash into variables in a target namespace. SEE ALSO
The interface being emulated is described in Text::Template. 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 2010-03-05 MicroMason::PassVariables(3pm)

Check Out this Related Man Page

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

NAME
Text::MicroMason::CompileCache - Use a Cache for Template Compilation SYNOPSIS
Instead of using this class directly, pass its name to be mixed in: use Text::MicroMason; my $mason = Text::MicroMason->new( -CompileCache ); Use the standard compile and execute methods to parse and evalute templates: print $mason->execute( text=>$template, 'name'=>'Dave' ); The template does not have to be parsed the second time because it's cached: print $mason->execute( text=>$template, 'name'=>'Bob' ); Templates stored in files are also cached, until the file changes: print $mason->execute( file=>"./greeting.msn", 'name'=>'Charles'); DESCRIPTION
Public Methods compile() Caching wrapper around normal compile() behavior. Supported Attributes compile_cache_text Defaults to an instance of Text::MicroMason::Cache::Simple. You may pass in your own cache object. compile_cache_file Defaults to an instance of Text::MicroMason::Cache::File. You may pass in your own cache object. 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::CompileCache(3pm)
Man Page