Jump to content

Module:AfC submission catcheck/sandbox2

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Primefac (talk | contribs) at 18:04, 18 November 2020 (Primefac moved page Module:AFC submission catcheck/sandbox2 to Module:AfC submission catcheck/sandbox2 without leaving a redirect: standardizing across the project). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

local function removeFalsePositives(str)
	if not str then
		return ''
	end
	return mw.ustring.gsub(mw.ustring.gsub(str, "<!--.--->", ""), "<nowiki>.-</nowiki>", "")
end

function p.checkforcats(frame)
    local t = mw.title.getCurrentTitle()
    tc = t:getContent()
    if tc == nil then 
        return ""
    end
    tc = removeFalsePositives(mw.ustring.gsub(tc,"%[%[Category:Articles created via the Article Wizard%]%]",""))
    if mw.ustring.match(tc, "%[%[%s-[Cc]ategory:" ) == nil then
        return ""
    else
        return "[[:Category:AfC submissions with categories]]"
    end
end

function p.submitted(frame)
	if mw.ustring.find(removeFalsePositives(mw.title.getCurrentTitle():getContent()), '{{AFC submission||', 1, true) then
		return frame.args[1]
	else
		return frame.args[2]
	end
end

return p