diff options
author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-17 11:43:00 +0100 |
---|---|---|
committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-17 11:43:00 +0100 |
commit | 6f49bd8f08fbd52c67e21477fc2d21553d8220d7 (patch) | |
tree | d406680582a736094fff75e8e76d5144fc1aacc9 | |
parent | dead837f570ea62f09469726b9ec8cbe0f8951e2 (diff) | |
download | searxng-6f49bd8f08fbd52c67e21477fc2d21553d8220d7.tar.gz searxng-6f49bd8f08fbd52c67e21477fc2d21553d8220d7.zip |
adding publish date to video-results and rss-feed
-rw-r--r-- | searx/templates/opensearch_response_rss.xml | 1 | ||||
-rw-r--r-- | searx/templates/result_templates/videos.html | 1 | ||||
-rw-r--r-- | searx/webapp.py | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/searx/templates/opensearch_response_rss.xml b/searx/templates/opensearch_response_rss.xml index 417b195a3..5673eb2e1 100644 --- a/searx/templates/opensearch_response_rss.xml +++ b/searx/templates/opensearch_response_rss.xml @@ -16,6 +16,7 @@ <title>{{ r.title }}</title> <link>{{ r.url }}</link> <description>{{ r.content }}</description> + {% if r.pubdate %}<pubDate>{{ r.pubdate }}</pubDate>{% endif %} </item> {% endfor %} </channel> diff --git a/searx/templates/result_templates/videos.html b/searx/templates/result_templates/videos.html index d3391f0d3..ab869a6eb 100644 --- a/searx/templates/result_templates/videos.html +++ b/searx/templates/result_templates/videos.html @@ -5,6 +5,7 @@ <p> <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> + {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %} <a href="{{ result.url }}"><img width="400px" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a> <p class="url">{{ result.url }}</p> </p> diff --git a/searx/webapp.py b/searx/webapp.py index a52dd6289..d06c58f32 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -168,6 +168,8 @@ def index(): else: result['publishedDate'] = gettext(u'{hours} hour(s), {minutes} minute(s) ago').format(hours=hours, minutes=minutes) # noqa else: + # TODO using right timezone + result['pubdate'] = result['publishedDate'].strftime('%a, %d %b %Y %H:%M:%S +0000') result['publishedDate'] = format_date(result['publishedDate']) if search.request_data.get('format') == 'json': |