X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FBeerDB.pm;h=fd2c704e549a3db51306618c709008d16fa3291e;hb=48b7f94a68422ee2d1ee9ca6bf9cd5c2ee34e189;hp=23bd39f335c7c7f15d48f5f7f95fe4acff35ef1f;hpb=cca6bd0ec8ad4f0325eda70b8db2574bf8c77496;p=maypole.git diff --git a/lib/BeerDB.pm b/lib/BeerDB.pm index 23bd39f..fd2c704 100644 --- a/lib/BeerDB.pm +++ b/lib/BeerDB.pm @@ -3,20 +3,26 @@ use base 'Apache::MVC'; use Class::DBI::Loader::Relationship; # This line is required if you don't have Apache calling Perl handlers # as methods. -sub handler { Apache::MVC::handler(__PACKAGE__, @_) } +sub handler { Maypole::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:SQLite:t/beerdb.db"); +BeerDB->set_database("dbi:mysql:beerdb"); + # Change this to the root of the web space. -BeerDB->config->{uri_base} = "http://localhost/beerdb/"; +#BeerDB->config->{uri_base} = "http://localhost/beerdb/"; +BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/beerdb/"; + +BeerDB->config->{rows_per_page} = 10; # Handpumps should not show up. BeerDB->config->{display_tables} = [qw[beer brewery pub style]]; BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] ); +BeerDB::Style->untaint_columns( printable => [qw/name notes/] ); BeerDB::Beer->untaint_columns( printable => [qw/abv name price notes/], - integer => [qw/style brewery/], + integer => [qw/style brewery score/], date =>[ qw/date/], ); BeerDB->config->{loader}->relationship($_) for (