Module:Imahero/test: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
function p.testing(frame) | function p.testing(frame) | ||
compile = '' | compile = '' | ||
compile = compile..frame:expandTemplate{title = 'exist', args = { | for filetype in {'png', 'gif', 'jpg'} do | ||
for filesize in {'tiny', 'small', 'medium', 'large', 'huge'} do | |||
filename = 'file:'..frame.args.scenario..' map '..filesize..'.'..filetype | |||
ufilename = 'file:'..frame.args.scenario..' underground map '..filesize..'.'..filetype | |||
compile = compile..frame:expandTemplate{title = 'exist', args = {filename, '[['..filename..']]'}} | |||
compile = compile..frame:expandTemplate{title = 'exist', args = {ufilename, '[['..ufilename..']]'}} | |||
end | |||
end | |||
return compile | return compile | ||
end | end |
Revision as of 23:48, 19 December 2023
See usage on user:imahero/test.
local p = {} --p stands for package
function p.testing(frame)
compile = ''
for filetype in {'png', 'gif', 'jpg'} do
for filesize in {'tiny', 'small', 'medium', 'large', 'huge'} do
filename = 'file:'..frame.args.scenario..' map '..filesize..'.'..filetype
ufilename = 'file:'..frame.args.scenario..' underground map '..filesize..'.'..filetype
compile = compile..frame:expandTemplate{title = 'exist', args = {filename, '[['..filename..']]'}}
compile = compile..frame:expandTemplate{title = 'exist', args = {ufilename, '[['..ufilename..']]'}}
end
end
return compile
end
function p.getheight(frame)
-- mw.title.makeTitle(namespace, title, fragment, interwiki)
map = mw.title.makeTitle(6, "A Cold Day in Hell map large.png")
return map.file.height
end
function p.test( frame )
return frame
end
langObject = mw.getLanguage( 'simple' )
function p.language( frame )
return langObject:getCode()
end
function p.arrow( frame )
return langObject:getArrow( frame.args.direction )
end
return p