diff options
author | cedricbonhomme <devnull@localhost> | 2011-03-03 07:38:41 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-03-03 07:38:41 +0100 |
commit | 943404386daad121dc5aee5a641e7bd3de615ad3 (patch) | |
tree | 56ab9ad8e4d5fdf3bb89a364d9e920ada1ba57b0 /utils.py | |
parent | Removed useless import. (diff) | |
download | newspipe-943404386daad121dc5aee5a641e7bd3de615ad3.tar.gz newspipe-943404386daad121dc5aee5a641e7bd3de615ad3.tar.bz2 newspipe-943404386daad121dc5aee5a641e7bd3de615ad3.zip |
Minor changes (HTML font-size).
Diffstat (limited to 'utils.py')
-rwxr-xr-x | utils.py | 6 |
1 files changed, 3 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]) |