summaryrefslogtreecommitdiffhomepage
path: root/modules/rpc/luasrc/controller
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-01-02 19:55:21 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-01-02 19:55:21 +0000
commitc4f70ce38a049acdfefb632f7778806192dcfe01 (patch)
tree299f28837f7eb8542db0425fe7cc4620e7291f2d /modules/rpc/luasrc/controller
parentb5adeb6ba328a0a55b4c6dfe5e3db9344058e7b1 (diff)
modules/rpc: remove uvl bindings
Diffstat (limited to 'modules/rpc/luasrc/controller')
-rw-r--r--modules/rpc/luasrc/controller/rpc.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/rpc/luasrc/controller/rpc.lua b/modules/rpc/luasrc/controller/rpc.lua
index 510a025d5..7255c1780 100644
--- a/modules/rpc/luasrc/controller/rpc.lua
+++ b/modules/rpc/luasrc/controller/rpc.lua
@@ -40,7 +40,6 @@ function index()
rpc.notemplate = true
entry({"rpc", "uci"}, call("rpc_uci"))
- entry({"rpc", "uvl"}, call("rpc_uvl"))
entry({"rpc", "fs"}, call("rpc_fs"))
entry({"rpc", "sys"}, call("rpc_sys"))
entry({"rpc", "ipkg"}, call("rpc_ipkg"))
@@ -100,20 +99,6 @@ function rpc_uci()
ltn12.pump.all(jsonrpc.handle(uci, http.source()), http.write)
end
-function rpc_uvl()
- if not pcall(require, "luci.uvl") then
- luci.http.status(404, "Not Found")
- return nil
- end
- local uvl = require "luci.jsonrpcbind.uvl"
- local jsonrpc = require "luci.jsonrpc"
- local http = require "luci.http"
- local ltn12 = require "luci.ltn12"
-
- http.prepare_content("application/json")
- ltn12.pump.all(jsonrpc.handle(uvl, http.source()), http.write)
-end
-
function rpc_fs()
local util = require "luci.util"
local io = require "io"