Changeset 1117 for trunk/lib/OpenGuides/Config.pm
- Timestamp:
- 08/03/07 20:16:51 (18 months ago)
- Files:
-
- 1 modified
-
trunk/lib/OpenGuides/Config.pm (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/OpenGuides/Config.pm
r1116 r1117 4 4 5 5 use vars qw( $VERSION ); 6 $VERSION = '0.0 1';6 $VERSION = '0.02'; 7 7 8 8 use Carp qw( croak ); … … 25 25 licence_name licence_url licence_info_url moderation_requires_password 26 26 enable_node_image enable_common_categories enable_common_locales 27 spam_detector_module static_path static_url send_moderation_notifications 27 spam_detector_module host_checker_module static_path static_url 28 send_moderation_notifications 28 29 ); 29 30 my @questions = map { $_ . "__qu" } @variables; … … 112 113 licence_info_url => "", 113 114 spam_detector_module => "", 115 host_checker_module => "", 114 116 static_path => "/usr/local/share/openguides/static", 115 117 send_moderation_notifications => 1 … … 195 197 licence_info_url => "What is the URL to your local page about your licensing policy?", 196 198 spam_detector_module => "What module would you like to use for spam detection? (optional)", 199 host_checker_module => "What module would you like to use to run an IP blacklist? (optional)", 197 200 static_path => "What directory should we install static content (CSS, images, javascript) to?", 198 201 static_url => "What is the URL corresponding to the static content?", … … 324 327 =item * spam_detector_module 325 328 329 =item * host_checker_module 330 326 331 =item * static_path 327 332
