]> git.decadent.org.uk Git - maypole.git/commitdiff
0.2 release.
authorSimon Cozens <simon@simon-cozens.org>
Thu, 5 Feb 2004 18:04:23 +0000 (18:04 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Thu, 5 Feb 2004 18:04:23 +0000 (18:04 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@48 48953598-375a-da11-a14b-00016c27c3ee

Changes
MANIFEST
Makefile.PL
lib/Apache/MVC.pm
lib/BeerDB.pm

diff --git a/Changes b/Changes
index 862165e184a15c23b992e9bb03007da7b8b7a645..936aa116c8c65a9c7d5589230cbc3ce4f9df00d9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Apache::MVC.
 
+0.2   Thu Feb  5 18:03:33 GMT 2004
+    - This release adds paging of list results and ordering by column
+      (ascending and descending)
+
 0.01  Thu Jan  8 15:50:17 2004
        - original version; created by h2xs 1.22 with options
                -AX -b 5.6.0 -n Apache::MVC
index 24e684cd831fa7e69fdb92337043c5d911f8af07..6f989716169fac7752b037620ade29ee43a3d7ec 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -21,3 +21,4 @@ templates/factory/navbar
 templates/factory/edit
 templates/factory/view
 TODO
+META.yml                                 Module meta-data (added by MakeMaker)
index 0fd48c067d0052b1e7d39a7949d5812f19c45887..7ba8922a4316de78f87c0f039fe2d314924ae49c 100644 (file)
@@ -9,6 +9,7 @@ WriteMakefile(
         Class::DBI::Loader => 0,
         Class::DBI::AbstractSearch => 0,
         Class::DBI::Pager => 0,
+        Class::DBI::Plugin::RetrieveAll => 0,
         Class::DBI::AsForm => 0,
         Class::DBI::FromCGI => 0,
         Class::DBI::Loader::Relationship => 0,
index 61e07640cfb8976dfc519e63d60d1f3fb2272250..89928fa814ff04c4bc725eb7ccadd82c853f376d 100644 (file)
@@ -6,7 +6,7 @@ use UNIVERSAL::require;
 use Apache::Constants ":common";
 use strict;
 use warnings;
-our $VERSION = "0.1";
+our $VERSION = "0.2";
 __PACKAGE__->mk_classdata($_) for qw( _config init_done view_object );
 __PACKAGE__->mk_accessors ( qw( config ar params query objects model_class
 args action template ));
index 1f673f27ddc6363e6530ae9e5ce880a0d78ee887..f97409f6058ee4821cf84e43d7086b3333af4c5c 100644 (file)
@@ -7,11 +7,10 @@ sub handler { Apache::MVC::handler(__PACKAGE__, @_) }
 
 # This is the sample application. Change this to the path to your
 # database. (or use mysql or something)
-#BeerDB->set_database("dbi:SQLite:t/beerdb.db");
-BeerDB->set_database("dbi:mysql:beerdb");
+BeerDB->set_database("dbi:SQLite:t/beerdb.db");
+
 # Change this to the root of the web space.
-#BeerDB->config->{uri_base} = "http://localhost/beerdb/";
-BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/beerdb/";
+BeerDB->config->{uri_base} = "http://localhost/beerdb/";
 
 BeerDB->config->{rows_per_page} = 10;