Module:Deathage: Difference between revisions

From Catpedia
(Created page with "-- DeathAgeDayMonthYear.lua local p = {} function p.formatDate(frame) local day = frame.args[1] or 1 local month = frame.args[2] or 1 local year = frame.args[3] or 1970 return mw.getContentLanguage():formatDate('j F Y', string.format('%d-%d-%d', year, month, day)) end function p.calculateAge(frame) local day = tonumber(frame.args[1]) or 1 local month = tonumber(frame.args[2]) or 1 local year = tonumber(frame.args[3]) or 1970 local curr...")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
-- DeathAgeDayMonthYear.lua
local p = {}
local p = {}


function p.formatDate(frame)
function p.formatDate(frame)
     local day = frame.args[1] or 1
     local day = tonumber(frame.args[4]) or 1
     local month = frame.args[2] or 1
     local month = tonumber(frame.args[5]) or 1
     local year = frame.args[3] or 1970
     local year = tonumber(frame.args[6]) or 1970
     return mw.getContentLanguage():formatDate('j F Y', string.format('%d-%d-%d', year, month, day))
     return mw.getContentLanguage():formatDate('j F Y', string.format('%d-%d-%d', year, month, day))
end
end


function p.calculateAge(frame)
function p.calculateAge(frame)
     local day = tonumber(frame.args[1]) or 1
     local birthDay = tonumber(frame.args[1]) or 1
     local month = tonumber(frame.args[2]) or 1
     local birthMonth = tonumber(frame.args[2]) or 1
     local year = tonumber(frame.args[3]) or 1970
     local birthYear = tonumber(frame.args[3]) or 1970
 
     local deathDay = tonumber(frame.args[4]) or 1
     local currentDay = tonumber(mw.getCurrentFrame():callParserFunction('#time', 'j'))
     local deathMonth = tonumber(frame.args[5]) or 1
     local currentMonth = tonumber(mw.getCurrentFrame():callParserFunction('#time', 'n'))
     local deathYear = tonumber(frame.args[6]) or 1970
     local currentYear = tonumber(mw.getCurrentFrame():callParserFunction('#time', 'Y'))


     local age = currentYear - year
     local age = deathYear - birthYear
     if (currentMonth < month) or (currentMonth == month and currentDay < day) then
     if (deathMonth < birthMonth) or (deathMonth == birthMonth and deathDay < birthDay) then
         age = age - 1
         age = age - 1
     end
     end

Latest revision as of 19:43, 7 June 2024

Documentation for this module may be created at Module:Deathage/doc

local p = {}

function p.formatDate(frame)
    local day = tonumber(frame.args[4]) or 1
    local month = tonumber(frame.args[5]) or 1
    local year = tonumber(frame.args[6]) or 1970
    return mw.getContentLanguage():formatDate('j F Y', string.format('%d-%d-%d', year, month, day))
end

function p.calculateAge(frame)
    local birthDay = tonumber(frame.args[1]) or 1
    local birthMonth = tonumber(frame.args[2]) or 1
    local birthYear = tonumber(frame.args[3]) or 1970
    local deathDay = tonumber(frame.args[4]) or 1
    local deathMonth = tonumber(frame.args[5]) or 1
    local deathYear = tonumber(frame.args[6]) or 1970

    local age = deathYear - birthYear
    if (deathMonth < birthMonth) or (deathMonth == birthMonth and deathDay < birthDay) then
        age = age - 1
    end

    return age
end

function p.displayDateWithAge(frame)
    local date = p.formatDate(frame)
    local age = p.calculateAge(frame)
    return string.format('%s (aged %d)', date, age)
end

return p