Changeset 837

Show
Ignore:
Timestamp:
08/22/06 22:22:16 (2 years ago)
Author:
dom
Message:

Deprecate Search::InvertedIndex?

Location:
trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/Build.PL

    r806 r837  
    102102    } 
    103103 
     104    # We don't ask this for new installs as Search::InvertedIndex is 
     105    # deprecated 
     106    if ( $var eq "use_plucene" and $existing_config->$var == 1) { 
     107        print "Skipping question about plucene\n"; 
     108        push @answers, { question => $qu, 
     109                         variable => $var, 
     110                         value => 1 }; 
     111        next; 
     112    } 
     113 
    104114    # Make sensible suggestions for template paths if we don't already 
    105115    # have them stored.  Not really a default, but a useful hint/shortcut. 
     
    207217##### 
    208218 
     219# We currently only support Plucene for new installs, but may support 
     220# others in future 
    209221my $search_module = $use_plucene ? "Plucene" : "Search::InvertedIndex"; 
    210222 
  • trunk/Changes

    r836 r837  
    55        Nodes missing metadata interface 
    66        Moderation support (based on Wiki::Toolkit moderation) 
     7        Search::InvertedIndex support is deprecated as of this release. 
     8          Please upgrade to Plucene if you are still using it. 
    79 
    8100.56    14 June 2006 
  • trunk/INSTALL

    r785 r837  
    102102  "Do you want to use Plucene for searching?" 
    103103 
    104 From version 0.39 of OpenGuides, you have the option of using Plucene 
    105 to index your wiki instead of Search::InvertedIndex.  If you answer 
    106 yes to this question, you will need to make sure you have installed 
    107 both Plucene, and Wiki::Toolkit version 0.56 or later. 
     104This question is no longer asked, but documentation here is retained for 
     105the benefit of people upgrading. 
    108106 
    109107If you are changing to Plucene from Search::InvertedIndex, you will 
  • trunk/PREREQUISITES

    r810 r837  
    3737Module::Build (version 0.18 or later) 
    3838Parse::RecDescent 
    39 ( 
    40   Plucene 
    41     -- or -- 
    42   Search::InvertedIndex 
    43 ) 
     39Plucene 
    4440POSIX 
    4541Template