modules/admin-mini: some work on lan and wan configuration
[project/luci.git] / modules / freifunk / luasrc / controller / freifunk / freifunk.lua
index 636b9fc..e4ab2bb 100644 (file)
@@ -1,9 +1,23 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+
+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.freifunk.freifunk", package.seeall)
 
 function index()
        local i18n = luci.i18n.translate
 
        local page  = node()
+       page.lock   = true
        page.target = alias("freifunk")
 
        local page    = node("freifunk")
@@ -12,6 +26,7 @@ function index()
        page.order    = 5
        page.setuser  = "nobody"
        page.setgroup = "nogroup"
+       page.i18n     = "freifunk"
        
        local page  = node("freifunk", "index")
        page.target = template("freifunk/index")
@@ -53,7 +68,8 @@ end
 function action_status()
        local data = {}
        
-       data.s, data.m, data.r = luci.sys.sysinfo()
+       data.system, data.model, data.memtotal, data.memcached, data.membuffers, data.memfree, data.perc_memfree, data.perc_membuffers, data.perc_memcached = luci.sys.sysinfo()
+
        
        data.wifi = luci.sys.wifi.getiwconfig()