summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-uvc_streamer/luasrc/model
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-09-05 19:25:10 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-09-05 19:25:10 +0000
commitee613dd296b76b00577510e60db0cb880e87d469 (patch)
tree0b6daffaea4cc0726ef57e7501fb910bb42de5a6 /applications/luci-uvc_streamer/luasrc/model
parentac05bea1be004a4270a43825dae8430c579be72b (diff)
* luci/applications/uvc_streamer:
- display streaming address in map description - sync translation - add credits
Diffstat (limited to 'applications/luci-uvc_streamer/luasrc/model')
-rw-r--r--applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua28
1 files changed, 26 insertions, 2 deletions
diff --git a/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua b/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua
index 7c8e4bd494..2054185d4d 100644
--- a/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua
+++ b/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua
@@ -1,6 +1,30 @@
-m = Map("uvc-streamer", translate("uvc_streamer"), translate("uvc_streamer_desc"))
+--[[
-s = m:section(TypedSection, "uvc-streamer", translate("settings"))
+LuCI UVC Streamer
+(c) 2008 Yanira <forum-2008@email.de>
+
+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$
+
+]]--
+
+-- find current lan address and port of first uvc_streamer config section
+local uci = luci.model.uci.cursor_state()
+local addr = uci:get("network", "lan", "ipaddr")
+local port
+
+uci:foreach( "uvc_streamer", "uvc_streamer",
+ function(section) port = port or tonumber(section.port) end )
+
+m = Map("uvc_streamer", translate("uvc_streamer"),
+ translatef("uvc_streamer_desc", nil, addr, port, addr, port))
+
+s = m:section(TypedSection, "uvc_streamer", translate("settings"))
s.addremove = false
s.anonymous = true