aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 14:42:15 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-29 14:42:15 +0100
commit7f4eb5eda6dcbe58400ab9c9ae75e76d651c3f72 (patch)
treeee78ad41812fd4ebec6fbb65c4ad48539785c310
parentSimplification of the history code. (diff)
downloadnewspipe-7f4eb5eda6dcbe58400ab9c9ae75e76d651c3f72.tar.gz
newspipe-7f4eb5eda6dcbe58400ab9c9ae75e76d651c3f72.tar.bz2
newspipe-7f4eb5eda6dcbe58400ab9c9ae75e76d651c3f72.zip
The HTML month date picker has been removed from the /history page.
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index acf64137..ddf3d5c0 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -489,8 +489,6 @@ class pyAggr3g470r(object):
if "month" not in query:
html += '<div style="width: 35%; overflow:hidden; text-align: justify">' + \
utils.tag_cloud([(elem, timeline[elem]) for elem in timeline.keys()], query_string) + '</div>'
- html += '<br /><br /><h1>Search with a month+year picker</h1>\n'
- html += '<form>\n\t<input name="m" type="month">\n\t<input type="submit" value="Go">\n</form>'
html += '<hr />'
html += htmlfooter
return html
bgstack15