Module:Aligned dates list
Appearance
From Wikipedia, the free encyclopedia
[画像:Ready for use] This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing.
[画像:Protected] This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing.
Warning This Lua module is used on approximately 2,500 pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them.
Module:Aligned dates list is used to generate div elements with the month name and day number. Thus far it is primarily used with Template:Aviation accidents and incidents, however it could also be applied to similar navboxes.
Usage
{{#invoke:Aligned dates list|main}}
The above documentation is transcluded from Module:Aligned dates list/doc. (edit | history)
Editors can experiment in this module's sandbox (edit | diff) and testcases (create) pages.
Subpages of this module.
Editors can experiment in this module's sandbox (edit | diff) and testcases (create) pages.
Subpages of this module.
local p = {} function p.main(frame) local output = {} local monthNames = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"} local daysInMonth = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} local function generateSuffixes() local suffixes = {""} for char = string.byte("b"), string.byte("z") do table.insert(suffixes, string.char(char)) end return suffixes end local suffixes = generateSuffixes() for month = 1, 12 do local monthName = monthNames[month] local days = daysInMonth[month] for day = 1, days do for _, suffix in ipairs(suffixes) do local key1 = string.format("%02d-%02d%s", month, day, suffix) local key2 = string.format("%s %02d%s", string.sub(monthName, 1, 3), day, suffix) local key3 = string.format("%s %02d%s", string.lower(string.sub(monthName, 1, 3)), day, suffix) local value = frame:getParent().args[key1] or frame:getParent().args[key2] or frame:getParent().args[key3] if value then table.insert(output, string.format('<div><div style="width:4em;display:inline-block;">%s %d</div> <div style="display:inline-block;">%s</div></div>', monthName, day, value)) end end end end return table.concat(output) end return p