summaryrefslogtreecommitdiffhomepage
path: root/modules/rpc/luasrc/jsonrpcbind/uvl.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-09-05 19:25:57 +0000
committerSteven Barth <steven@midlink.org>2008-09-05 19:25:57 +0000
commitcd53740e0f117885dddcd9781b2209ead7170ae5 (patch)
treee66773dd0491de109305d732119953988164e2ea /modules/rpc/luasrc/jsonrpcbind/uvl.lua
parentee613dd296b76b00577510e60db0cb880e87d469 (diff)
Move RPC-bidnings out of the way to prevent the indexer to require them
Diffstat (limited to 'modules/rpc/luasrc/jsonrpcbind/uvl.lua')
-rw-r--r--modules/rpc/luasrc/jsonrpcbind/uvl.lua41
1 files changed, 41 insertions, 0 deletions
diff --git a/modules/rpc/luasrc/jsonrpcbind/uvl.lua b/modules/rpc/luasrc/jsonrpcbind/uvl.lua
new file mode 100644
index 0000000000..5214bafe7a
--- /dev/null
+++ b/modules/rpc/luasrc/jsonrpcbind/uvl.lua
@@ -0,0 +1,41 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+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$
+]]--
+
+local uvl = require "luci.uvl".UVL()
+local table = require "table"
+
+module "luci.controller.rpc.uvl"
+_M, _PACKAGE, _NAME = nil, nil, nil
+
+
+function get_scheme(...)
+ return uvl:get_scheme(...)
+end
+
+function validate(...)
+ return {uvl:validate(...)}
+end
+
+function validate_config(...)
+ return {uvl:validate_config(...)}
+end
+
+function validate_section(...)
+ return {uvl:validate_section(...)}
+end
+
+function validate_option(...)
+ return {uvl:validate_option(...)}
+end \ No newline at end of file