]> git.decadent.org.uk Git - maypole.git/blob - lib/BeerDB.pm
ec9677adab670d142a7c7f9bc91fedcfc207f265
[maypole.git] / lib / BeerDB.pm
1 package BeerDB;
2 use base 'Apache::MVC';
3 use Class::DBI::Loader::Relationship;
4 # This line is required if you don't have Apache calling Perl handlers
5 # as methods.
6 sub handler { Apache::MVC::handler(__PACKAGE__, @_) }
7
8 # This is the sample application. Change this to the path to your
9 # database. (or use mysql or something)
10 #BeerDB->set_database("dbi:SQLite:t/beerdb.db");
11 BeerDB->set_database("dbi:mysql:beerdb");
12 # Change this to the root of the web space.
13 #BeerDB->config->{uri_base} = "http://localhost/beerdb/";
14 BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/beerdb/";
15
16 # Handpumps should not show up.
17 BeerDB->config->{display_tables} = [qw[beer brewery pub style]];
18 BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
19 BeerDB::Style->untaint_columns( printable => [qw/name notes/] );
20 BeerDB::Beer->untaint_columns(
21     printable => [qw/abv name price notes/],
22     integer => [qw/style brewery score/],
23     date =>[ qw/date/],
24 );
25 BeerDB->config->{loader}->relationship($_) for (
26     "a brewery produces beers",
27     "a style defines beers",
28     "a pub has beers on handpumps");
29 1;