]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
Random docs. Really will release now.
[maypole.git] / lib / Maypole.pm
index d5d932c4816a32c8e78c4650e6042ffc9b04f938..0fd95be4cf1947c267338da401cca6f5fa99dd98 100644 (file)
@@ -4,7 +4,7 @@ use attributes ();
 use UNIVERSAL::require;
 use strict;
 use warnings;
-our $VERSION = "1.1";
+our $VERSION = "1.2";
 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
 __PACKAGE__->mk_accessors ( qw( ar params query objects model_class
 args action template ));
@@ -208,7 +208,7 @@ subclass the model class, and configure your class slightly differently:
 Then your top-level application package should change the model class:
 (Before calling C<setup>)
 
-    ProductDatabase->config->{model_class} = "ProductDatabase::Model";
+    ProductDatabase->config->{model} = "ProductDatabase::Model";
 
 (The C<:Exported> attribute means that the method can be called via the
 URL C</I<table>/supersearch/...>.)
@@ -245,6 +245,12 @@ sub get_request { }
 sub parse_location { die "Do not use Maypole directly; use Apache::MVC or similar" }
 sub send_output{ die "Do not use Maypole directly; use Apache::MVC or similar" }
 
+=head1 SEE ALSO
+
+There's more documentation, examples, and a wiki at the Maypole web site:
+
+http://maypole.simon-cozens.org/
+
 =head1 AUTHOR
 
 Simon Cozens, C<simon@cpan.org>