bryansum / HTML-Mason-PSGIHandler

PSGI handler for Mason

Home Page:http://search.cpan.org/dist/HTML-Mason-PSGIHandler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

PSGI handler for Mason

http://search.cpan.org/dist/HTML-Mason-PSGIHandler


Languages

Language:Perl 100.0%