From 855b7582d3576f45693e3a48fdb253c813cf4dce Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 14 Jun 2008 14:12:12 +0000 Subject: * Rewrote Luci to be coroutine-safe allowing the use of non-forking webservers * Setting base version to 0.7 --- .../luasrc/controller/luci_statistics/luci_statistics.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'applications/luci-statistics/luasrc/controller/luci_statistics') diff --git a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index be6430eed2..36c6d9b573 100644 --- a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -149,8 +149,8 @@ function statistics_render() require("luci.model.uci") local vars = luci.http.formvalues() - local req = luci.dispatcher.request - local path = luci.dispatcher.dispatched.path + local req = luci.dispatcher.context.request + local path = luci.dispatcher.context.dispatched.path local uci = luci.model.uci local spans = luci.util.split( uci.get( "luci_statistics", "collectd_rrdtool", "RRATimespans" ), "%s+", nil, true ) local span = vars.timespan or uci.get( "luci_statistics", "rrdtool", "default_timespan" ) or spans[1] @@ -160,10 +160,10 @@ function statistics_render() local images = { } -- find requested plugin and instance - for i, p in ipairs( luci.dispatcher.dispatched.path ) do - if luci.dispatcher.dispatched.path[i] == "graph" then - plugin = luci.dispatcher.dispatched.path[i+1] - instances = { luci.dispatcher.dispatched.path[i+2] } + for i, p in ipairs( luci.dispatcher.context.dispatched.path ) do + if luci.dispatcher.context.dispatched.path[i] == "graph" then + plugin = luci.dispatcher.context.dispatched.path[i+1] + instances = { luci.dispatcher.context.dispatched.path[i+2] } end end -- cgit v1.2.3