Description
-----------
This is version 0.04 of Apache::SessionManager

This package contains an Apache mod_perl module to manage HTTP sessions.
Apache::SessionManager is a mod_perl module that helps 
session management of a web application. This simple module is a 
wrapper around Apache::Session persistence framework for session data.
It creates a session object and makes it available to all other handlers 
transparenlty by putting it in pnotes. 

See perldoc Apache::SessionManager for module documentation and use

Changes from previous version
-----------------------------

This is a maintenance release. It fix some problems 
of test suite.

	+ Set '/' as default path attribute for session cookies
	! Updated Makefile.PL in order to skip generation of Apache test section
	  in Makefile if 'use Apache::test' fails (notice by Jeroen Latour 
	  <jlatour@www.arens.nl>) 
	! Updated t/01real.t in order to skip it if 'use Apache::test' fails.

Installation
------------
In order to install and use this package you will need Perl version
5.005 or better.  Installation as usual:
 
   % perl Makefile.PL
   % make
   % make test
   % su
     Password: *******
   % make install

Prerequisites
-------------
- mod_perl (of course) >= 1.24 with the appropriate call-back hooks (PERL_TRANS=1)
- Apache::Request >= 0.33 (libapreq) is required 
     (http://www.cpan.org/modules/by-module/Apache/libapreq-x.yy.tar.gz)
- Apache::Session >= 0.53 is required
     (http://www.cpan.org/modules/by-module/Apache/Apache-Session-x.yy.tar.gz)

Copyright (C) 2001,2002 Enrico Sorcinelli. All rights reserved.
This program is free software; you can redistribute it 
and/or modify it under the same terms as Perl itself. 

Author: Enrico Sorcinelli <enrico@sorcinelli.it>

Part of Makefile.PL contains Perl (cool!) code of Joshua Chamas
Apache-ASP Makefile.PL installation script