]> git.decadent.org.uk Git - maypole.git/blobdiff - ex/BeerDB.pm
skip uppercase methods.
[maypole.git] / ex / BeerDB.pm
index f7a96904c70985801ff7e74bb1d09df17f24b2ff..3ff11650be06e050a22afb761c216d2b7a430c86 100644 (file)
@@ -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/],
 );