diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-25 17:53:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-25 17:53:04 +0000 |
commit | bf907eafda47648257d4b4a39eeaf21b9eddec0c (patch) | |
tree | d20401f0536994ca2efccf5bd6c908dc800026d0 /applications/luci-statistics/src/controller | |
parent | 4a80f37832a692f627b5e02bc8cdfb2efd9909e3 (diff) |
* luci/statistics: ffluci -> luci conversation
Diffstat (limited to 'applications/luci-statistics/src/controller')
-rw-r--r-- | applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua index a30db7c09c..df262a1154 100644 --- a/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua @@ -1,9 +1,9 @@ -module("ffluci.controller.luci_statistics.luci_statistics", package.seeall) +module("luci.controller.luci_statistics.luci_statistics", package.seeall) -local fs = require("ffluci.fs") -local tpl = require("ffluci.template") -local rrd = require("ffluci.statistics.rrdtool") -local data = require("ffluci.statistics.datatree").Instance() +local fs = require("luci.fs") +local tpl = require("luci.template") +local rrd = require("luci.statistics.rrdtool") +local data = require("luci.statistics.datatree").Instance() function _entry( path, ... ) @@ -93,7 +93,7 @@ end function statistics_render() - local plugin = ffluci.dispatcher.request[3] + local plugin = luci.dispatcher.request[3] local images = { } for i, inst in ipairs( data:plugin_instances( plugin ) ) do |