Module:Shortcut/sandbox: Difference between revisions

Content deleted Content added
remove policy option for now
Whatback11 (talk | contribs)
No edit summary
 
(9 intermediate revisions by 4 users not shown)
Line 2:
 
-- Set constants
local CONFIG_MODULE = 'Module:Shortcut/config/sandbox'
 
-- Load required modules
Line 24:
frame = frame or mw.getCurrentFrame()
cfg = cfg or mw.loadData(CONFIG_MODULE)
local templateMode = options.template and yesno(options.template)
local floatLeftredirectMode = options.floatredirect and yesno(options.float:lower(redirect) == 'left'
local isCategorized = not options.category or yesno(options.category) ~= false
 
-- Validate shortcuts
Line 39:
local listItems = {}
for i, shortcut in ipairs(shortcuts) do
local templatePath, prefix
if templateMode then
-- Namespace detection
Line 48:
templatePath = shortcut
end
prefix = options['pre' .. i] or options.pre or ''
end
if options.target and yesno(options.target) then
listItems[i] = templateMode
and string.format("TM:{{%s[[%s|%s]]}}", prefix, templatePath, shortcut)
or string.format("[[%s]]", shortcut)
else
listItems[i] = frame:expandTemplate{
title = 'No redirect',
args = templateMode and {templatePath, shortcut} or {shortcut, shortcut}
}
if templateMode then
listItems[i] = string.format("TM:{{%s%s}}", prefix, listItems[i])
end
end
Line 76 ⟶ 77:
 
local root = mw.html.create()
root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = 'Module:Shortcut/sandbox/styles.css'} })
-- Anchors
local anchorDiv = root
Line 91 ⟶ 92:
local nShortcuts = #shortcuts
if nShortcuts > 0 then
local headingMsg = options['shortcut-heading'] or
redirectMode and cfg['redirect-heading'] or
cfg['shortcut-heading']
shortcutHeading = message(headingMsg, nShortcuts)
shortcutHeading = frame:preprocess(shortcutHeading)
Line 99 ⟶ 103:
local shortcutList = root
:tag('div')
:addClass('module-shortcutboxplain plainlist noprint')
:attr('role', 'note')
if options.float and options.float:lower() == 'left' then
if floatLeft then
shortcutList:addClass('module-shortcutboxleft')
end
if options.clear and options.clear ~= '' then
shortcutList:css('clear', options.clear)
end
if shortcutHeading then
Line 110 ⟶ 117:
:wikitext(shortcutHeading)
end
local list = shortcutList:tag('ul')
forlocal i,ubl item= in ipairsrequire('Module:List').unbulleted(listItems) do
list:tag('li') shortcutList:wikitext(itemubl)
end
return tostring(root)
end