]> git.decadent.org.uk Git - maypole.git/commitdiff
Update manifest for release and anonymize the example some.
authorSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 19:12:34 +0000 (19:12 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 19:12:34 +0000 (19:12 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@40 48953598-375a-da11-a14b-00016c27c3ee

MANIFEST
lib/BeerDB.pm

index 445c3ba0cd100567126a182d3e0e072a79793ef9..24e684cd831fa7e69fdb92337043c5d911f8af07 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,7 +1,23 @@
-Changes
 MANIFEST
-Makefile.PL
-README
-lib/Apache/MVC.pm
+Changes
+lib/Apache/MVC/Model/Base.pm
+lib/Apache/MVC/Model/CDBI.pm
 lib/Apache/MVC/Workflow.pod
+lib/Apache/MVC/View/TT.pm
+lib/Apache/MVC.pm
+lib/BeerDB.pm
 t/1.t
+Makefile.PL
+README
+templates/beer/addnew
+templates/custom/header
+templates/custom/frontpage
+templates/factory/macros
+templates/factory/addnew
+templates/factory/header
+templates/factory/list
+templates/factory/search_form
+templates/factory/navbar
+templates/factory/edit
+templates/factory/view
+TODO
index e9f1eb471fc5d775cca4dc9379c2ac4010f88b20..23bd39f335c7c7f15d48f5f7f95fe4acff35ef1f 100644 (file)
@@ -1,8 +1,17 @@
 package BeerDB;
 use base 'Apache::MVC';
-sub handler { Apache::MVC::handler("BeerDB", @_) }
-BeerDB->set_database("dbi:mysql:beerdb");
-BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/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");
+# Change this to the root of the web space.
+BeerDB->config->{uri_base} = "http://localhost/beerdb/";
+
+# Handpumps should not show up.
 BeerDB->config->{display_tables} = [qw[beer brewery pub style]];
 BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
 BeerDB::Beer->untaint_columns(
@@ -10,7 +19,6 @@ BeerDB::Beer->untaint_columns(
     integer => [qw/style brewery/],
     date =>[ qw/date/],
 );
-use Class::DBI::Loader::Relationship;
 BeerDB->config->{loader}->relationship($_) for (
     "a brewery produces beers",
     "a style defines beers",