]> git.decadent.org.uk Git - maypole.git/commitdiff
Maypole release time.
authorSimon Cozens <simon@simon-cozens.org>
Wed, 11 Feb 2004 17:37:55 +0000 (17:37 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Wed, 11 Feb 2004 17:37:55 +0000 (17:37 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@62 48953598-375a-da11-a14b-00016c27c3ee

Changes
META.yml
Makefile.PL
lib/Maypole.pm

diff --git a/Changes b/Changes
index 936aa116c8c65a9c7d5589230cbc3ce4f9df00d9..f3b0f863f22a8218ba656391614ecdd11e60ba95 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
-Revision history for Perl extension Apache::MVC.
+Revision history for Perl extension Maypole 
+
+1.0   Wed Feb 11 17:34:12 GMT 2004
+    - Renamed from Apache::MVC to Maypole.
+    - Clearer separation of model and view classes from controller
+    - Factoring out of Apache-specific code back into Apache::MVC
 
 0.2   Thu Feb  5 18:03:33 GMT 2004
     - This release adds paging of list results and ordering by column
index d2d19aa7c32ee6a688430e74b73ff510b0e19c96..759d1a6c54edf461d5060940d9d6a2b000f58e93 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,10 +1,9 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Apache-MVC
-version:      0.2
-version_from: lib/Apache/MVC.pm
+name:         Maypole
+version:      1.0
+version_from: lib/Maypole.pm
 installdirs:  site
-license:      perl
 requires:
     Apache::Request:               0
     CGI::Untaint:                  0
@@ -20,4 +19,4 @@ requires:
     UNIVERSAL::require:            0
 
 distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.21
+generated_by: ExtUtils::MakeMaker version 6.17
index 7ba8922a4316de78f87c0f039fe2d314924ae49c..767f8ec5c53f3afce78830af3df72a3a4515eddd 100644 (file)
@@ -3,8 +3,8 @@ use ExtUtils::MakeMaker;
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 WriteMakefile(
-    NAME              => 'Apache::MVC',
-    VERSION_FROM      => 'lib/Apache/MVC.pm', # finds $VERSION
+    NAME              => 'Maypole',
+    VERSION_FROM      => 'lib/Maypole.pm', # finds $VERSION
     PREREQ_PM         => {
         Class::DBI::Loader => 0,
         Class::DBI::AbstractSearch => 0,
index 4f73848fd700a6b9320de342f16e094c4997d72b..54f0c0d7ec7c5640d0a348064c8180fe9b50fa81 100644 (file)
@@ -5,7 +5,7 @@ use UNIVERSAL::require;
 use Apache::Constants ":common";
 use strict;
 use warnings;
-our $VERSION = "0.2";
+our $VERSION = "1.0";
 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
 __PACKAGE__->mk_accessors ( qw( ar params query objects model_class
 args action template ));