View source for Module:Data
Appearance
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local mt = {}
function mt.__index(t, k)
return function(frame)
local data = mw.loadData(k)
local i = 1
for _,v in ipairs(frame.args) do
local ty = type(data)
if ty ~= 'table' then
local args = {}
for j = 1, i - 1 do
args[j] = frame.args[j]
end
if frame.args.softfail then
return '<span class="error">[[Category:Pages with failed Module:Data lookups]]Error: Tried to read index "' .. mw.text.nowiki(v) .. '" of mw.loadData("' .. mw.text.nowiki(k) .. '").' .. mw.text.nowiki(table.concat(args, '.')) .. ', which is a ' .. ty .. '</span>'
else
error('Tried to read index "' .. v .. '" of mw.loadData("' .. k .. '").' .. table.concat(args, '.') .. ', which is a ' .. ty)
end
end
data = data[v]
i = i + 1
end
000
1:0
Templates used on this page:
- Template:Documentation (view source)
- Template:Documentation/en (view source)
- Template:IsDocSubpage (view source)
- Template:Module other (view source)
- Template:Module rating (view source)
- Template:Module rating/en (view source)
- Template:Ombox (view source)
- Template:Sandbox other (view source)
- Template:Var (view source)
- Module:Arguments (view source)
- Module:Data (view source)
- Module:Data/doc (view source)
- Module:Documentation (view source)
- Module:Documentation/config (view source)
- Module:Documentation/i18n (view source)
- Module:Documentation/styles.css (view source)
- Module:Message box (view source)
- Module:Message box/configuration (view source)
- Module:Message box/ombox.css (view source)
- Module:TNT (view source)
- Module:Yesno (view source)
Return to Module:Data.