diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-01-20 23:56:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-20 23:56:50 +0100 |
| commit | 3a57a1a0d096f9b15eab14c65c9c2bab432097d5 (patch) | |
| tree | c1e5ab56359ed3f23a17e6721cae1c4fbf6d88af /searx/templates/__common__/opensearch.xml | |
| parent | 57149661e4f90e5ad3a9a4c36bb5f31a1c7ec6aa (diff) | |
| parent | 15eef0ebdb15af80c026302bef250dc7f4417951 (diff) | |
Merge pull request #832 from dalf/input_check
Input check
Diffstat (limited to 'searx/templates/__common__/opensearch.xml')
| -rw-r--r-- | searx/templates/__common__/opensearch.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/searx/templates/__common__/opensearch.xml b/searx/templates/__common__/opensearch.xml new file mode 100644 index 000000000..15d3eb792 --- /dev/null +++ b/searx/templates/__common__/opensearch.xml @@ -0,0 +1,28 @@ +<?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> |