aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-23 08:15:08 +0100
committercedricbonhomme <devnull@localhost>2010-02-23 08:15:08 +0100
commit1deca6e194f20762321b54e9dbe454514e96ebf6 (patch)
tree92f40dd01c71f9ee45688471580b0094c4b0cb51
parentAdded a menu in the page all_articles of feeds. (diff)
downloadnewspipe-1deca6e194f20762321b54e9dbe454514e96ebf6.tar.gz
newspipe-1deca6e194f20762321b54e9dbe454514e96ebf6.tar.bz2
newspipe-1deca6e194f20762321b54e9dbe454514e96ebf6.zip
Minor improvements.
-rw-r--r--pyAggr3g470r.py43
-rw-r--r--var/feed.lst1
2 files changed, 33 insertions, 11 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 372e1e76..15ff7299 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -55,8 +55,8 @@ class Root:
html += """<a href="/fetch/">Fetch all feeds</a>\n<br />\n"""
html += """<a href="/mark_as_read/All:">Mark all articles as read</a>\n<br />\n"""
html += """<a href="/management/">Management of feed</a>\n"""
- html += """<form method=get action="q/"><input type="text" name="v" value=""><input
- type="submit" value="search"></form>\n"""
+ html += """<form method=get action="/q/"><input type="text" name="querystring" 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():
@@ -140,20 +140,23 @@ class Root:
html += htmlfooter
return html
- def q(self, v=None):
+ def q(self, querystring=None):
"""
- Search for a feed. Simply search for the string 'v'
+ Search for a feed. Simply search for the string 'querystring'
in the description of the article.
"""
- querystring = v.encode('utf-8')
+ param, _, value = querystring.partition(':')
+ feed_id = None
+ if param == "Feed":
+ feed_id, _, querystring = value.partition(':')
html = htmlheader
html += htmlnav
html += """</div> <div class="left inner">"""
html += """<h1>Articles containing the string <i>%s</i></h1><br />""" % (querystring,)
- for rss_feed_id in self.dic.keys():
- for article in self.dic[rss_feed_id][:10]:
+ if feed_id is not None:
+ for article in self.dic[rss_feed_id]:
article_content = article[4].encode('utf-8') + article[2].encode('utf-8')
if querystring.lower() in article_content.lower():
if article[7] == "0":
@@ -168,8 +171,26 @@ class Root:
" - " + not_read_begin + \
"""<a href="/description/%s" rel="noreferrer" target="_blank">%s</a>""" % \
(article[0].encode('utf-8'), article[2].encode('utf-8')) + \
- not_read_end + """ from <i><a href="%s">%s</a></i><br />\n""" % \
- (article[6].encode('utf-8'), article[5].encode('utf-8'))
+ not_read_end
+ else:
+ for rss_feed_id in self.dic.keys():
+ for article in self.dic[rss_feed_id]:
+ article_content = article[4].encode('utf-8') + article[2].encode('utf-8')
+ if querystring.lower() in article_content.lower():
+ if article[7] == "0":
+ # not readed articles are in bold
+ not_read_begin = "<b>"
+ not_read_end = "</b>"
+ else:
+ not_read_begin = ""
+ not_read_end = ""
+
+ html += article[1].encode('utf-8') + \
+ " - " + not_read_begin + \
+ """<a href="/description/%s" rel="noreferrer" target="_blank">%s</a>""" % \
+ (article[0].encode('utf-8'), article[2].encode('utf-8')) + \
+ not_read_end + """ from <i><a href="%s">%s</a></i><br />\n""" % \
+ (article[6].encode('utf-8'), article[5].encode('utf-8'))
html += "<hr />"
html += htmlfooter
return html
@@ -215,8 +236,8 @@ class Root:
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 += """<br />\n<form method=get action="/q/Feed"><input type="text" name="Feed:%s:querystring" value=""><input
+ type="submit" value="Search this feed"></form>\n""" % (feed_id,)
html += "<hr />\n"
html += """Your feeds (%s):<br />\n""" % len(self.dic.keys())
for rss_feed_id in self.dic.keys():
diff --git a/var/feed.lst b/var/feed.lst
index abe7f41a..43b89680 100644
--- a/var/feed.lst
+++ b/var/feed.lst
@@ -22,3 +22,4 @@ http://www.kroah.com/log/index.rss
http://www.lessentiel.lu/rss/news.tmpl
http://www.jeffersonswheel.org/?feed=rss2
http://www.laquadrature.net/en/rss.xml
+http://static.fsf.org/fsforg/rss/blogs.xml
bgstack15