* luc/statistics: add file/license headers
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 3 Jun 2008 23:15:16 +0000 (23:15 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 3 Jun 2008 23:15:16 +0000 (23:15 +0000)
17 files changed:
applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua
applications/luci-statistics/luasrc/statistics/datatree.lua
applications/luci-statistics/luasrc/statistics/i18n.lua
applications/luci-statistics/luasrc/statistics/rrdtool.lua
applications/luci-statistics/luasrc/statistics/rrdtool/colors.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/cpu/cpu.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/df/df.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/iptables/ipt_packets.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/irq/irq.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping/ping.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/processes.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/processes/ps_state.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/tcpconns/tcp_connections.lua
applications/luci-statistics/luasrc/statistics/rrdtool/definitions/wireless.lua

index 3b1bb99d711c6292b16e22973842704724e54ffd..ae1679bee7ec5914d71f2108fecdb4e6fe14da0e 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - statistics controller module
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.controller.luci_statistics.luci_statistics", package.seeall)
 
 function index()
@@ -20,11 +35,6 @@ function index()
                end
        end
 
-       -- override call(): call requested action function with supplied parameters
-       function _call( func, tree, plugin )
-               return function() getfenv()[func]( tree, plugin ) end
-       end
-
        -- override i18n(): try to translate stat_<str> or fall back to <str>
        function _i18n( str )
                return luci.i18n.translate( "stat_" .. str, str )
@@ -124,7 +134,7 @@ function statistics_networkplugins()
 end
 
 
-function statistics_render( tree )
+function statistics_render()
 
        require("luci.statistics.rrdtool")
        require("luci.template")
index 327b8ef36ad1e51cb6b291890a6a4f0baedc69f7..03608b10bbad467cfb6025850ae9a31616b6bc7c 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - rrd data tree builder
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.datatree", package.seeall)
 
 local util = require("luci.util")
index a31d126676db49c482ce6ca0149d208d87713734..865839524cf756b471849c97bc1378435e0c4878 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - diagram i18n helper
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.i18n", package.seeall)
 
 require("luci.util")
index 5f07a41ff48484f4ed977990c6f90d54e04370f6..b6f6d44ba22c4916c4d66d49b67453779c4bd37d 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - rrdtool interface library / diagram model interpreter
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool", package.seeall)
 
 require("luci.statistics.datatree")
index cdd6f71057e2069c256000b01e287eebbe37e031..8f28524aa68a29298a49094a40ff480315a05cbe 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - diagram color helper class
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.colors", package.seeall)
 
 require("luci.util")
index add69e4b648e980226bd00d5029b7ab4b33af6b3..68468c0cf1a6fa489c0f570c804245e0fa4a160a 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - data definition database (obsolete)
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions", package.seeall)
 
 require("luci.util")
index bd002e12facddcadac21b22907592c1d3d8894ae..d6053a5e75aca4ad9184b92de2755f46d17c5508 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - cpu plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.cpu.cpu",package.seeall)
 
 function rrdargs( graph, host, plugin, plugin_instance, dtype )
index a6045b720a67232c4987caf2cd2dc522f1425c6c..1d29800b3b2a9515c872ed0bd986afedd8d9747e 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - df plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.df.df", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index 0d812d6ec7831302e4ccbcecda13097f1aa64bca..029ffe3232fd90717be7f635b7e8c6684facc42b 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - interface plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.interface", package.seeall)
 
 function rrdargs( graph, host, plugin, plugin_instance )
index 2ab57e86223250e1f34200b79945f7efa9694992..e1dd5075371cfde32cfc5a39b448b7d7ba845d21 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - iptables plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.iptables.ipt_packets", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index a68227bf59f333b2f17ae15d05f0af625176f562..270e06fe6cb1a41e7e0f410708fcb4e32150880b 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - irq plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id: stat-genconfig 2272 2008-06-03 22:42:01Z nbd $
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.irq.irq", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index 8f32ab3d1e9a198d014ec4a85a515d222072c7ba..daff584b5801557e7aeeccba6e8d9ed61e401864 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - netlink plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.netlink", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance )
index a7bf2956cf1ba598d04c5942411c56b24ad7e9cc..6a3bd5e149836e495bbdf8ff4a98f94bf7915a18 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - ping plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.ping.ping", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index 17f1e2b991b75439e06be02eafa2efe1d58eb3cd..f2ca2c68a9c5a01818cd0f3a8101040827750749 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - processes plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id: stat-genconfig 2272 2008-06-03 22:42:01Z nbd $
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.processes", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance )
index 5dd446f3110e12425bed36f656fc6bc6d08079a1..c95152ee448f2d98f1dfe9d2167ebaf7422edba0 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - processes plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.processes.ps_state", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index 7f54c109146e3c8e80d07865021fd40292d0354a..9f62541b3541a420d62a72d2b89703459fe64391 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - tcpconns plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.tcpconns.tcp_connections", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
index 7c0888558347c407778b06af4186839de8915750..9bcbc069095a0c90bbd8cd037a0cb04b1a3a96e8 100644 (file)
@@ -1,3 +1,18 @@
+--[[
+
+Luci statistics - wireless plugin diagram definition
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
 module("luci.statistics.rrdtool.definitions.wireless", package.seeall)
 
 function rrdargs( graph, host, plugin, plugin_instance )