]> git.decadent.org.uk Git - maypole.git/blob - lib/BeerDB.pm
Update manifest for release and anonymize the example some.
[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 # Change this to the root of the web space.
12 BeerDB->config->{uri_base} = "http://localhost/beerdb/";
13
14 # Handpumps should not show up.
15 BeerDB->config->{display_tables} = [qw[beer brewery pub style]];
16 BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
17 BeerDB::Beer->untaint_columns(
18     printable => [qw/abv name price notes/],
19     integer => [qw/style brewery/],
20     date =>[ qw/date/],
21 );
22 BeerDB->config->{loader}->relationship($_) for (
23     "a brewery produces beers",
24     "a style defines beers",
25     "a pub has beers on handpumps");
26 1;