luci-app-statistics: convert graph rendering to client side js
authorJo-Philipp Wich <jo@mein.io>
Thu, 13 Feb 2020 19:45:26 +0000 (20:45 +0100)
committerJo-Philipp Wich <jo@mein.io>
Thu, 13 Feb 2020 19:45:26 +0000 (20:45 +0100)
commit9680fdea9e2e38bfafe0d97967925dd9fc836a05
treeccc5e30e098eab84c4eaf2da8bda97dbfd5a17df
parent1d47f0c1a913ccbcba86061daa20e1e336d7b559
luci-app-statistics: convert graph rendering to client side js

This conversion requires cgi-io >= version 17 and uhttpd version >= 2020-02-12
to function properly.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
95 files changed:
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js [new file with mode: 0644]
applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js [new file with mode: 0644]
applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/datatree.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/i18n.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua [deleted file]
applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua [deleted file]
applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm [deleted file]
applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm [deleted file]
applications/luci-app-statistics/po/bg/statistics.po
applications/luci-app-statistics/po/ca/statistics.po
applications/luci-app-statistics/po/cs/statistics.po
applications/luci-app-statistics/po/de/statistics.po
applications/luci-app-statistics/po/el/statistics.po
applications/luci-app-statistics/po/en/statistics.po
applications/luci-app-statistics/po/es/statistics.po
applications/luci-app-statistics/po/fr/statistics.po
applications/luci-app-statistics/po/he/statistics.po
applications/luci-app-statistics/po/hi/statistics.po
applications/luci-app-statistics/po/hu/statistics.po
applications/luci-app-statistics/po/it/statistics.po
applications/luci-app-statistics/po/ja/statistics.po
applications/luci-app-statistics/po/ko/statistics.po
applications/luci-app-statistics/po/mr/statistics.po
applications/luci-app-statistics/po/ms/statistics.po
applications/luci-app-statistics/po/nb_NO/statistics.po
applications/luci-app-statistics/po/pl/statistics.po
applications/luci-app-statistics/po/pt/statistics.po
applications/luci-app-statistics/po/pt_BR/statistics.po
applications/luci-app-statistics/po/ro/statistics.po
applications/luci-app-statistics/po/ru/statistics.po
applications/luci-app-statistics/po/sk/statistics.po
applications/luci-app-statistics/po/sv/statistics.po
applications/luci-app-statistics/po/templates/statistics.pot
applications/luci-app-statistics/po/tr/statistics.po
applications/luci-app-statistics/po/uk/statistics.po
applications/luci-app-statistics/po/vi/statistics.po
applications/luci-app-statistics/po/zh_Hans/statistics.po
applications/luci-app-statistics/po/zh_Hant/statistics.po
applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json [new file with mode: 0644]