DOKK / manpages / debian 12 / libtext-micromason-perl / Text::MicroMason::ApacheHandler.3pm.en
Text::MicroMason::ApacheHandler(3pm) User Contributed Perl Documentation Text::MicroMason::ApacheHandler(3pm)

Text::MicroMason::ApacheHandler - Use MicroMason from mod_perl

In your httpd.conf or equivalent Apache configuration file:

  PerlModule Text::MicroMason::ApacheHandler
  <Files *.mm>
    SetHandler perl-script
    PerlHandler Text::MicroMason::ApacheHandler
  </Files>

In your document root or other web-accessible directory:

  <% my $visitor = $r->connection->remote_host(); %>
  <html>
    Hello there <%= $visitor %>! 
    The time is now <%= localtime() %>.
  </html>

Caution: This module is new, experimental, and incomplete. Not intended for production use. Interface subject to change. If you're interested in this capability, your feedback would be appreciated.

The following configuration parameters are supported:

    PerlSetVar MicroMasonSyntax HTMLMason
    

Name of the syntax class that will compile the templates. Defaults to HTMLMason.

    PerlAddVar MicroMasonMixins Safe
    PerlAddVar MicroMasonMixins CatchErrors
    

List of additional mixin classes to be enabled.

    PerlAddVar MicroMasonAttribs "-AllowGlobals, allow_globals => '$r'"
    

Allows for any set of attributes to be defined. Mixin names prefaced with a dash can also be included.

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.

2022-11-19 perl v5.36.0