hdp / HTML-Mason-PSGIHandler forked from miyagawa/HTML-Mason-PSGIHandler
- Source
- Commits
- Network (2)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
.shipit | ||
| |
Changes | ||
| |
MANIFEST | ||
| |
MANIFEST.SKIP | ||
| |
Makefile.PL | ||
| |
README | ||
| |
lib/ | ||
| |
t/ | ||
| |
xt/ |
README
NAME
HTML::Mason::PSGIHandler - PSGI handler for HTML::Mason
SYNOPSIS
# 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);
};
DESCRIPTION
HTML::Mason::PSGIHandler is a PSGI handler for HTML::Mason. It's based
on HTML::Mason::CGIHandler and allows you to load Mason ".html" files on
any web servers that support PSGI.
AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO
CGI::PSGI Plack PSGI HTML::Mason::CGIHandler

