Throw away chaff from the FastMmap fork
Yuval Kogman [Wed, 26 Oct 2005 10:59:41 +0000 (10:59 +0000)]
Changes [deleted file]
MANIFEST [deleted file]
META.yml [deleted file]
Makefile.PL [deleted file]
README [deleted file]

diff --git a/Changes b/Changes
deleted file mode 100644 (file)
index 6789019..0000000
--- a/Changes
+++ /dev/null
@@ -1,46 +0,0 @@
-Revision history for Perl extension Catalyst::Plugin::Session::FastMmap.
-
-0.13 Xxx Xxx 00 00:00:00 EDT 2005
-        - Remove cookie expiriation since it introduced a bug.
-        - expanded documentation
-
-0.12 Thu May 26 00:37:00 EDT 2005
-        - Seconds it should be.
-
-0.11 Thu May 26 00:00:00 EDT 2005
-        - Fixed expire bug
-
-0.10 Mon May 23 22:35:41 EDT 2005
-        - expire cookie at same time as session (Jesse Sheidlower)
-        
-0.09  Mon Apr 18 22:00:00 2005
-        - s/output/body/ (Frank Wiegand)
-
-0.08  Sun Apr 17 00:00:00 2005
-        - Cleaned docs
-        - Added POD tests.
-        - Fixed arguments to Cache::FastMmap.
-          IMPORTANT: The config parmeters has changed, backwards incompatible.
-
-0.07  Wed Mar 28 21:17:00 2005
-        - Fixed urlrewrite on redirect.
-
-0.06  Wed Mar 09 00:48:00 2005
-        - Added option for disabling url rewrite
-        - Documented config options
-
-0.05  Tue Mar 08 12:39:00 2005
-        - fix bug with old sessions after server restart.
-        -  Fixed useless warning on missing output
-
-0.04  Wed Feb 16 22:00:00 2005
-        - added tempdir support (Marcus Ramberg)
-
-0.03  Wed Feb 16 22:00:00 2005
-        - added config parameters (Marcus Ramberg)
-
-0.02  Tue Feb 01 02:00:00 2005
-        - better url rewriting
-
-0.01  Fri Jan 28 22:00:00 2005
-        - first release
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index 502141a..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,9 +0,0 @@
-Changes
-FastMmap.pm
-Makefile.PL
-MANIFEST                       This list of files
-META.yml
-README
-t/01use.t
-t/02pod.t
-t/03podcoverage.t
diff --git a/META.yml b/META.yml
deleted file mode 100644 (file)
index a519bc5..0000000
--- a/META.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Catalyst-Plugin-Session-FastMmap
-version:      0.12
-version_from: FastMmap.pm
-installdirs:  site
-requires:
-    Cache::FastMmap:               0
-    Catalyst:                      2.99
-    Class::Accessor::Fast:         0
-    Class::Data::Inheritable:      0
-    Digest::MD5:                   0
-    File::Temp:                    0
-    URI:                           0
-    URI::Find:                     0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
diff --git a/Makefile.PL b/Makefile.PL
deleted file mode 100644 (file)
index 36fb483..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-use ExtUtils::MakeMaker;
-
-WriteMakefile(
-    NAME      => 'Catalyst::Plugin::Session::FastMmap',
-    AUTHOR    => 'Sebastian Riedel (sri@oook.de)',
-    PREREQ_PM => {
-        Catalyst                 => '2.99',
-        Cache::FastMmap          => 0,
-        Class::Accessor::Fast    => 0,
-        Class::Data::Inheritable => 0,
-        Digest::MD5              => 0,
-        URI                      => 0,
-        URI::Find                => 0,
-        File::Temp               => 0
-    },
-    VERSION_FROM => 'FastMmap.pm'
-);
diff --git a/README b/README
deleted file mode 100644 (file)
index daaceee..0000000
--- a/README
+++ /dev/null
@@ -1,31 +0,0 @@
-NAME
-    Catalyst::Plugin::Session::FastMmap - FastMmap sessions for Catalyst
-
-SYNOPSIS
-        use Catalyst 'Session::FastMmap';
-
-        $c->session->{foo} = 'bar';
-        print $c->sessionid;
-
-DESCRIPTION
-  EXTENDED METHODS
-   finalize
-   prepare_action
-   setup
-  METHODS
-   session
-   uri
-    Extends an uri with session id if needed.
-
-        my $uri = $c->uri('http://localhost/foo');
-
-SEE ALSO
-    Catalyst.
-
-AUTHOR
-    Sebastian Riedel, "sri@cpan.org"
-
-COPYRIGHT
-    This program is free software, you can redistribute it and/or modify it
-    under the same terms as Perl itself.
-