@ -469,12 +469,16 @@ public class yacysearch {
sb . localSearches . add ( theQuery ) ;
sb . localSearches . add ( theQuery ) ;
// check suggestions
// check suggestions
int meanMax = 0 ;
if ( post ! = null & & post . containsKey ( "meanCount" ) ) {
meanMax = Integer . parseInt ( post . get ( "meanCount" ) ) ;
}
if ( meanMax > 0 ) {
DidYouMean didYouMean = new DidYouMean ( sb ) ;
DidYouMean didYouMean = new DidYouMean ( sb ) ;
Iterator < String > meanIt = didYouMean . getSuggestion ( querystring ) . iterator ( ) ;
Iterator < String > meanIt = didYouMean . getSuggestion ( querystring ) . iterator ( ) ;
int meanCount = 0 ;
int meanCount = 0 ;
String suggestion ;
String suggestion ;
prop . put ( "didYouMean" , 0 ) ;
while ( meanCount < meanMax & & meanIt . hasNext ( ) ) {
while ( meanIt . hasNext ( ) ) {
suggestion = meanIt . next ( ) ;
suggestion = meanIt . next ( ) ;
prop . put ( "didYouMean_suggestions_" + meanCount + "_word" , suggestion ) ;
prop . put ( "didYouMean_suggestions_" + meanCount + "_word" , suggestion ) ;
prop . put ( "didYouMean_suggestions_" + meanCount + "_url" ,
prop . put ( "didYouMean_suggestions_" + meanCount + "_url" ,
@ -495,9 +499,11 @@ public class yacysearch {
meanCount + + ;
meanCount + + ;
}
}
prop . put ( "didYouMean_suggestions_" + ( meanCount - 1 ) + "_sep" , "" ) ;
prop . put ( "didYouMean_suggestions_" + ( meanCount - 1 ) + "_sep" , "" ) ;
if ( meanCount > 0 )
prop . put ( "didYouMean" , 1 ) ;
prop . put ( "didYouMean" , 1 ) ;
prop . put ( "didYouMean_suggestions" , meanCount ) ;
prop . put ( "didYouMean_suggestions" , meanCount ) ;
} else {
prop . put ( "didYouMean" , 0 ) ;
}
// update the search tracker
// update the search tracker
try {
try {