Module:Asbox: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Codehydro matching |
meta>Codehydro td to buffer, not br; rm args.name from if condition; error cats won't show if part of condition |
||
Line 38: | Line 38: | ||
end | end | ||
if args.note then | if args.note then | ||
buffer:tag('br', {selfClosing = true}) | |||
buffer | buffer | ||
:tag('span') | :tag('span') | ||
:css('font-style', 'normal') | :css('font-style', 'normal') | ||
Line 56: | Line 56: | ||
end | end | ||
end | end | ||
if | if not args.demo and page.basePageTitle ~= WRAPPER_TEMPLATE then | ||
local nameTitle = mw.title.new(args.name) | local nameTitle = mw.title.new(args.name or '') | ||
if not nameTitle then | if not nameTitle then | ||
error("invalid page name in 'name' argument", 2) | error("invalid page name in 'name' argument", 2) |
Revision as of 16:37, 24 December 2014
Documentation for this module may be created at Module:Asbox/doc
local WRAPPER_TEMPLATE = 'Template:Asbox'
local p = {}
function p._main(args)
local output = mw.html.create('table')
local page = mw.title.getCurrentTitle()
local buffer = mw.html.create('td')
output
:addClass('metadata plainlinks stub')
:css('background','transparent')
:attr('role','presentation')
if args.icon or args.image then
output
:tag('td'):wikitext(args.icon or string.format(
'[[File:%s|%spx|alt=%s]]',
args.image,
args.pix and ('|' .. args.pix) or '40x30',
args.imagealt or 'Stub icon'
))
end
buffer
:tag('i')
:wikitext(string.format(
'This %s %s %s is a [[Wikipedia:stub|stub]]. You can help Wikipedia by [%s expanding it].',
args.subject or '',
args.article or 'article',
args.qualifier or '',
page:fullUrl('action=edit', 'relative')
))
if args.name then
buffer
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 'yes',
style = 'position: absolute; right: 15px; display: none;'
})
end
if args.note then
buffer:tag('br', {selfClosing = true})
buffer
:tag('span')
:css('font-style', 'normal')
:css('font-size', 'smaller')
:wikitext(args.note)
end
output
:node(buffer)
output = tostring(output)
if page.namespace == 0 then -- Main namespace
output = output .. '[[Category:All stub articles]]'
for k,v in pairs(args) do
if string.match(k, 'category%d?') then
output = string.format('%s[[Category:%s]]', output, v)
end
end
end
if not args.demo and page.basePageTitle ~= WRAPPER_TEMPLATE then
local nameTitle = mw.title.new(args.name or '')
if not nameTitle then
error("invalid page name in 'name' argument", 2)
elseif nameTitle == page then
output = output .. frame:expandTemplate{
title = 'Asbox/templatepage',
args = args
}
elseif not nameTitle.isSubpage and nameTitle.namespace == 10 then -- Template namespace and not a subpage
output = output .. string.format(
'[[Category:Stub message templates needing attention|%s]]',
(args.name and 'E' or 'W') .. page.text
)
end
end
return output
end
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {
wrappers = WRAPPER_TEMPLATE
})
return p._main(args)
end
return p