ماژول:AFC submission catcheck
ظاهر
بو ماژول اوچون بلگهلر ماژول:AFC submission catcheck/بلگه صفحهسینده یارادیلا بیلینر
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,"%[%[بؤلمه:مقالههای ایجاد شده توسط ایجادگر%]%]",""))
if mw.ustring.match(tc, "%[%[%s-بؤلمه:" ) == nil then
return ""
else
return "[[بؤلمه:درخواستهای مقالهها برای ایجاد همراه ردهها]]"
end
end
function p.submitted(frame)
if mw.ustring.find(removeFalsePositives(mw.title.getCurrentTitle():getContent()), '{{درخواستهای مقالهها برای ایجاد||', 1, true) then
return frame.args[1]
else
return frame.args[2]
end
end
return p