From 943404386daad121dc5aee5a641e7bd3de615ad3 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Thu, 3 Mar 2011 07:38:41 +0100 Subject: Minor changes (HTML font-size). --- utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils.py') diff --git a/utils.py b/utils.py index 67849e0a..20429b17 100755 --- a/utils.py +++ b/utils.py @@ -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([('%s\n' % \ + return ' '.join([('%s\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([('%s\n' % \ + return ' '.join([('%s\n' % \ (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, count, word)) \ for (word, count) in tags]) - return ' '.join([('%s\n' % \ + return ' '.join([('%s\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]) -- cgit