1HTML::Mason::PSGIHandleUrs(e3r)Contributed Perl DocumentHaTtMiLo:n:Mason::PSGIHandler(3)
2
3
4

NAME

6       HTML::Mason::PSGIHandler - PSGI handler for HTML::Mason
7

SYNOPSIS

9         # app.psgi
10         use HTML::Mason::PSGIHandler;
11
12         my $h = HTML::Mason::PSGIHandler->new(
13             comp_root => "/path/to/doc_root", # required
14         );
15
16         my $handler = sub {
17             my $env = shift;
18             $h->handle_psgi($env);
19         };
20

DESCRIPTION

22       HTML::Mason::PSGIHandler is a PSGI handler for HTML::Mason. It's based
23       on HTML::Mason::CGIHandler and allows you to process Mason templates on
24       any web servers that support PSGI.
25

SUPPORT

27       ·   Git Repository
28
29           The latest code is available from the git repository at
30           http://github.com/abh/HTML-Mason-PSGIHandler
31           <http://github.com/abh/HTML-Mason-PSGIHandler>.
32
33           To send patches, make a fork on github and send a pull request.
34
35       ·   Bugs
36
37           Please report bugs at
38           http://github.com/abh/HTML-Mason-PSGIHandler/issues
39           <http://github.com/abh/HTML-Mason-PSGIHandler/issues>.
40

AUTHORS

42       Ask Bjorn Hansen <miyagawa@bulknews.net>, Ricardo Signes
43       <rjbs@cpan.org>, Tatsuhiko Miyagawa <miyagawa@bulknews.net>.
44

LICENSE

46       This library is free software; you can redistribute it and/or modify it
47       under the same terms as Perl itself.
48

SEE ALSO

50       CGI::PSGI Plack PSGI HTML::Mason::CGIHandler
51
52
53
54perl v5.12.2                      2010-10-22       HTML::Mason::PSGIHandler(3)
Impressum