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
templates/factory/edit
templates/factory/view
TODO
+META.yml Module meta-data (added by MakeMaker)
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,
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 ));
# 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;