modules/admin-full: Rewrote route configuration page
[project/luci.git] / modules / freifunk / luasrc / controller / freifunk / freifunk.lua
index 636b9fc..7179726 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")
@@ -30,7 +45,6 @@ function index()
        page.setuser  = false
        page.setgroup = false
        
-       assign({"freifunk", "status", "routes"}, {"admin", "status", "routes"}, "Routingtabelle", 10)
        assign({"freifunk", "status", "iwscan"}, {"admin", "status", "iwscan"}, "WLAN-Scan", 20)
        
        assign({"freifunk", "olsr"}, {"admin", "status", "olsr"}, "OLSR", 30)
@@ -53,7 +67,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()