Show
Ignore:
Timestamp:
08/03/07 20:16:51 (18 months ago)
Author:
earle
Message:

Add support for IP blacklisting modules.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/OpenGuides/Config.pm

    r1116 r1117  
    44 
    55use vars qw( $VERSION ); 
    6 $VERSION = '0.01'; 
     6$VERSION = '0.02'; 
    77 
    88use Carp qw( croak ); 
     
    2525   licence_name licence_url licence_info_url moderation_requires_password 
    2626   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 
    2829); 
    2930my @questions = map { $_ . "__qu" } @variables; 
     
    112113                     licence_info_url => "", 
    113114                     spam_detector_module => "", 
     115                     host_checker_module => "", 
    114116                     static_path => "/usr/local/share/openguides/static", 
    115117                     send_moderation_notifications => 1 
     
    195197        licence_info_url => "What is the URL to your local page about your licensing policy?", 
    196198        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)", 
    197200        static_path => "What directory should we install static content (CSS, images, javascript) to?", 
    198201        static_url => "What is the URL corresponding to the static content?", 
     
    324327=item * spam_detector_module 
    325328 
     329=item * host_checker_module 
     330 
    326331=item * static_path 
    327332