aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-22 12:39:33 +0100
committercedricbonhomme <devnull@localhost>2010-02-22 12:39:33 +0100
commitcfec37d6f6f494079dfd2aa36acc71b05f56e5a1 (patch)
treead4a01902cb84596436553d3f407fc067b5c0fcf
parentAdded a new page for the management of feeds and database. (diff)
downloadnewspipe-cfec37d6f6f494079dfd2aa36acc71b05f56e5a1.tar.gz
newspipe-cfec37d6f6f494079dfd2aa36acc71b05f56e5a1.tar.bz2
newspipe-cfec37d6f6f494079dfd2aa36acc71b05f56e5a1.zip
Added a menu in the page all_articles of feeds.
-rw-r--r--pyAggr3g470r.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 4ff01023..372e1e76 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -213,6 +213,20 @@ class Root:
"""
html = htmlheader
html += htmlnav
+ html += """<div class="right inner">\n"""
+ html += """<a href="/mark_as_read/Feed:%s">Mark all articles from this feed as read</a>""" % (feed_id,)
+ html += """<br />\n<form method=get action="q/"><input type="text" name="v" value=""><input
+ type="submit" value="search"></form>\n"""
+ html += "<hr />\n"
+ html += """Your feeds (%s):<br />\n""" % len(self.dic.keys())
+ for rss_feed_id in self.dic.keys():
+
+ html += """<a href="/#%s">%s</a> (<a href="/unread/%s"
+ title="Unread article(s)">%s</a> / %s)<br />\n""" % \
+ (rss_feed_id.encode('utf-8'), \
+ self.dic[rss_feed_id][0][5].encode('utf-8'), \
+ rss_feed_id, self.dic_info[rss_feed_id][1], \
+ self.dic_info[rss_feed_id][0])
html += """</div> <div class="left inner">"""
html += """<h1>Articles of the feed <i>%s</i></h1><br />""" % (self.dic[feed_id][0][5].encode('utf-8'))
@@ -233,7 +247,6 @@ class Root:
not_read_end + \
"<br />\n"
- html += """<hr />\n<a href="/mark_as_read/Feed:%s">Mark all as read</a>""" % (feed_id,)
html += """\n<h4><a href="/">All feeds</a></h4>"""
html += "<hr />\n"
html += htmlfooter
bgstack15