mirror of
https://github.com/searxng/searxng.git
synced 2024-11-17 18:00:12 +01:00
bfdad7bc0f
When the user add searx as a search engine, the browser loads the /opensearch.xml URL without the cookies. Without the query parameters, the user preferences are ignored (method and autocomplete). In addition, opensearch.xml is modified to support automatic updates, see https://developer.mozilla.org/en-US/docs/Web/OpenSearch
23 lines
981 B
XML
23 lines
981 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
<ShortName>{{ instance_name }}</ShortName>
|
|
<Description>a privacy-respecting, hackable metasearch engine</Description>
|
|
<InputEncoding>UTF-8</InputEncoding>
|
|
<Image>{{ urljoin(host, url_for('static', filename='img/favicon.png')) }}</Image>
|
|
<LongName>searx metasearch</LongName>
|
|
{% if opensearch_method == 'get' %}
|
|
<Url rel="results" type="text/html" method="get" template="{{ host }}?q={searchTerms}"/>
|
|
{% else %}
|
|
<Url rel="results" type="text/html" method="post" template="{{ host }}">
|
|
<Param name="q" value="{searchTerms}" />
|
|
</Url>
|
|
{% endif %}
|
|
{% if autocomplete %}
|
|
<Url rel="suggestions" type="application/x-suggestions+json" template="{{ host }}autocompleter?q={searchTerms}"/>
|
|
{% endif %}
|
|
|
|
<Url type="application/opensearchdescription+xml"
|
|
rel="self"
|
|
template="{{ opensearch_url }}" />
|
|
</OpenSearchDescription>
|