HTML::Mason::PSGIHandler(3pm) | User Contributed Perl Documentation | HTML::Mason::PSGIHandler(3pm) |
HTML::Mason::PSGIHandler - PSGI handler for HTML::Mason
# app.psgi use HTML::Mason::PSGIHandler; my $h = HTML::Mason::PSGIHandler->new( comp_root => "/path/to/doc_root", # required ); my $handler = sub { my $env = shift; $h->handle_psgi($env); };
HTML::Mason::PSGIHandler is a PSGI handler for HTML::Mason. It's based on HTML::Mason::CGIHandler and allows you to process Mason templates on any web servers that support PSGI.
This method returns a subroutine to be used as a PSGI application.
In other words, these are equivalent:
my $app = sub { my $env = shift; $h->handle_psgi($env); }; my $app = $h->as_psgi;
mount '/foo' => HTML::Mason::PSGIHandler->new_psgi( ... );
This method combines "new" and "as_psgi" to immediately return a subroutine that can be used as a PSGI application. It's useful for using inline with Plack::Builder.
The latest code is available from the git repository at <http://github.com/abh/HTML-Mason-PSGIHandler>.
To send patches, make a fork on github and send a pull request.
Please report bugs at <http://github.com/abh/HTML-Mason-PSGIHandler/issues>.
Ask Bjørn Hansen <miyagawa@bulknews.net>, Ricardo Signes <rjbs@cpan.org>, Tatsuhiko Miyagawa <miyagawa@bulknews.net>, Ruslan Zakirov <ruz@bestpractical.com>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
CGI::PSGI Plack PSGI HTML::Mason::CGIHandler
2018-04-02 | perl v5.26.1 |