diff options
-rwxr-xr-x | utils.py | 6 | ||||
-rwxr-xr-x | var/feed.lst | 1 |
2 files changed, 4 insertions, 3 deletions
@@ -170,15 +170,15 @@ def tag_cloud(tags, query="word_count"): tags.sort(key=operator.itemgetter(0)) if query == "word_count": # tags cloud from the management page - return ' '.join([('<font size="%d"><a href="/q/?querystring=%s" title="Count: %s">%s</a></font>\n' % \ + return ' '.join([('<font size=%d><a href="/q/?querystring=%s" title="Count: %s">%s</a></font>\n' % \ (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), word, count, word)) \ for (word, count) in tags]) if query == "year": # tags cloud for the history - return ' '.join([('<font size="%d"><a href="/history/?querystring=%s:%s" title="Count: %s">%s</a></font>\n' % \ + return ' '.join([('<font size=%d><a href="/history/?querystring=%s:%s" title="Count: %s">%s</a></font>\n' % \ (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, count, word)) \ for (word, count) in tags]) - return ' '.join([('<font size="%d"><a href="/history/?querystring=%s:%s" title="Count: %s">%s</a></font>\n' % \ + return ' '.join([('<font size=%d><a href="/history/?querystring=%s:%s" title="Count: %s">%s</a></font>\n' % \ (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, count, calendar.month_name[int(word)])) \ for (word, count) in tags]) diff --git a/var/feed.lst b/var/feed.lst index 24b74bf5..d40a8a0f 100755 --- a/var/feed.lst +++ b/var/feed.lst @@ -31,3 +31,4 @@ http://www.handcrafted-games.com/index.php?feed/atom http://feeds.feedburner.com/quuxlabs http://python-history.blogspot.com/feeds/posts/default http://www.haypocalc.com/wordpress/feed +http://www.crypto.com/blog/rss10.xml |