Difference between revisions of "Module:AFC submission catcheck/sandbox"

From blackwiki
Jump to navigation Jump to search
blackwiki>DannyS712
(remove most of the categories in Category:Draft articles)
m (9 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 8: Line 8:
 
str = mw.ustring.gsub(str, "<nowiki>.-</nowiki>", "")
 
str = mw.ustring.gsub(str, "<nowiki>.-</nowiki>", "")
 
str = mw.ustring.gsub(str, "{{[Dd]raft categories.-}}", "")
 
str = mw.ustring.gsub(str, "{{[Dd]raft categories.-}}", "")
 +
str = mw.ustring.gsub(str,"%[%[Category:Articles created via the Article Wizard%]%]","")
 +
str = mw.ustring.gsub(str,"%[%[Category:Unsuitable for Wikipedia AfC submissions%]%]","")
 +
str = mw.ustring.gsub(str,"%[%[Category:Drafts about.-%]%]","")
 
return str
 
return str
 
end
 
end
Line 18: Line 21:
 
     end
 
     end
 
     tc = removeFalsePositives(tc)
 
     tc = removeFalsePositives(tc)
    tc = mw.ustring.gsub(tc,"%[%[Category:Articles created via the Article Wizard%]%]","")
 
    tc = mw.ustring.gsub(tc,"%[%[Category:Unsuitable for Wikipedia AfC submissions%]%]","")
 
    tc = mw.ustring.gsub(tc,"%[%[Category:Drafts about.-%]%]","")
 
 
     if mw.ustring.match(tc, "%[%[%s-[Cc]ategory:" ) == nil then
 
     if mw.ustring.match(tc, "%[%[%s-[Cc]ategory:" ) == nil then
 
         return ""
 
         return ""

Latest revision as of 12:20, 25 September 2020

Documentation for this module may be created at Module:AFC submission catcheck/sandbox/doc

local p = {}

local function removeFalsePositives(str)
	if not str then
		return ''
	end
	str = mw.ustring.gsub(str, "<!--.--->", "")
	str = mw.ustring.gsub(str, "<nowiki>.-</nowiki>", "")
	str = mw.ustring.gsub(str, "{{[Dd]raft categories.-}}", "")
	str = mw.ustring.gsub(str,"%[%[Category:Articles created via the Article Wizard%]%]","")
	str = mw.ustring.gsub(str,"%[%[Category:Unsuitable for Wikipedia AfC submissions%]%]","")
	str = mw.ustring.gsub(str,"%[%[Category:Drafts about.-%]%]","")
	return str
end

function p.checkforcats(frame)
    local t = mw.title.getCurrentTitle()
    tc = t:getContent()
    if tc == nil then 
        return ""
    end
    tc = removeFalsePositives(tc)
    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