Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f49bd8f authored by Thomas Pointhuber's avatar Thomas Pointhuber
Browse files

adding publish date to video-results and rss-feed

parent dead837f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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>
+1 −0
Original line number Diff line number Diff line
@@ -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>
+2 −0
Original line number Diff line number Diff line
@@ -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':