Maypole::View::Mason - A HTML::Mason view class for Maypole |
Maypole::View::Mason - A HTML::Mason view class for Maypole
BeerDB->config->{view} = "Maypole::View::Mason";
And then:
<%args> @breweries </%args>
% for my $brewery (@breweries) { ... <TD><% $brewery->name %></TD> % } ...
This class allows you to use HTML::Mason
components for your Maypole
templates. It provides precisely the same path searching and template
variables as the Template Toolkit view class, although you will need
to produce your own set of templates as the factory-supplied templates
are, of course, Template Toolkit ones.
Please see the Maypole manual, and in particular, the View
chapter,
for the template variables available and for a refresher on how template
components are resolved.
This is the main method of this module. See the Maypole::View::Base manpage.
Maypole,the HTML::Mason manpage
Simon Cozens Marcus Ramberg
This module was made possible thanks to a Perl Foundation grant.
Maypole::View::Mason - A HTML::Mason view class for Maypole |