Content deleted Content added
move FFA detection from the main module, and put double statuses in the statuses table with an "isDouble" field, for simplicity of looking up codes |
use status rather than currentStatus |
||
Line 58:
local result = actionObj:getResult()
if result == 'demoted' or result == 'merged' then
local
local sortKey = articleHistoryObj.currentTitle.subjectPageTitle.prefixedText
if
sortKey = '#' .. sortKey
end
Line 156:
if result == 'demoted' or result == 'merged' then
local sortKey
if articleHistoryObj:
sortKey = '#' .. articleHistoryObj.currentTitle.subjectPageTitle.prefixedText
else
Line 278:
function (actionObj, articleHistoryObj)
if actionObj:getResult() == 'not listed' then
local
if
and
and
then
return 'Former good article nominees', articleHistoryObj.currentTitle.text
Line 322:
function (actionObj, articleHistoryObj)
if actionObj:getResult() == 'delisted' then
local
if
and
then
return 'Delisted good articles', articleHistoryObj.currentTitle.text
|