diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-09-22 23:51:07 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2016-09-22 23:51:07 +0200 |
| commit | bee7b497a300622f5ba2b619817f5c89c29ae871 (patch) | |
| tree | 525c3d85020cedd88663a4bb4a0e18c54500044b /searx/templates/default/opensearch.xml | |
| parent | aaf5d506e51197603922d7b9d259c0f4e498f62b (diff) | |
[mod] rename "default" theme to "legacy"
Diffstat (limited to 'searx/templates/default/opensearch.xml')
| -rw-r--r-- | searx/templates/default/opensearch.xml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/searx/templates/default/opensearch.xml b/searx/templates/default/opensearch.xml deleted file mode 100644 index 15d3eb792..000000000 --- a/searx/templates/default/opensearch.xml +++ /dev/null @@ -1,28 +0,0 @@ -<?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 type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/> - {% if autocomplete %} - <Url type="application/x-suggestions+json" method="get" template="{{ host }}autocompleter"> - <Param name="format" value="x-suggestions" /> - <Param name="q" value="{searchTerms}" /> - </Url> - {% endif %} - {% else %} - <Url type="text/html" method="post" template="{{ host }}"> - <Param name="q" value="{searchTerms}" /> - </Url> - {% if autocomplete %} - <!-- 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}" /> - </Url> - {% endif %} - {% endif %} -</OpenSearchDescription> |