projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de5f413
)
Added missing import
author
Steven Barth
<steven@midlink.org>
Wed, 27 Aug 2008 13:49:32 +0000
(13:49 +0000)
committer
Steven Barth
<steven@midlink.org>
Wed, 27 Aug 2008 13:49:32 +0000
(13:49 +0000)
libs/uci/luasrc/model/uci.lua
patch
|
blob
|
history
diff --git
a/libs/uci/luasrc/model/uci.lua
b/libs/uci/luasrc/model/uci.lua
index de885808ac507d051c5088087404ee7710a667e4..9af5560da53d793088526475d688ac7e0df68c11 100644
(file)
--- a/
libs/uci/luasrc/model/uci.lua
+++ b/
libs/uci/luasrc/model/uci.lua
@@
-1,5
+1,5
@@
--[[
-LuCI - UCI m
p
del
+LuCI - UCI m
o
del
Description:
Generalized UCI model
@@
-23,10
+23,12
@@
See the License for the specific language governing permissions and
limitations under the License.
]]--
+local os = require "os"
local uci = require "uci2"
local util = require "luci.util"
local table = require "table"
+
local setmetatable, rawget, rawset = setmetatable, rawget, rawset
local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring
local require, getmetatable = require, getmetatable