From 3290b51c91659fb85d1f8b60ba70beb27e6bdade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 26 Aug 2016 18:05:18 +0200 Subject: [PATCH 1/2] Update update_thirdparty.sh --- var/www/update_thirdparty.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/www/update_thirdparty.sh b/var/www/update_thirdparty.sh index 94134a62..471e8896 100755 --- a/var/www/update_thirdparty.sh +++ b/var/www/update_thirdparty.sh @@ -49,7 +49,7 @@ mv temp/jquery.canvasjs.min.js ./static/js/jquery.canvasjs.min.js wget https://jqueryui.com/resources/download/jquery-ui-1.12.0.zip -O temp/jquery-ui.zip unzip temp/jquery-ui.zip -d temp/ mv temp/jquery-ui-1.12.0/jquery-ui.min.js ./static/js/jquery-ui.min.js -mv temp/jquery-ui-1.12.0/jquery-ui.min.css ./static/js/jquery-ui.min.css +mv temp/jquery-ui-1.12.0/jquery-ui.min.css ./static/css/jquery-ui.min.css rm -rf temp mkdir -p ./static/image From acfe9c1336eaab0e866db5abd184db681d1554c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 26 Aug 2016 18:06:48 +0200 Subject: [PATCH 2/2] Update Flask_server.py --- var/www/Flask_server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/var/www/Flask_server.py b/var/www/Flask_server.py index 4715aaac..f3f9d71a 100755 --- a/var/www/Flask_server.py +++ b/var/www/Flask_server.py @@ -677,7 +677,6 @@ def terms_plot_tool_data(): else: value_range = [] for timestamp in range(range_start, range_end+oneDay, oneDay): - print timestamp, term value = r_serv_term.hget(timestamp, term) curr_value_range = int(value) if value is not None else 0 value_range.append([timestamp, curr_value_range])