]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/BeerDB.pm
And now we have paging support. (And some better docs)
[maypole.git] / lib / BeerDB.pm
index 305aa80c68a2406ace5641ac266a7da4fb67c2e6..1f673f27ddc6363e6530ae9e5ce880a0d78ee887 100644 (file)
@@ -1,16 +1,31 @@
-# vim:ft=perl
 package BeerDB;
-use Apache::MVC;
 use base 'Apache::MVC';
-sub handler { Apache::MVC::handler("BeerDB", @_) }
+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__, @_) }
+
+# 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->config->{template_root} = "/opt/beer";
+# 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/";
 
-use Class::DBI::Loader::Relationship;
+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 score/],
+    date =>[ qw/date/],
+);
 BeerDB->config->{loader}->relationship($_) for (
     "a brewery produces beers",
-    "a beer has a style",
+    "a style defines beers",
     "a pub has beers on handpumps");
-
 1;