From 526c9fdccfaadb060f3a223ea02da1fe10128951 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 25 Feb 2010 18:43:34 +0100 Subject: Added a default RSS icon for feeds without RSS icon. --- pyAggr3g470r.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index b710da16..4748a3eb 100644 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -27,6 +27,8 @@ cherrypy.config.update({ 'server.socket_port': 12556, 'server.socket_host': bind path = {'/css/style.css': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':path+'css/style.css'}, \ + '/css/img/feed-icon-28x28.png': {'tools.staticfile.on': True, \ + 'tools.staticfile.filename':path+'css/img/feed-icon-28x28.png'}, \ '/css/img/delicious.png': {'tools.staticfile.on': True, \ 'tools.staticfile.filename':path+'css/img/delicious.png'}, \ '/css/img/digg.png': {'tools.staticfile.on': True, \ @@ -83,12 +85,15 @@ class Root: html += """\n
\n""" for rss_feed_id in self.dic.keys(): + feed_link = self.dic_info[rss_feed_id][2].encode('utf-8') + if not feed_link: + feed_link = "/css/img/feed-icon-28x28.png" html += """

%s -

\n""" % \ + \n""" % \ (rss_feed_id, self.dic[rss_feed_id][0][6].encode('utf-8'), \ self.dic[rss_feed_id][0][5].encode('utf-8'), \ - self.dic_info[rss_feed_id][2].encode('utf-8')) + feed_link) # The main page display only 10 articles by feeds. for article in self.dic[rss_feed_id][:10]: -- cgit