X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ex%2FBeerDB.pm;h=3ff11650be06e050a22afb761c216d2b7a430c86;hb=9a7c10849815112cab035e38d5937adb08dcd635;hp=f7a96904c70985801ff7e74bb1d09df17f24b2ff;hpb=d0870933fcb803bac8e31a30b785d1dff15c5278;p=maypole.git diff --git a/ex/BeerDB.pm b/ex/BeerDB.pm index f7a9690..3ff1165 100644 --- a/ex/BeerDB.pm +++ b/ex/BeerDB.pm @@ -1,5 +1,5 @@ package BeerDB; -use base 'Apache::MVC'; +use base 'Maypole::Application'; use Class::DBI::Loader::Relationship; # This is the sample application. Change this to the path to your @@ -7,6 +7,9 @@ use Class::DBI::Loader::Relationship; BeerDB->setup("dbi:SQLite:t/beerdb.db"); #BeerDB->setup("dbi:mysql:beerdb"); +# Give it a name. +BeerDB->config->{application_name} = 'The Beer Database'; + # 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/"; @@ -18,7 +21,7 @@ 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/], + printable => [qw/abv name price notes url/], integer => [qw/style brewery score/], date =>[ qw/date/], );