From: Aaron Trevena Date: Sat, 24 Mar 2007 20:37:16 +0000 (+0000) Subject: fixed MANIFEST to include Maypole::HTTPD X-Git-Tag: 2.12~14 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=maypole.git;a=commitdiff_plain;h=5f90e1e118700c4cba7575299aa42dc4ffc0eb67 fixed MANIFEST to include Maypole::HTTPD git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@560 48953598-375a-da11-a14b-00016c27c3ee --- diff --git a/MANIFEST b/MANIFEST index 5e8edcc..83a2a6d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -22,6 +22,8 @@ lib/CGI/Maypole.pm lib/CGI/Untaint/Maypole.pm lib/Maypole.pm lib/Maypole/Application.pm +lib/Maypole/HTTPD.pm +lib/Maypole/HTTPD/Frontend.pm lib/Maypole/CLI.pm lib/Maypole/Config.pm lib/Maypole/Constants.pm diff --git a/lib/Maypole.pm b/lib/Maypole.pm index c6cef44..596479e 100644 --- a/lib/Maypole.pm +++ b/lib/Maypole.pm @@ -462,7 +462,7 @@ to call those actions. You may pass a query string in the usual URL style. You should not fully qualify the Maypole URLs. Note: any HTTP POST or URL parameters passed to the parent are not passed to the -component sub-request, only what is included in the url passed as an argyument +component sub-request, only what is included in the url passed as an argument to the method =cut diff --git a/lib/Maypole/HTTPD.pm b/lib/Maypole/HTTPD.pm index cfeab3b..221e303 100644 --- a/lib/Maypole/HTTPD.pm +++ b/lib/Maypole/HTTPD.pm @@ -10,7 +10,7 @@ use UNIVERSAL::require; # signal to Maypole::Application BEGIN { $ENV{MAYPOLE_HTTPD} = 1 } -our $VERSION = '0.1'; +our $VERSION = '0.2'; =head1 NAME @@ -33,6 +33,7 @@ This is a stand-alone HTTPD for running your Maypole Applications. The constructor. Takes a hash of arguments. Currently supported: port - TCP port to listen to module - Maypole application Module name. + =cut sub new