-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
# 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
UNIVERSAL::require: 0
distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.21
+generated_by: ExtUtils::MakeMaker version 6.17
# 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,
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 ));