summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-uvc_streamer/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-03-07 18:42:12 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-03-07 18:42:12 +0000
commit1973a023292d88fb87b3c9aa9d9f6495599f0be6 (patch)
tree64925bcdd0ea73526857b7d3a19cf54e84fa249d /applications/luci-uvc_streamer/luasrc/controller
parent66fc0c4692401a5fc1e3633b58408fb5e7a20f63 (diff)
trunk: drop uvc_stremaer support, package was removed upstream
Diffstat (limited to 'applications/luci-uvc_streamer/luasrc/controller')
-rw-r--r--applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua28
1 files changed, 0 insertions, 28 deletions
diff --git a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua b/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua
deleted file mode 100644
index 7b995c26b6..0000000000
--- a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua
+++ /dev/null
@@ -1,28 +0,0 @@
---[[
-
-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$
-
-]]--
-
-module("luci.controller.uvc_streamer", package.seeall)
-
-function index()
- require("luci.i18n")
- luci.i18n.loadc("uvc_streamer")
- if not nixio.fs.access("/etc/config/uvc-streamer") then
- return
- end
-
- local page = entry({"admin", "services", "uvc_streamer"}, cbi("uvc_streamer"), luci.i18n.translate("Webcam streaming"), 60)
- page.i18n = "uvc_streamer"
- page.dependent = true
-end