hdp / HTML-Mason-PSGIHandler forked from miyagawa/HTML-Mason-PSGIHandler

PSGI handler for Mason

This URL has Read+Write access

name age message
file .gitignore Loading commit data...
file .shipit
file Changes
file MANIFEST
file MANIFEST.SKIP
file Makefile.PL
file README
directory lib/
directory t/
directory 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