代码搜索:Lua
找到约 9,588 项符合「Lua」的源代码
代码结果 9,588
www.eeworm.com/read/492380/1174696
svn-base save.lua.svn-base
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
data = datajson()
-- check data, id and values are passed
if (data ~= nil and data['id'] ~= nil and data['values'] ~= nil) then
file
www.eeworm.com/read/492380/1174697
svn-base main.lua.svn-base
#!/usr/bin/lua
-- Copyright (C) 2008 OpenRB.com
require('fslib')
cfg = uci.init('system')
cfgvars = {
values = {},
params = {}
}
if (cfg ~= nil) then
for id, fields in pairs(cfg) do
cfg
www.eeworm.com/read/492380/1174706
svn-base save.lua.svn-base
#!/usr/bin/lua
-- Copyright (C) 2009 OpenRB.com
require('fslib')
data = datajson() or {}
if (data ~= nil and data['values'] ~= nil) then
file = 'route'
type = 'route'
if (data['id'] == nil) t
www.eeworm.com/read/492380/1174707
svn-base main.lua.svn-base
#!/usr/bin/lua
-- Copyright (C) 2009 OpenRB.com
require('fslib')
io.write(json.encode({
static = uci.get_array('route'),
dynamic = readlines('route', 2, true)
}))