\n'
html += """\n"""
html += """\n"""
@@ -286,7 +287,20 @@ class Root:
html += """\t\n"""
html += """\t\n"""
html += """\n\t\n\n"""
- html += "\n\n"
+ html += ""
+ html += htmlfooter
+ return html
+
+ management.exposed = True
+
+
+ def statistics(self, word_size=6):
+ """
+ More advanced statistics.
+ """
+ html = htmlheader()
+ html += htmlnav
+ html += """
\n"""
# Some statistics (most frequent word)
if self.feeds:
@@ -301,12 +315,12 @@ class Root:
html += '
' + \
utils.tag_cloud(self.top_words) + '
'
html += "\n"
+
html += htmlfooter
return html
- management.exposed = True
-
+ statistics.exposed = True
def q(self, querystring=None):
"""
Simply search for the string 'querystring'
--
cgit