From 8237e83ed726d86f1ef754e51077eb2aff0cd4ed Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Fri, 16 Apr 2004 17:17:13 +0000 Subject: [PATCH] There goes 1.4. git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@139 48953598-375a-da11-a14b-00016c27c3ee --- Changes | 10 ++++++++++ MANIFEST | 3 +++ META.yml | 2 +- Makefile.PL | 2 +- doc/BuySpy.pod | 18 +++++++++++++----- lib/Maypole.pm | 2 +- 6 files changed, 29 insertions(+), 8 deletions(-) diff --git a/Changes b/Changes index df7728d..ff38f30 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ Revision history for Perl extension Maypole +1.4 Fri Apr 16 18:11:41 BST 2004 + - Much, much more documentation + - CLI debugging mode + - CGI frontend (CGI::Maypole) + - Beginnings of a test suite + - Maypole::Constants module to remove dependency on Apache + - Refactoring of view classes to base/module-specific modules + - HTML::Mason view class + - Various small template bug fixes and enhancements + 1.3 Fri Mar 26 19:16:33 GMT 2004 - Fix serious order/CDBI::Page interaction bug. - Die if model/view class can't be compiled. diff --git a/MANIFEST b/MANIFEST index f4cf27a..701054d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2,14 +2,17 @@ MANIFEST Changes doc/About.pod doc/Beer.pod +doc/BuySpy.pod doc/Flox.pod doc/Model.pod doc/Overview.pod doc/Request.pod doc/StandardTemplates.pod doc/View.pod +doc/Templates.pod doc/makedoc.pl ex/BeerDB.pm +lib/CGI/Maypole.pm lib/Maypole/CLI.pm lib/Maypole/Constants.pm lib/Maypole/Model/Base.pm diff --git a/META.yml b/META.yml index 9b54208..97c0081 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Maypole -version: 1.3 +version: 1.4 version_from: lib/Maypole.pm installdirs: site requires: diff --git a/Makefile.PL b/Makefile.PL index f085b6a..ed3b4a1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,7 +20,7 @@ WriteMakefile( Template => 0, }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'lib/Apache/MVC.pm', # retrieve abstract from module + (ABSTRACT_FROM => 'lib/Maypole.pm', # retrieve abstract from module AUTHOR => 'Simon Cozens ') : ()), ); diff --git a/doc/BuySpy.pod b/doc/BuySpy.pod index ead5e20..ef3d872 100644 --- a/doc/BuySpy.pod +++ b/doc/BuySpy.pod @@ -230,16 +230,23 @@ since we don't have the concept of a logged-in user and so we don't distinguish between the tabs that anyone can see and those than only an admin can see, but we'll come back to it later. Still, 104 lines, eh? -The actual tab list is presented here: +The actual tab list is presented here: (reformated slightly for sanity) - + -  <%# ((TabStripDetails) Container.DataItem).TabName %>  +   + <%# ((TabStripDetails) Container.DataItem).TabName %>  -  <%# ((TabStripDetails) Container.DataItem).TabName %>  +   + <%# ((TabStripDetails) Container.DataItem).TabName %>  @@ -262,7 +269,8 @@ list directly, displaying the currently selected tab differently:  [%tab.name%]  [% ELSE %] -  [%a_tab.name%]  +  [%a_tab.name%]  [% END %] [% END %] diff --git a/lib/Maypole.pm b/lib/Maypole.pm index 70bfd0b..e4b36bc 100644 --- a/lib/Maypole.pm +++ b/lib/Maypole.pm @@ -4,7 +4,7 @@ use attributes (); use UNIVERSAL::require; use strict; use warnings; -our $VERSION = "1.3"; +our $VERSION = "1.4"; __PACKAGE__->mk_classdata($_) for qw( config init_done view_object ); __PACKAGE__->mk_accessors ( qw( ar params query objects model_class args action template )); -- 2.39.2