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

From blackwiki
Jump to navigation Jump to search
blackwiki>WOSlinker
(Created page with 'local p = {} local function removeFalsePositives(str) if not str then return '' end return mw.ustring.gsub(mw.ustring.gsub(str, "<!--.--->", ""), "<nowiki>...')
 
blackwiki>DannyS712
(replace with current version)
Line 18: Line 18:
 
         return ""
 
         return ""
 
     else
 
     else
         if mw.ustring.match(tc, "%{%{[Dd]raft categories" ) == nil then
+
         return "[[Category:AfC submissions with categories]]"
            return "[[Category:AfC submissions with categories]]"
 
        else
 
            return ""
 
        end
 
 
     end
 
     end
 
end
 
end

Revision as of 07:32, 18 January 2019

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
	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