Changeset 837
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r806 r837 102 102 } 103 103 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 104 114 # Make sensible suggestions for template paths if we don't already 105 115 # have them stored. Not really a default, but a useful hint/shortcut. … … 207 217 ##### 208 218 219 # We currently only support Plucene for new installs, but may support 220 # others in future 209 221 my $search_module = $use_plucene ? "Plucene" : "Search::InvertedIndex"; 210 222 -
trunk/Changes
r836 r837 5 5 Nodes missing metadata interface 6 6 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. 7 9 8 10 0.56 14 June 2006 -
trunk/INSTALL
r785 r837 102 102 "Do you want to use Plucene for searching?" 103 103 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. 104 This question is no longer asked, but documentation here is retained for 105 the benefit of people upgrading. 108 106 109 107 If you are changing to Plucene from Search::InvertedIndex, you will -
trunk/PREREQUISITES
r810 r837 37 37 Module::Build (version 0.18 or later) 38 38 Parse::RecDescent 39 ( 40 Plucene 41 -- or -- 42 Search::InvertedIndex 43 ) 39 Plucene 44 40 POSIX 45 41 Template
