Content deleted Content added
WIP: JSON -> LUA |
Use mw.loadJsonData() |
||
(12 intermediate revisions by one other user not shown) | |||
Line 2:
function p.main( frame )
local
local output = ''
for i, v in ipairs(decoded.enabledversions) do
output = output .. '* ' .. v.version
if v.dev then
output = output .. ' (svn)'
end
output = output .. '\n'
end
return output
end
|