Module:Imahero/test: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
filename = frame.args.scenario..' map '..filesize..'.'..filetype | filename = frame.args.scenario..' map '..filesize..'.'..filetype | ||
ufilename = frame.args.scenario..' underground map '..filesize..'.'..filetype | ufilename = frame.args.scenario..' underground map '..filesize..'.'..filetype | ||
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..filename, getDimensions(filename) | compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..filename, getDimensions(filename)}} | ||
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..ufilename, getDimensions(ufilename) | compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..ufilename, getDimensions(ufilename)}} | ||
end | end | ||
end | end |
Revision as of 23:58, 19 December 2023
See usage on user:imahero/test.
local p = {} --p stands for package
function p.testing(frame)
compile = ''
for _, filetype in pairs({'png', 'gif', 'jpg'}) do
for _, filesize in pairs({'tiny', 'small', 'medium', 'large', 'huge'}) do
filename = frame.args.scenario..' map '..filesize..'.'..filetype
ufilename = frame.args.scenario..' underground map '..filesize..'.'..filetype
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..filename, getDimensions(filename)}}
compile = compile..frame:expandTemplate{title = 'exist', args = {'file:'..ufilename, getDimensions(ufilename)}}
end
end
return compile
end
function getDimensions(filename)
map = mw.title.makeTitle(6, filename)
return map.file.height..'x'..map.file.width
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