From ce9e5e6988b5777d78d714d6ef695472d55c6099 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 25 Nov 2012 16:22:15 +0100 Subject: Template for the /articles page. --- source/pyAggr3g470r.py | 43 ++---------------------------------------- source/templates/articles.html | 43 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 41 deletions(-) create mode 100644 source/templates/articles.html (limited to 'source') diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 9c4e6766..4cb304fe 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -606,47 +606,8 @@ class pyAggr3g470r(object): articles = self.mongo.get_articles_from_collection(feed_id) except KeyError: return self.error_page("This feed do not exists.") - html = htmlheader() - html += htmlnav - html += """
\n""" - html += """Mark all articles from this feed as read""" % (feed_id,) - html += """
\n
\n""" % ("Feed:"+feed_id,) - html += "
\n" - html += self.create_list_of_feeds() - html += """
""" - html += """

Articles of the feed %s


""" % (feed_id, feed["feed_title"]) - - for article in articles: - - if article["article_readed"] == False: - # not readed articles are in bold - not_read_begin, not_read_end = "", "" - else: - not_read_begin, not_read_end = "", "" - - if article["article_like"] == True: - like = """ """ - else: - like = "" - - # descrition for the CSS ToolTips - article_content = utils.clear_string(article["article_content"]) - if article_content: - description = " ".join(article_content[:500].split(' ')[:-1]) - else: - description = "No description." - - # a description line per article (date, title of the article and - # CSS description tooltips on mouse over) - html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \ - """%s%s%s%s""" % \ - (feed_id, article["article_id"], not_read_begin, \ - article["article_title"][:150], not_read_end, description) + like + "
\n" - - html += """\n

All feeds

""" - html += "
\n" - html += htmlfooter - return html + tmpl = lookup.get_template("articles.html") + return tmpl.render(articles=articles, feed=feed) articles.exposed = True diff --git a/source/templates/articles.html b/source/templates/articles.html new file mode 100644 index 00000000..1c425c7e --- /dev/null +++ b/source/templates/articles.html @@ -0,0 +1,43 @@ +## articles.html +<%inherit file="base.html"/> +<% +import utils +%> +

pyAggr3g470r - News aggregator

+pyAggr3g470r (source code) + + + +
+

Articles of the feed ${feed['feed_title']}

+
+ %for article in articles: + <% + if article["article_readed"] == False: + not_read_begin, not_read_end = "", "" + else: + not_read_begin, not_read_end = "", "" + + if article["article_like"] == True: + like = """ """ + else: + like = "" + + article_content = utils.clear_string(article["article_content"]) + if article_content: + description = " ".join(article_content[:500].split(' ')[:-1]) + else: + description = "No description." + %> + ${article["article_date"].strftime('%Y-%m-%d %H:%M')} - ${not_read_begin}${article["article_title"][:150]}${not_read_end}${description} +
+ %endfor +

All feeds

\ No newline at end of file -- cgit