
Rubric::Config - the configuration data for a Rubric

version 0.144

Rubric::Config provides access to the configuration data for a Rubric.
The basic implementation stores its configuration in YAML in a text file found using Config::Auto's find_file function.
By default,
Rubric::Config looks for rubric.yml,
but an alternate filename may be passed when using the module:
use Rubric::Config ".rubric_yml";

These configuration settings can all be retrieved by methods of the same name.
the DSN to be used by Rubric::DBI to connect to the Rubric's database
the username to be used by Rubric::DBI to connect to the Rubric's database
the password to be used by Rubric::DBI to connect to the Rubric's database
level of debug output for DBI
Where to send DBI debug output if dbi_trace_level
The key to use to encrypt sessions, which are stored in user cookies. This must be set.
the absolute URI for the root of the Rubric::WebApp install
the absolute URI for the stylesheet to be used by Rubric::WebApp pages
the INCLUDE_PATH passed to Template when creating the template renderers
the email address from which Rubric will send email
the SMTP server used to send email
This is the class used to process the entries run method. It defaults to Rubric::WebApp::Entries.
This is the class used to check for logins; it should subclass Rubric::WebApp::Login. If not supplied, the default is Rubric::WebApp::Login::Post.
If true, users will be created without verification codes, and won't get verification emails.
true if registration new users can't register for accounts via the web
true value if users must have an account to view entries
A tag which, if attached to an entry, makes it private. The default value is @private, and I strongly advise against changing it, since I may change the way these "system tags" work in the future.
This entry, if given, should be a mapping of markup names to formatter plugins. For example:
markup_formatter:
kwid: Rubric::Entry::Formatter::Kwid
tex: Rubric::Entry::Formatter::TeX
(No. Neither of those exist.)
If it is not specified in the config file, an entry for _default is set to the built-in, extremely simple entry formatter.
if true, each user can have only one entry per link (default: true)
If undef, all URI schemes are allowed in entries. If it's an array reference, it's the list of allowed schemes.
If true, the local time (of the server) will be displayed for entry create/modify times. Otherwise, all times will be UTC. (This option is probably temporary, until per-user timezones are implemented.)
The number of entries that are displayed on a page of entries, by default.
The maximum number of entries that will be displayed on a page of entries. If more are requested, this many will be displayed.

These methods are used by the setting accessors, internally:
This method returns the config data, if loaded. If it hasn't already been loaded, it finds and parses the configuration file, then returns the data.
This method returns the default configuration has a hashref.
Rubric::Config isa Class::Accessor, and uses this sub to build its setting accessors. For a given field, it returns the value of that field in the configuration, if it exists. Otherwise, it returns the default for that field.

Ricardo SIGNES, <rjbs@cpan.org>

Please report any bugs or feature requests to bug-rubric@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Copyright 2004 Ricardo SIGNES. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.