Module:DateThings: Difference between revisions
Jump to navigation
Jump to search
JoshuaJSlone (talk | contribs) No edit summary |
JoshuaJSlone (talk | contribs) No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 17: | Line 17: | ||
end | end | ||
function p. | function p.datesplitsuccinct(frame) | ||
InputSeparator = "," | InputSeparator = "," | ||
OutputSeparator = "・" | OutputSeparator = "・" | ||
Line 39: | Line 39: | ||
Day = DateBits[3] | Day = DateBits[3] | ||
ThisDate = os.time{ year = | ThisDate = os.time{ year = Year, month = Month, day = Day } | ||
tempdate = os.date ("*t", ThisDate) | |||
Day = tempdate.day | |||
--OutputText = OutputText .. trim(DateList[i]) | --OutputText = OutputText .. trim(DateList[i]) | ||
Line 46: | Line 49: | ||
if Year==OldYear then | if Year==OldYear then | ||
if Month==OldMonth then | if Month==OldMonth then | ||
OutputText = OutputText .. Day --Only the day is different | OutputText = OutputText .. os.date("[[%B ", ThisDate) .. Day .. "|" .. Day .. "]]" --Only the day is different | ||
else | else | ||
OutputText = OutputText .. | OutputText = OutputText .. os.date("[[%B ", ThisDate) .. Day .. "]]" --Day and month are different | ||
end | end | ||
else | else | ||
OutputText = OutputText .. os.date("[[%Y]] [[%B ", ThisDate) .. Day .. "]]" --All three are different | |||
end | end | ||
Latest revision as of 22:55, 1 December 2024
Documentation for this module may be created at Module:DateThings/doc
local p = {} --Copied from https://stackoverflow.com/questions/1426954/split-string-in-lua function mysplit(inputstr, sep) if sep == nil then sep = "%s" end local t = {} for str in string.gmatch(inputstr, "([^"..sep.."]+)") do table.insert(t, str) end return t end function trim (s) return (string.gsub(s, "^%s*(.-)%s*$", "%1")) end function p.datesplitsuccinct(frame) InputSeparator = "," OutputSeparator = "・" InputText = frame.args[1] DateList = mysplit(InputText,",") OutputText = "" OldYear = 0 OldMonth = 0 OldDay = 0 for i, v in ipairs(DateList) do if i>1 then OutputText = OutputText .. OutputSeparator end DateBits = mysplit(trim(DateList[i]),"-") Year = DateBits[1] Month = DateBits[2] Day = DateBits[3] ThisDate = os.time{ year = Year, month = Month, day = Day } tempdate = os.date ("*t", ThisDate) Day = tempdate.day --OutputText = OutputText .. trim(DateList[i]) --OutputText = OutputText .. Year .. OutputSeparator .. Month .. OutputSeparator .. Day if Year==OldYear then if Month==OldMonth then OutputText = OutputText .. os.date("[[%B ", ThisDate) .. Day .. "|" .. Day .. "]]" --Only the day is different else OutputText = OutputText .. os.date("[[%B ", ThisDate) .. Day .. "]]" --Day and month are different end else OutputText = OutputText .. os.date("[[%Y]] [[%B ", ThisDate) .. Day .. "]]" --All three are different end OldYear = Year OldMonth = Month end --OutputText = Separator .. InputText .. Separator return OutputText end return p