From 092c2d38a0267308bc521e133f21f2652676f16d Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Tue, 9 Oct 2012 08:28:34 +0200 Subject: Improved the display of the 'statistics' page. --- source/pyAggr3g470r.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index ae623214..dd26807f 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -308,13 +308,12 @@ class Root: # Some statistics (most frequent word) if articles: top_words = utils.top_words(articles, n=50, size=int(word_size)) - html += "

Statistics

\n
\n" + html += "

Statistics

\n" + html += "

Tag cloud

\n" # Tags cloud - html += 'Minimum size of a word:' - html += '
' - html += """""" % (word_size) - html += '
\n' - html += '

Tag cloud

\n' + html += '
\n' + html += "Minimum size of a word:\n" + html += """
\n""" % (word_size) html += '
' + \ utils.tag_cloud(top_words) + '
' html += "
\n" -- cgit