Module:AfC submission catcheck: Difference between revisions
(Created page with "local p = {} local function removeFalsePositives(str) if not str then return '' end str = mw.ustring.gsub(str, "<!--.--->", "") str = mw.ustring.gsub(str, "<nowiki>.-</...") |
m (→top: Fixing name) |
||
Line 9: | Line 9: | ||
str = mw.ustring.gsub(str, "{{[Dd]raft categories[^{}]-{{[^{}]-}}[^{}]-}}", "") | str = mw.ustring.gsub(str, "{{[Dd]raft categories[^{}]-{{[^{}]-}}[^{}]-}}", "") | ||
str = mw.ustring.gsub(str, "{{[Dd]raft categories.-}}", "") | str = mw.ustring.gsub(str, "{{[Dd]raft categories.-}}", "") | ||
str = mw.ustring.gsub(str,"%[%[Category:Unsuitable for | str = mw.ustring.gsub(str,"%[%[Category:Unsuitable for Bharatpedia AfC submissions%]%]","") | ||
str = mw.ustring.gsub(str,"%[%[Category:[Dd]rafts.-%]%]","") | str = mw.ustring.gsub(str,"%[%[Category:[Dd]rafts.-%]%]","") | ||
str = mw.ustring.gsub(str,"%[%[Category:.-drafts%]%]","") | str = mw.ustring.gsub(str,"%[%[Category:.-drafts%]%]","") |
Latest revision as of 11:06, 17 April 2021
Documentation for this module may be created at Module:AfC submission catcheck/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, "{{[Dd]raft categories.-}}", "") str = mw.ustring.gsub(str,"%[%[Category:Unsuitable for Bharatpedia AfC submissions%]%]","") str = mw.ustring.gsub(str,"%[%[Category:[Dd]rafts.-%]%]","") str = mw.ustring.gsub(str,"%[%[Category:.-drafts%]%]","") 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) local text = removeFalsePositives(mw.title.getCurrentTitle():getContent()) if mw.ustring.find(text, '{{AfC submission||', 1, true) or mw.ustring.find(text, '{{AFC submission||', 1, true) then return frame.args[1] else return frame.args[2] end end return p