2014-01-30 12:30:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
|
|
<ShortName>searx</ShortName>
|
|
|
|
<Description>Search searx</Description>
|
|
|
|
<InputEncoding>UTF-8</InputEncoding>
|
2015-07-09 21:05:45 +00:00
|
|
|
<Image>{{ host }}{{ url_for('static', filename='img/favicon.png') | replace("/", "", 1) }}</Image>
|
2014-01-30 12:30:41 +00:00
|
|
|
<LongName>searx metasearch</LongName>
|
2014-05-01 08:14:47 +00:00
|
|
|
{% if opensearch_method == 'get' %}
|
|
|
|
<Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>
|
2014-03-29 15:40:43 +00:00
|
|
|
{% if autocomplete %}
|
2014-03-20 14:39:17 +00:00
|
|
|
<Url type="application/x-suggestions+json" method="get" template="{{ host }}autocompleter">
|
|
|
|
<Param name="format" value="x-suggestions" />
|
|
|
|
<Param name="q" value="{searchTerms}" />
|
|
|
|
</Url>
|
2014-03-21 10:11:31 +00:00
|
|
|
{% endif %}
|
2014-01-30 12:30:41 +00:00
|
|
|
{% else %}
|
|
|
|
<Url type="text/html" method="post" template="{{ host }}">
|
2014-03-20 14:39:17 +00:00
|
|
|
<Param name="q" value="{searchTerms}" />
|
|
|
|
</Url>
|
2014-03-29 15:40:43 +00:00
|
|
|
{% if autocomplete %}
|
2014-03-20 14:39:17 +00:00
|
|
|
<!-- TODO, POST REQUEST doesn't work -->
|
|
|
|
<Url type="application/x-suggestions+json" method="get" template="{{ host }}autocompleter">
|
|
|
|
<Param name="format" value="x-suggestions" />
|
|
|
|
<Param name="q" value="{searchTerms}" />
|
2014-01-30 12:30:41 +00:00
|
|
|
</Url>
|
2014-03-21 10:11:31 +00:00
|
|
|
{% endif %}
|
2014-01-30 12:30:41 +00:00
|
|
|
{% endif %}
|
|
|
|
</OpenSearchDescription>
|