summaryrefslogtreecommitdiff
path: root/searx/templates/default/opensearch_response_rss.xml
diff options
context:
space:
mode:
authorPydo <pydo@tutanota.com>2016-10-01 10:46:18 -0400
committerPydo <pydo@tutanota.com>2016-10-01 10:46:18 -0400
commit55a5b686ed6dc0b9a6bfc45e0eaf1f70e24f2aea (patch)
tree96e953057dd3fc29681039f7ac5b282dac189ee8 /searx/templates/default/opensearch_response_rss.xml
parent6f87bf2a1c76f1b94ad2119df7fb938c2307e370 (diff)
parent295fc9ce96d8cca9c6c4776a00e5fb0942eb6f4d (diff)
Merge branch 'master' of https://github.com/asciimoo/searx into feature/seedpeer-engine-integration
Resolved conflict searx/settings.yml
Diffstat (limited to 'searx/templates/default/opensearch_response_rss.xml')
-rw-r--r--searx/templates/default/opensearch_response_rss.xml23
1 files changed, 0 insertions, 23 deletions
diff --git a/searx/templates/default/opensearch_response_rss.xml b/searx/templates/default/opensearch_response_rss.xml
deleted file mode 100644
index 5673eb2e1..000000000
--- a/searx/templates/default/opensearch_response_rss.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0"
- xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
- xmlns:atom="http://www.w3.org/2005/Atom">
- <channel>
- <title>Searx search: {{ q }}</title>
- <link>{{ base_url }}?q={{ q }}</link>
- <description>Search results for "{{ q }}" - searx</description>
- <opensearch:totalResults>{{ number_of_results }}</opensearch:totalResults>
- <opensearch:startIndex>1</opensearch:startIndex>
- <opensearch:itemsPerPage>{{ number_of_results }}</opensearch:itemsPerPage>
- <atom:link rel="search" type="application/opensearchdescription+xml" href="{{ base_url }}opensearch.xml"/>
- <opensearch:Query role="request" searchTerms="{{ q }}" startPage="1" />
- {% for r in results %}
- <item>
- <title>{{ r.title }}</title>
- <link>{{ r.url }}</link>
- <description>{{ r.content }}</description>
- {% if r.pubdate %}<pubDate>{{ r.pubdate }}</pubDate>{% endif %}
- </item>
- {% endfor %}
- </channel>
-</rss>