applications/luci-diag-devinfo: add index() stubs to controller files (#281)
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Jul 2011 19:42:05 +0000 (19:42 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Jul 2011 19:42:05 +0000 (19:42 +0000)
applications/luci-diag-devinfo/luasrc/controller/luci_diag/devinfo_common.lua
applications/luci-diag-devinfo/luasrc/controller/luci_diag/netdiscover_common.lua
applications/luci-diag-devinfo/luasrc/controller/luci_diag/smap_common.lua

index ba6bdcd..009054a 100644 (file)
@@ -23,6 +23,10 @@ local translate = luci.i18n.translate
 local DummyValue = luci.cbi.DummyValue
 local SimpleSection = luci.cbi.SimpleSection
 
+function index()
+       return -- no-op
+end
+
 function run_processes(outnets, cmdfunc)
    i = next(outnets, nil)
    while (i) do
@@ -190,4 +194,4 @@ function config_devinfo_scan(map, scannet)
    
    o = scannet:option(luci.cbi.Value, "sleepreq", translate("Sleep Between Requests"), translate("Milliseconds to sleep between requests (default 100)"))
    o.optional = true
-end
\ No newline at end of file
+end
index 0cd981e..95859ae 100644 (file)
@@ -23,6 +23,9 @@ local translate = luci.i18n.translate
 local DummyValue = luci.cbi.DummyValue
 local SimpleSection = luci.cbi.SimpleSection
 
+function index()
+       return -- no-op
+end
         
 function get_params()
 
@@ -96,4 +99,4 @@ function action_links(netdiscovermap, mini)
    else
       b.titleref = luci.dispatcher.build_url("admin", "status", "netdiscover_devinfo")
    end
-end
\ No newline at end of file
+end
index 3d02d68..13ac91f 100644 (file)
@@ -23,6 +23,10 @@ local translate = luci.i18n.translate
 local DummyValue = luci.cbi.DummyValue
 local SimpleSection = luci.cbi.SimpleSection
 
+function index()
+       return -- no-op
+end
+
 function get_params()
 
    local smapnets_uci = luci.model.uci.cursor()