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

CGI::Application::Plugin::DevPopup::Timing(3pm) 	User Contributed Perl Documentation	   CGI::Application::Plugin::DevPopup::Timing(3pm)

NAME
CGI::Application::Plugin::DevPopup::Timing - show timing information about cgiapp stages VERSION
version 1.07 SYNOPSIS
use CGI::Application::Plugin::DevPopup; use CGI::Application::Plugin::DevPopup::Timing; The rest of your application follows ... Output will look roughly like this: Timings Total runtime: 3.1178 sec. Application started at: Thu Sep 22 02:55:35 2005 From To Time taken ------------------------------------------------------------------------- init prerun 0.107513 sec. prerun before expensive operation 0.000371 sec. before expensive operation after expensive operation 3.006688 sec. after expensive operation load_tmpl(dp.html) 0.000379 sec. load_tmpl(dp.html) postrun 0.002849 sec. ADD_TIMING You can add your own timing points within your application by calling the hook at "devpopup_addtiming" with a short label. The table above was created with the following code: $self->call_hook('devpopup_addtiming', 'before expensive operation'); sleep 3; $self->call_hook('devpopup_addtiming', 'after expensive operation'); SEE ALSO
CGI::Application::Plugin::DevPopup, CGI::Application AUTHOR
Rhesa Rozendaal, rhesa@cpan.org BUGS
Please report any bugs or feature requests to bug-cgi-application-plugin-devpopup@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-Application-Plugin-DevPopup <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI- Application-Plugin-DevPopup>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. 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.12.4 2011-10-31 CGI::Application::Plugin::DevPopup::Timing(3pm)
Man Page