modules/rpc: remove uvl bindings
[project/luci.git] / modules / rpc / luasrc / controller / rpc.lua
index 510a025..7255c17 100644 (file)
@@ -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"