Module:Sandbox/Dat Hack3r: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
(This is a sandbox, who cares about the edit summary?)
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


-- Function to calculate the week number based on a given date
function p.lastReleaseNumber(frame)
function p.getPreviousWeekNumber(frame)
     -- Define the start date of Week 1
     -- Define the start date of Week 1
     local week1Start = os.time{year=2024, month=9, day=8}
     local week1Start = os.time{year=2024, month=9, day=8}
   
 
     -- Convert the current date to time format
     -- Get current date
     local currentDateTime = os.time{year=currentDate.year, month=currentDate.month, day=currentDate.day}
     local currentDate = os.time()
   
 
     -- Calculate the difference in days from the start of Week 1
     -- Calculate the difference in days from the start of Week 1 to the current date
     local daysDifference = os.difftime(currentDateTime, week1Start) / (24 * 60 * 60)
     local daysDifference = os.difftime(currentDate, week1Start) / (24 * 60 * 60)
   
 
     -- Calculate the week number (rounding down to get integer weeks)
     -- Return the last Weekly Briefing Release
     local currentWeek = math.floor(daysDifference / 7) + 1
     return "[[Weekly Briefing Release "..(math.floor(daysDifference / 7)).."|Weekly Site Information]]"
   
    -- Calculate the previous week number
    local previousWeek = math.max(currentWeek - 1, 1) -- Ensure it doesn't go below 1
   
    return 'Weekly Briefing Release'..previousWeek
end
end


return p
return p

Latest revision as of 12:58, 13 November 2024

Documentation for this module may be created at Module:Sandbox/Dat Hack3r/doc

local p = {}

function p.lastReleaseNumber(frame)
    -- Define the start date of Week 1
    local week1Start = os.time{year=2024, month=9, day=8}

    -- Get current date
    local currentDate = os.time()

    -- Calculate the difference in days from the start of Week 1 to the current date
    local daysDifference = os.difftime(currentDate, week1Start) / (24 * 60 * 60)

    -- Return the last Weekly Briefing Release
    return "[[Weekly Briefing Release "..(math.floor(daysDifference / 7)).."|Weekly Site Information]]"
end

return p