diff options
Diffstat (limited to 'Echolot')
-rw-r--r-- | Echolot/Config.pm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Echolot/Config.pm b/Echolot/Config.pm index a2cc755..fc0d9ae 100644 --- a/Echolot/Config.pm +++ b/Echolot/Config.pm @@ -1,7 +1,7 @@ package Echolot::Config; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Config.pm,v 1.43 2002/12/03 02:59:13 weasel Exp $ +# $Id: Config.pm,v 1.44 2002/12/13 06:50:30 weasel Exp $ # =pod @@ -217,6 +217,7 @@ sub init($) { for my $key (keys %$CONFIG) { warn("Unkown option: $key\n") unless (exists $DEFAULT->{$key}); }; + # Work around spelling bug until 2.0rc3 if (exists $CONFIG->{'seperate_rlists'}) { if (exists $CONFIG->{'separate_rlists'}) { @@ -228,6 +229,18 @@ sub init($) { delete $CONFIG->{'seperate_rlists'}; } + # In 2.0.6: thesaurusindexfile and indexfilebasename config values + # should not longer have the extension (.html) in them + # Handle this gracefully for now: + if (exists $CONFIG->{'thesaurusindexfile'}) { + $CONFIG->{'thesaurusindexfile'} =~ s/\.html?$// and + warn ("thesaurusindexfile no longer should have the .html extension.\n"); + } + if (exists $CONFIG->{'indexfilebasename'}) { + $CONFIG->{'indexfilebasename'} =~ s/\.html?$// and + warn ("indexfilebasename no longer should have the .html extension.\n"); + } + for my $key (keys %$DEFAULT) { $CONFIG->{$key} = $DEFAULT->{$key} unless exists $CONFIG->{$key}; }; |