diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-30 13:30:41 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-30 13:30:41 +0100 |
| commit | 941e5fb2c4dc8f9c02709c87e5f096d2adef246a (patch) | |
| tree | d5ca39512ebc821178aca2d84c03f60cf990a413 /searx/templates | |
| parent | 08136f5ba2c579e222d2e0e8179cf21d8f4a461c (diff) | |
[enh][fix] opensearch separation ++ better chrome support
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/opensearch.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/searx/templates/opensearch.xml b/searx/templates/opensearch.xml new file mode 100644 index 000000000..68b030b3a --- /dev/null +++ b/searx/templates/opensearch.xml @@ -0,0 +1,14 @@ +<?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> + <LongName>searx metasearch</LongName> + {% if method == 'get' %} + <Url type="text/html" method="get" template="{{ host }}?q={searchTerms}"/> + {% else %} + <Url type="text/html" method="post" template="{{ host }}"> + <Param name="q" value="{searchTerms}" /> + </Url> + {% endif %} +</OpenSearchDescription> |