fix for broken protocol navigation

pull/1/head
Michael Peter Christen 11 years ago
parent 5c962dd009
commit 8f6587e87b

@ -265,7 +265,7 @@ public class yacysearchtrailer {
prop.put("nav-authors", 0); // this navigation is not useful prop.put("nav-authors", 0); // this navigation is not useful
} }
} }
// collection navigators // collection navigators
if (theSearch.collectionNavigator == null || theSearch.collectionNavigator.isEmpty()) { if (theSearch.collectionNavigator == null || theSearch.collectionNavigator.isEmpty()) {
prop.put("nav-collections", 0); prop.put("nav-collections", 0);
@ -349,7 +349,7 @@ public class yacysearchtrailer {
i--; i--;
prop.put("nav-topics_element_" + i + "_nl", 0); prop.put("nav-topics_element_" + i + "_nl", 0);
} }
// protocol navigators // protocol navigators
if (theSearch.protocolNavigator == null || theSearch.protocolNavigator.isEmpty()) { if (theSearch.protocolNavigator == null || theSearch.protocolNavigator.isEmpty()) {
prop.put("nav-protocols", 0); prop.put("nav-protocols", 0);
@ -393,7 +393,7 @@ public class yacysearchtrailer {
i++; i++;
} }
theSearch.query.modifier.protocol = oldProtocolModifier; theSearch.query.modifier.protocol = oldProtocolModifier;
if (oldProtocolModifier != null && oldProtocolModifier.length() > 0) theSearch.query.modifier.add(oldProtocolModifier); if (oldProtocolModifier != null && oldProtocolModifier.length() > 0) theSearch.query.modifier.add(oldProtocolModifier.startsWith("/") ? oldProtocolModifier : "/" + oldProtocolModifier);
theSearch.query.getQueryGoal().query_original = oldQuery; theSearch.query.getQueryGoal().query_original = oldQuery;
prop.put("nav-protocols_element", i); prop.put("nav-protocols_element", i);
prop.put("nav-protocols_activate", neg > 0 || visible ? 1 : 0); // by default off prop.put("nav-protocols_activate", neg > 0 || visible ? 1 : 0); // by default off

Loading…
Cancel
Save