Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

html::template::plugin::dot::helpers(3pm) [debian man page]

HTML::Template::Plugin::Dot::Helpers(3pm)		User Contributed Perl Documentation		 HTML::Template::Plugin::Dot::Helpers(3pm)

NAME
HTML::Template::Plugin::Dot::Helpers - Add useful objects to your templates VERSION
Version 0.04 SYNOPSIS
use HTML::Template::Plugin::Dot::Helpers; Then in your template, you can do: <tmpl_var Number.format_currency(orderitem.price)> DESCRIPTION
This helper class adds some useful objects to your Dot-enabled templates (see HTML::Template::Plugin::Dot). Added objects Number An extended Number::Format object. See Number::Format for documentation. Note that only the object oriented methods are supported here. I've added several generic numerical methods. Most (well, all in this release) are boolean methods, useful in "<tmpl_if>s". They are: equals - test whether two numbers are equal (==) le, lt, ge, gt - test how two numbers compare (implemented with <=, <, >=, > respectively) The following is not yet implemented. String Adds generic string testing functions similar to the above: equals - test whether two strings are equal (eq) le, lt, ge, gt - test how two strings compare lexically AUTHOR
Rhesa Rozendaal, "<rhesa@cpan.org>" BUGS
Please report any bugs or feature requests to "bug-html-template-plugin-dot-helpers@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-Template-Plugin-Dot-Helpers>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. ACKNOWLEDGEMENTS
COPYRIGHT &; LICENSE Copyright 2005 Rhesa Rozendaal, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-01-04 HTML::Template::Plugin::Dot::Helpers(3pm)

Check Out this Related Man Page

Module::Starter::Plugin::Template(3pm)			User Contributed Perl Documentation		    Module::Starter::Plugin::Template(3pm)

NAME
Module::Starter::Plugin::Template - module starter with templates VERSION
Version 1.58 SYNOPSIS
use Module::Starter qw( Module::Starter::Simple Module::Starter::Plugin::Template ); Module::Starter->create_distro(%args); DESCRIPTION
This plugin is designed to be added to a Module::Starter::Simple-compatible Module::Starter class. It adds stub methods for template retrieval and rendering, and it replaces all of Simple's _guts methods with methods that will retrieve and render the apropriate templates. CLASS METHODS
"new(%args)" This plugin calls the "new" supermethod and then initializes the template store and renderer. (See "templates" and "renderer" below.) OBJECT METHODS
"templates()" This method is used to initialize the template store on the Module::Starter object. It returns a hash of templates; each key is a filename and each value is the body of the template. The filename Module.pm is used for the module template. "renderer()" This method is used to initialize the template renderer. Its result is stored in the object's "renderer" entry. The implementation will determine its use. "render($template, \%options)" The "render" method will render the template passed to it, using the data in the Module::Starter object and in the hash of passed parameters. _guts methods All of the "FILE_guts" methods from Module::Starter::Simple are subclassed to look something like this: sub file_guts { my $self = shift; my %options; @options{qw(first second third)} = @_; my $template = $self->{templates}{filename}; $self->render($template, \%options); } These methods will need to be rewritten when (as is likely) Module::Starter::Simple's _guts methods are refactored into a registry. module_guts Makefile_PL_guts MI_Makefile_PL_guts Build_PL_guts Changes_guts README_guts t_guts MANIFEST_guts item ignores_guts AUTHOR
Ricardo SIGNES, "<rjbs at cpan.org>" Bugs Please report any bugs or feature requests to "bug-module-starter at rt.cpan.org", or through the web interface at <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. COPYRIGHT
Copyright 2005-2007 Ricardo SIGNES, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-07-02 Module::Starter::Plugin::Template(3pm)
Man Page