You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
795 B
25 lines
795 B
13 years ago
|
package interaction_elements;
|
||
|
|
||
|
import net.yacy.cora.protocol.RequestHeader;
|
||
|
import net.yacy.search.Switchboard;
|
||
|
import de.anomic.server.serverObjects;
|
||
|
import de.anomic.server.serverSwitch;
|
||
|
|
||
|
public class OverlayInteraction {
|
||
|
|
||
|
public static serverObjects respond(final RequestHeader header, final serverObjects post, final serverSwitch env) {
|
||
|
|
||
|
final Switchboard sb = (Switchboard) env;
|
||
|
|
||
|
final serverObjects prop = new serverObjects();
|
||
|
|
||
|
prop.put("enabled", env.getConfigBool("interaction.overlayinteraction.enabled", false) ? "1" : "0");
|
||
|
|
||
|
prop.put("enabled_url", post.get("url", ""));
|
||
|
|
||
|
prop.put("enabled_urlhash", post.get("urlhash", ""));
|
||
|
|
||
|
return prop;
|
||
|
}
|
||
|
}
|