Module:Good Articles: Difference between revisions

Content deleted Content added
an 'orrible 'ack to get the last number calculated
Wikipedia:Good articles/Summary
 
(6 intermediate revisions by 5 users not shown)
Line 6:
-- expect args.shortcut e.g. GA/H, args.type e.g. History, args.text a long list
local subpage = frame:preprocess("{{SUBPAGENAME}}") -- I never did look up if there's a better way to do this...
local header, shortcuts = ""'', ''
local shortcuts = ""
local type = args.type or "error: specify type = Good Articles type"
local image = args.image and '[[' .. args.image .. '|22px|left]]' or ''
if args.image then image = '[[' .. args.image .. '|22px|left]]' end
local sectioncount = 0
if (subpage == type or args.override) then -- I haven't figured out how to deal with missing shortcut so why pretend
shortcuts = frame:expandTemplate{ title = 'shortcut', args = { args.shortcut } }
header = frame:expandTemplate{ title = 'Wikipedia:Good articles/headerSummary', args = { shortcuts = shortcuts } }
end
local introtext = args.text or ''
Line 35 ⟶ 33:
</div>
<div style="clear:both;">
<span id="]===] .. type .. [===[" ></span>
<div style="padding:5px 5px 8px 5px; background-color:#66CC66; text-align:left; font-size:larger;">]===] .. image .. [===[''']===] .. type .. [===['''</div>
<div style="text-align:left;">
Line 57 ⟶ 55:
else
local image = args['image' .. tostring(section)]
text = mw.ustring.gsub(text .. "\n=", "(==.-)\n%s*%f[=]", replace)
text = mw.ustring.sub(text,1,-2) -- ditching "=" mark from line above
if (image) then
Line 64 ⟶ 62:
image = '' -- make section without an image
end
output = output .. [===[<div class="mw-collapsible" style="clear:both;"padding: class="NavFrame4px;border: 1px solid #a2a9b1;font-size: 95%;">
<span id="World history"/>
<div class="NavHead" style="padding:2px 2px 2px 30px; background-color:#FFFAF0; textfont-alignsize:leftlarger; font-sizeweight:larger bold;">]===] .. image .. title .. [===[</div>
<div class="NavContentmw-collapsible-content" style="textfont-alignsize:left; 100%">
 
==&shy;&nbsp;==
Line 74 ⟶ 72:
until false
return output
end
 
function p.subsection(frame)
if not mw.ustring.find( (frame.args[1] or frame:getParent().args[1] or '') ,'[[',1,true) then
return '<small>(0&nbsp;articles)</small>'
else
local linkList, count = mw.ustring.gsub(mw.text.trim(frame.args[1] or frame:getParent().args[1]), '\n', '&nbsp;–\n')
return linkList .. '<small>&nbsp;&nbsp;(' .. (count + 1) .. '&nbsp;article' .. ( (count ~= 0) and 's' or '') .. ')</small>'
end
end