X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FConfig.pm;h=c6d3f1eb617fd7fd33ae2b66ffe981527d591daf;hb=d7d451f187ce62da9bb9a30c7692ca9a40a06a48;hp=2cf65daba17eca9111aa0e7ff1cdd0e515ab11bf;hpb=427f0f2ec634f60fa90e60f5d3a048b6e1fc5f8b;p=maypole.git diff --git a/lib/Maypole/Config.pm b/lib/Maypole/Config.pm index 2cf65da..c6d3f1e 100644 --- a/lib/Maypole/Config.pm +++ b/lib/Maypole/Config.pm @@ -5,13 +5,13 @@ use attributes (); use strict; use warnings; -our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/; +our $VERSION = "1." . sprintf "%04d", q$Rev: 570 $ =~ /: (\d+)/; # Public accessors. __PACKAGE__->mk_accessors( qw( view view_options uri_base template_root template_extension model loader display_tables ok_tables rows_per_page dsn user pass opts - application_name additional) + application_name additional build_form_elements request_options) ); # Should only be modified by model. @@ -65,6 +65,15 @@ makes URLs. The name of the view class for your Maypole Application. Defaults to "Maypole::View::TT". +=head3 build_form_elements + +Globally specify whether to build form elements; populating the cgi metadata with +autogenerated HTML::Element widgets for the class/object. + +Can be over-ridden per action using the method of the same name for the request. + +If not set, then Maypole will assume it is true. + =head3 view_options A hash of configuration options for the view class. Consult the documentation @@ -115,6 +124,14 @@ Other options to the DBI connect call. Username to log into the database with. +=head3 build_form_elements + +Flag specifying whether to build metadata for form elements in factory templates + +=head3 request_options + +Hashref of options passed when creating cgi or apache request + =head2 Adding additional configuration data You can use the 'additional' attribute for stashing additional info, especially from additional_data method,