Author: spadkins
Date: Wed Feb 27 06:17:28 2008
New Revision: 10845
Modified:
p5ee/trunk/App-Context/CHANGES
p5ee/trunk/App-Context/MANIFEST
p5ee/trunk/App-Context/Makefile.PL
Log:
updated the dependencies so that the CPAN tests don't fail
Modified: p5ee/trunk/App-Context/CHANGES
==============================================================================
--- p5ee/trunk/App-Context/CHANGES (original)
+++ p5ee/trunk/App-Context/CHANGES Wed Feb 27 06:17:28 2008
@@ -2,6 +2,9 @@
# CHANGE LOG
#########################################
+VERSION 0.9661
+ x updated the dependencies so that the CPAN tests don't fail
+
VERSION 0.966
x add SharedDatastore as a useful service (with a Repository-based
implementation)
x improved support for "temporary" services (named "temporary" or with the
{temporary} arg)
Modified: p5ee/trunk/App-Context/MANIFEST
==============================================================================
--- p5ee/trunk/App-Context/MANIFEST (original)
+++ p5ee/trunk/App-Context/MANIFEST Wed Feb 27 06:17:28 2008
@@ -1,14 +1,14 @@
-CHANGES
-MANIFEST
-Makefile.PL
-README
-TODO
bin/app
bin/app-apache
bin/call
+cgi-bin/app
+CHANGES
+INSTALL.SKIP
lib/Apache/App.pm
lib/App.pm
+lib/App/adminguide/cvs.pod
lib/App/Authentication.pm
+lib/App/Authentication/Htpasswd.pm
lib/App/Authorization.pm
lib/App/CallDispatcher.pm
lib/App/CallDispatcher/HTTPSimple.pm
@@ -19,8 +19,22 @@
lib/App/Context.pm
lib/App/Context/Cmd.pm
lib/App/Context/HTTP.pm
+lib/App/Context/POE.pm
+lib/App/Context/POE/Server.pm
+lib/App/Context/POE/ClusterController.pm
+lib/App/Context/POE/ClusterNode.pm
+lib/App/Context/Server.pm
+lib/App/datetime.pod
+lib/App/devguide.pod
lib/App/Exceptions.pm
+lib/App/exceptions.pod
+lib/App/faq.pod
+lib/App/installguide.pod
+lib/App/installguide/hosted.pod
+lib/App/installguide/win32.pod
lib/App/MessageDispatcher.pm
+lib/App/perlstyle.pod
+lib/App/quickstart.pod
lib/App/Reference.pm
lib/App/Request.pm
lib/App/Request/CGI.pm
@@ -39,33 +53,24 @@
lib/App/Session/Cookie.pm
lib/App/Session/HTMLHidden.pm
lib/App/SessionObject.pm
+lib/App/SharedDatastore.pm
lib/App/UserAgent.pm
lib/App/ValueDomain.pm
-lib/App/quickstart.pod
-lib/App/faq.pod
-lib/App/installguide.pod
-lib/App/installguide/win32.pod
-lib/App/installguide/hosted.pod
-lib/App/adminguide/cvs.pod
-lib/App/devguide.pod
-lib/App/perlstyle.pod
-lib/App/exceptions.pod
-lib/App/datetime.pod
-lib/App/Context.pm
-lib/App/exceptions.pod
-lib/App/adminguide/cvs.pod
-lib/App/datetime.pod
-lib/App/devguide.pod
+Makefile.PL
+MANIFEST
+META.yml Module meta-data (added by MakeMaker)
+README
+t/app.ini
+t/app.pl
+t/app.properties
t/App.t
+t/app.xml
+t/AppSessionObjectTest.pm
t/Conf.t
t/Context.t
t/Reference.t
t/Serializer.t
t/Service.t
t/Session.t
-t/app.ini
-t/app.pl
-t/app.properties
-t/app.xml
-t/AppSessionObjectTest.pm
-META.yml Module meta-data (added by MakeMaker)
+t/SharedDatastore.t
+TODO
Modified: p5ee/trunk/App-Context/Makefile.PL
==============================================================================
--- p5ee/trunk/App-Context/Makefile.PL (original)
+++ p5ee/trunk/App-Context/Makefile.PL Wed Feb 27 06:17:28 2008
@@ -14,21 +14,40 @@
);
%opts = (
- 'NAME' => 'App-Context',
- 'DISTNAME' => 'App-Context',
- 'VERSION' => '0.966',
- 'EXE_FILES' => [ @programs ],
- 'PREREQ_PM' => {
- 'App::Options' => "0.01", # for loading a startup
configuration file
- 'Compress::Zlib' => "0.01", # for compressed serialization
and browser responses
- 'Data::Dumper' => "0.01", # used for debugging
- 'Date::Parse' => "0.01", # date support
- 'Date::Format' => "0.01", # date support
- 'Exception::Class' => "0.01", # allows exception hierarchies
- 'Class::Data::Inheritable' => "0.01", # [prereq for Exception::Class]
- 'Devel::StackTrace' => "0.01", # [prereq for Exception::Class]
- 'MIME::Base64' => "2.1", # used for turning binary
(serialized?) data into text (Sessions)
- 'Storable' => "0.01", # used for serialization
everywhere
+ "NAME" => "App-Context",
+ "DISTNAME" => "App-Context",
+ "VERSION" => "0.9661",
+ "EXE_FILES" => [ @programs ],
+ "PREREQ_PM" => {
+ # "Apache" => "0.01", # used for mod_perl
integration
+ "App::Options" => "0.01", # for loading a
startup configuration file
+ "CGI" => "0.01", # tbd
+ "CGI::Carp" => "0.01", # tbd
+ "Class::Data::Inheritable" => "0.01", # [prereq for
Exception::Class]
+ "Compress::Zlib" => "0.01", # for compressed
serialization and browser responses
+ "Data::Dumper" => "0.01", # used for debugging
+ "Date::Parse" => "0.01", # date support
+ "Date::Format" => "0.01", # date support
+ "Devel::StackTrace" => "0.01", # [prereq for
Exception::Class]
+ "Digest::SHA" => "0.01", # tbd
+ "Exception::Class" => "0.01", # allows exception
hierarchies
+ "HTTP::Status" => "0.01", # tbd
+ "IO::Handle" => "0.01", # tbd
+ "IO::Socket" => "0.01", # tbd
+ "IO::Socket::INET" => "0.01", # tbd
+ "MIME::Base64" => "2.1", # used for turning
binary (serialized?) data into text (Sessions)
+ "Pod::Checker" => "0.01", # tbd
+ # "POE" => "0.01", # tbd
+ # "POE::Component::IKC" => "0.01", # tbd
+ # "POE::Component::Server::SimpleHTTP" => "0.01", # tbd
+ "POSIX" => "0.01", # tbd
+ "Socket" => "0.01", # tbd
+ "Storable" => "0.01", # used for
serialization everywhere
+ "Sys::Hostname" => "0.01", # tbd
+ "Test::More" => "0.01", # tbd
+ "Time::HiRes" => "0.01", # tbd
+ "XML::Simple" => "0.01", # tbd
+ "YAML" => "0.01", # tbd
},
);