applications/luci-minidlna: fix whitespace in controller, add status display to cbi map
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 7 Apr 2012 23:39:27 +0000 (23:39 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 7 Apr 2012 23:39:27 +0000 (23:39 +0000)
applications/luci-minidlna/luasrc/controller/minidlna.lua
applications/luci-minidlna/luasrc/model/cbi/minidlna.lua

index c775bdd..5b9d62e 100644 (file)
@@ -30,15 +30,15 @@ end
 
 function minidlna_status()
        local sys  = require "luci.sys"
-    local uci  = require "luci.model.uci".cursor()
-    local port = tonumber(uci:get_first("minidlna", "minidlna", "port"))
+       local uci  = require "luci.model.uci".cursor()
+       local port = tonumber(uci:get_first("minidlna", "minidlna", "port"))
 
-    local status = {
+       local status = {
                running = (sys.call("pidof minidlna >/dev/null") == 0),
-        audio   = 0,
-        video   = 0,
-        image   = 0
-    }
+               audio   = 0,
+               video   = 0,
+               image   = 0
+       }
 
        if status.running then
                local fd = sys.httpget("http://127.0.0.1:%d/" % (port or 8200), true)
index 051e355..8205692 100644 (file)
@@ -15,6 +15,8 @@ $Id$
 m = Map("minidlna", translate("miniDLNA"),
        translate("MiniDLNA is server software with the aim of being fully compliant with DLNA/UPnP-AV clients."))
 
+m:section(SimpleSection).template  = "minidlna_status"
+
 s = m:section(TypedSection, "minidlna", "miniDLNA Settings")
 s.addremove = false
 s.anonymous = true