]> git.decadent.org.uk Git - maypole.git/blobdiff - Changes
added missing file
[maypole.git] / Changes
diff --git a/Changes b/Changes
index d0280c96bd14718f9df8df2bc64d7967da7a106e..44d53392a90e4e325347a955a8550a56783ad5aa 100644 (file)
--- a/Changes
+++ b/Changes
-Revision history for Perl extension Maypole 
-
-2.05  Tue Oct 28 20:00:00 2004
+This file documents the revision history for Perl extension Maypole.
+For information about current developments and future releases, see:
+    http://maypole.perl.org/?TheRoadmap
+
+2.10 Tues 5 Jul 2005
+    Multiple Template Paths added ( http://rt.cpan.org/NoAuth/Bug.html?id=13447 )
+    Small fix to templates/factory/frontpage ( http://rt.cpan.org/NoAuth/Bug.html?id=11236 )
+    MasonX support in Maypole::Application ( https://rt.cpan.org/NoAuth/Bug.html?id=12383 )
+    Maypole::Model::CDBI::Plain / Maypole Config issue ( http://rt.cpan.org/NoAuth/Bug.html?id=11530 )
+    Repeat Submission detection support ( Bug #6500 )
+    Fix to setup_database in Maypole::Model::CDBI ( Bug #12384 )
+    Fix to plugin to allow Maypole::Plugin::Config::YAML to work
+    Fix to Maypole::Model::CDBI order sub from list
+
+    Additional Requirements : Digest::MD5
+
+2.09  Mon Jan 25 22:00:00 2005
+    Fixes:
+    - Fixed plugin inheritance set up by Maypole::Application, added tests
+
+    Templates:
+    - factory/addnew will only prefill values when there's a row creation error
+
+
+2.08  Mon Jan 24 20:45:00 2005
+    - Added $r->config->template_extension() to set optional file extension
+      for templates (Dave Howorth)
+
+    Fixes:
+    - Maypole::Application adds plugin classes to caller's @ISA (Marcus Ramberg)
+    - FETCH_CODE_ATRIBUTES in M::M::Base should return an empty list if there
+      are no attributes
+    - M::M::CDBI will warn() about Class::DBI::FromCGI errors
+    
+
+2.07  Sun Jan 16 18:45:00 2005
+    (This version was not uploaded to CPAN)
+
+    Internal changes:
+    - Removed Maypole::Model->description. It didn't work as expected and
+      clashed with 'description' columns in the database
+
+    Fixes:
+    - Model->process() shouldn't set $r->objects() to a list with a single,
+      undefined element
+    - Fixed overriding $r->template_args->{classmetadata} in M::V::Base
+      (Thanks to Dave Howorth for spotting the mistake)
+    - #9473: Maypole::Model::CDBI->related_class (Thanks David Baird)
+    - #9434: M::M::CDBI->search generated "uninitialized value" warnings
+
+    Templates:
+    - The addnew template will attempt to prefill form fields with request
+      parameters
+    - edit template includes 'addnew' if there is no object to edit
+
+2.06  Wed Dec 29 01:30:00 2004
+    Fixes:
+    - Minor restructuring of the manual so search.cpan.org indexes it better
+    - #9129: Skip t/apache_mvc.t if Apache::Request isn't installed
+    
+
+2.05  Fri Dec 24 03:20:00 2004
+    - Revised and updated documentation. Many thanks to Dave Howorth for his
+      hard work and 120kb documentation patches.
+    - Added support for request and response HTTP headers with
+      $r->headers_in & $r->headers_out (Maypole::Headers)
+    - Support for compound primary keys for Maypole::Model::CDBI classes
+    - Template toolkit objects are configurable with M::Config->view_options
+    - Templating performance should be improved when running Maypole with
+      mod_perl since compiled templates remain in memory. CGI users can use
+      TT2's COMPILE_DIR or COMPILE_EXT options with
+      Maypole::Config->view_options to improve performance
+
+    Internal changes:
+    - Added a new override for the model: fetch_objects(). 
+    - 'classmetadata' template variables can now be overriden individually
+    - New unit tests for Maypole, CGI::Maypole, Maypole::Headers, and others.
+      More to come.
+
+    Fixes:
+    - Maypole::CLI is more tolerant of trailing slashes in the request/uri_base
     - fixed a bug in CGI::Maypole::parse_location() (Dave Howorth)
     - Also applied that fix to Apache::MVC (Marcus Ramberg)
     - some fixes for Maypole::Config, Maypole::Model::Base and
       Maypole::Model::CDBI::Plain (Dave Howorth)
-    - Added Apache::RequestIO to Apache::MVC (michael@diaspora.gen.nz)
+    - Documented adding new accessors to Maypole::Config
+    - Added Apache::RequestIO to Apache::MVC (michael#diaspora.gen.nz)
     - Applied patch to fix length of utf8 documents.
-    - added a new override for the model: fetch_objects. 
     - support compound primary keys in CDBI fetch_objects.
+    - Check if has_a actually points to a Maypole::Model (Dave Howorth)
+    - Make test suite work with DBD::SQLite2
+    - default search() action removes empty fields from search parameters
+    - #6622 - Maypole::Application will create a separate Maypole::Config for
+      each application (instead of the current workaround for multiple apps
+      under mod_perl)
+    - #7643 - improve M::V::Base's error() messages. prefix error with label,
+      and carp()
+    - #7651 - minor POD improvements in M::M::CDBI (Dave Howorth)
+    - #7834 - minor POD update in M::M::CDBI (Kevin Connor)
+    - #7917 - if do_edit fails for object creation, try again with the correct
+      template (addnew)
+    - #7930 - handle Class::DBI constraint failures in do_edit. 
+
+    Templates:
     - add support for compound primary keys in factory templates
       (Dagfinn Ilmari MannsÃ¥ker)
-    - Check if has_a actually points to a Maypole::Model (Dave Howorth)
     - Only show buttons for public actions.
       (Dagfinn Ilmari MannsÃ¥ker)
-    - Added $r->headers_in & $r->headers_out (request & response headers)
     - Split the meat of the view template off to a view_item macro.
-    - Prefix warn() in M::V::Base with error description
-    - #7651 - minor POD improvements in M::M::CDBI (Dave Howorth)
-    - #7834 - minor POD update in M::M::CDBI (Kevin Connor)
-    - default search action removes empty fields from search parameters
-    - Maypole::Application will create a separate Maypole::Config for each
-      application (instead of the current workaround for multiple apps under
-      mod_perl)
-    - classmetadata template variables can now be overriden individually
+    - New login template
+    - Other assorted css/template fixes
 
 
 2.04  Tue Oct 27 14:00:00 2004