aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 15:57:25 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 15:57:25 +0100
commitcb946f37fce86ac8a2d4d44b876cbbf0404cb351 (patch)
tree0a715b3c85d640748fa5bd82be8b41b2a91b6c1b /source
parentRemoved HTML headers and footers for 404 page. (diff)
downloadnewspipe-cb946f37fce86ac8a2d4d44b876cbbf0404cb351.tar.gz
newspipe-cb946f37fce86ac8a2d4d44b876cbbf0404cb351.tar.bz2
newspipe-cb946f37fce86ac8a2d4d44b876cbbf0404cb351.zip
Template for the /unread page.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py74
-rw-r--r--source/templates/unread.html75
2 files changed, 77 insertions, 72 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 6d8d801a..bd389a0f 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -323,78 +323,8 @@ class pyAggr3g470r(object):
This page displays all unread articles of a feed.
"""
feeds = self.mongo.get_all_feeds()
- html = htmlheader()
- html += htmlnav
- html += """<div class="left inner">"""
- if self.mongo.nb_unread_articles() != 0:
-
- # List unread articles of all the database
- if feed_id == "":
- html += "<h1>Unread article(s)</h1>"
- html += """\n<br />\n<a href="/mark_as_read/">Mark articles as read</a>\n<hr />\n"""
- for feed in feeds:
- new_feed_section = True
- nb_unread = 0
-
- # For all unread article of the current feed.
- for article in self.mongo.get_articles(feed["feed_id"], condition=("article_readed", False)):
- nb_unread += 1
- if new_feed_section is True:
- new_feed_section = False
- html += """<h2><a name="%s"><a href="%s" rel="noreferrer" target="_blank">%s</a></a><a href="%s" rel="noreferrer" target="_blank"><img src="%s" width="28" height="28" /></a></h2>\n""" % \
- (feed["feed_id"], feed["site_link"], feed["feed_title"], feed["feed_link"], feed["feed_image"])
-
- # 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') + " - " + \
- """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s<span class="classic">%s</span></a><br />\n""" % \
- (feed["feed_id"], article["article_id"], article["article_title"][:150], description)
-
- if nb_unread == self.mongo.nb_unread_articles(feed["feed_id"]):
- html += """<br />\n<a href="/mark_as_read/Feed:%s">Mark all articles from this feed as read</a>\n""" % \
- (feed["feed_id"],)
- html += """<hr />\n<a href="/mark_as_read/">Mark articles as read</a>\n"""
-
- # List unread articles of a feed
- else:
- try:
- feed = self.mongo.get_feed(feed_id)
- except:
- self.error("This feed do not exists.")
- html += """<h1>Unread article(s) of the feed <a href="/articles/%s">%s</a></h1>
- <br />""" % (feed_id, feed["feed_title"])
-
- # For all unread article of the feed.
- for article in self.mongo.get_articles(feed_id, condition=("article_readed", False)):
- # 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') + " - " + \
- """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s<span class="classic">%s</span></a><br />\n""" % \
- (feed_id, article["article_id"], article["article_title"][:150], description)
-
- html += """<hr />\n<a href="/mark_as_read/Feed:%s">Mark all as read</a>""" % (feed_id,)
- # No unread article
- else:
- html += '<h1>No unread article(s)</h1>\n<br />\n<a href="/fetch/">Why not check for news?</a>'
- html += """\n<h4><a href="/">All feeds</a></h4>"""
- html += "<hr />\n"
- html += htmlfooter
- return html
-
+ tmpl = lookup.get_template("unread.html")
+ return tmpl.render(feeds=feeds, feed_id=feed_id, mongo=self.mongo)
unread.exposed = True
@require()
diff --git a/source/templates/unread.html b/source/templates/unread.html
new file mode 100644
index 00000000..32201531
--- /dev/null
+++ b/source/templates/unread.html
@@ -0,0 +1,75 @@
+## unread.html
+<%inherit file="base.html"/>
+<%
+import utils
+%>
+<div class="left inner">
+ <%
+ html = ""
+ if mongo.nb_unread_articles() != 0:
+
+ # List unread articles of all the database
+ if feed_id == "":
+ html += "<h1>Unread article(s)</h1>"
+ html += """\n<br />\n<a href="/mark_as_read/">Mark articles as read</a>\n<hr />\n"""
+ for feed in feeds:
+ new_feed_section = True
+ nb_unread = 0
+
+ # For all unread article of the current feed.
+ for article in mongo.get_articles(feed["feed_id"], condition=("article_readed", False)):
+ nb_unread += 1
+ if new_feed_section is True:
+ new_feed_section = False
+ html += """<h2><a name="%s"><a href="%s" rel="noreferrer" target="_blank">%s</a></a><a href="%s" rel="noreferrer" target="_blank"><img src="%s" width="28" height="28" /></a></h2>\n""" % \
+ (feed["feed_id"], feed["site_link"], feed["feed_title"], feed["feed_link"], feed["feed_image"])
+
+ # 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') + " - " + \
+ """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s<span class="classic">%s</span></a><br />\n""" % \
+ (feed["feed_id"], article["article_id"], article["article_title"][:150], description)
+
+ if nb_unread == mongo.nb_unread_articles(feed["feed_id"]):
+ html += """<br />\n<a href="/mark_as_read/Feed:%s">Mark all articles from this feed as read</a>\n""" % \
+ (feed["feed_id"],)
+ html += """<hr />\n<a href="/mark_as_read/">Mark articles as read</a>\n"""
+
+ # List unread articles of a feed
+ else:
+ try:
+ feed = mongo.get_feed(feed_id)
+ except:
+ error("This feed do not exists.")
+ html += """<h1>Unread article(s) of the feed <a href="/articles/%s">%s</a></h1>
+ <br />""" % (feed_id, feed["feed_title"])
+
+ # For all unread article of the feed.
+ for article in mongo.get_articles(feed_id, condition=("article_readed", False)):
+ # 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') + " - " + \
+ """<a class="tooltip" href="/article/%s:%s" rel="noreferrer" target="_blank">%s<span class="classic">%s</span></a><br />\n""" % \
+ (feed_id, article["article_id"], article["article_title"][:150], description)
+
+ html += """<hr />\n<a href="/mark_as_read/Feed:%s">Mark all as read</a>""" % (feed_id,)
+ # No unread article
+ else:
+ html += '<h1>No unread article(s)</h1>\n<br />\n<a href="/fetch/">Why not check for news?</a>'
+ html += """\n<h4><a href="/">All feeds</a></h4>"""
+ %>
+ ${html} \ No newline at end of file
bgstack15