From cd53740e0f117885dddcd9781b2209ead7170ae5 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 5 Sep 2008 19:25:57 +0000 Subject: Move RPC-bidnings out of the way to prevent the indexer to require them --- modules/rpc/luasrc/jsonrpcbind/uvl.lua | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 modules/rpc/luasrc/jsonrpcbind/uvl.lua (limited to 'modules/rpc/luasrc/jsonrpcbind/uvl.lua') 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 +Copyright 2008 Jo-Philipp Wich + +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 -- cgit v1.2.3