瀏覽代碼

adding publish date to video-results and rss-feed

Thomas Pointhuber 11 年之前
父節點
當前提交
6f49bd8f08
共有 3 個文件被更改,包括 4 次插入0 次删除
  1. 1
    0
      searx/templates/opensearch_response_rss.xml
  2. 1
    0
      searx/templates/result_templates/videos.html
  3. 2
    0
      searx/webapp.py

+ 1
- 0
searx/templates/opensearch_response_rss.xml 查看文件

@@ -16,6 +16,7 @@
16 16
       <title>{{ r.title }}</title>
17 17
       <link>{{ r.url }}</link>
18 18
       <description>{{ r.content }}</description>
19
+      {% if r.pubdate %}<pubDate>{{ r.pubdate }}</pubDate>{% endif %}
19 20
     </item>
20 21
     {% endfor %}
21 22
   </channel>

+ 1
- 0
searx/templates/result_templates/videos.html 查看文件

@@ -5,6 +5,7 @@
5 5
 
6 6
     <p>
7 7
       <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
8
+      {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
8 9
       <a href="{{ result.url }}"><img width="400px" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a>
9 10
       <p class="url">{{ result.url }}</p>
10 11
     </p>

+ 2
- 0
searx/webapp.py 查看文件

@@ -168,6 +168,8 @@ def index():
168 168
                 else:
169 169
                     result['publishedDate'] = gettext(u'{hours} hour(s), {minutes} minute(s) ago').format(hours=hours, minutes=minutes)  # noqa
170 170
             else:
171
+                # TODO using right timezone
172
+                result['pubdate'] = result['publishedDate'].strftime('%a, %d %b %Y %H:%M:%S +0000')
171 173
                 result['publishedDate'] = format_date(result['publishedDate'])
172 174
 
173 175
     if search.request_data.get('format') == 'json':