]> git.decadent.org.uk Git - maypole.git/commitdiff
fixed MANIFEST to include Maypole::HTTPD
authorAaron Trevena <aaron.trevena@gmail.com>
Sat, 24 Mar 2007 20:37:16 +0000 (20:37 +0000)
committerAaron Trevena <aaron.trevena@gmail.com>
Sat, 24 Mar 2007 20:37:16 +0000 (20:37 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@560 48953598-375a-da11-a14b-00016c27c3ee

MANIFEST
lib/Maypole.pm
lib/Maypole/HTTPD.pm

index 5e8edcc8ccc69d18849339b54e70fcfa341bbda7..83a2a6df00bb99bee5f633bc4c83791c7ff04f79 100644 (file)
--- 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/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
 lib/Maypole/CLI.pm
 lib/Maypole/Config.pm
 lib/Maypole/Constants.pm
index c6cef443b397ddf128dc25354cd61553dbf599c2..596479e21ec8f2b57cbe4dd20dc1957c2385ad18 100644 (file)
@@ -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
 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
 to the method
 
 =cut
index cfeab3b5544d81aa6e6818b12d709b2f8bc4299b..221e3031f068285cc42d56ccc2c38898d8b453b1 100644 (file)
@@ -10,7 +10,7 @@ use UNIVERSAL::require;
 # signal to Maypole::Application 
 BEGIN { $ENV{MAYPOLE_HTTPD} = 1 }
 
 # signal to Maypole::Application 
 BEGIN { $ENV{MAYPOLE_HTTPD} = 1 }
 
-our $VERSION = '0.1';
+our $VERSION = '0.2';
 
 =head1 NAME
 
 
 =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.
 The constructor. Takes a hash of arguments. Currently supported:
     port - TCP port to listen to
     module - Maypole application Module name.
+
 =cut 
 
 sub new 
 =cut 
 
 sub new