The @calendar
module is just a single class @calendar
which is used to get information about a timestamp with regards to the
Gregorian calendar.
Create a new calendar instance.
Timestamps can be created from date parts with :time().
Get date parts.
The returned object is like:
{ year : number (negative numbers represent BC), month : number (1-12), day : number (1-31), weekday : number (0-6 starting from Sunday), hour : number (0-23), minute : number (0-59), second : number (0-59) }
If you need to convert a timestamp to a date string, consider using :date() instead.
Get the month chart as a 2D array.
Each row in the returned array is a week with 7 elements. Each element is a number corresponding to the day number. If the element is not part of the month, the day number is 0.
Shift calendar to first day of next month.
Shift calendar to first day of previous month.
Shift calendar to midnight (12 AM) of current day.
Shift calendar to midnight (12 AM) of next day.
Shift calendar to midnight (12 AM) of previous day.
Check if the day is a holiday.
The possible return values (and thus supported holidays) are:
'New Year\'s Day' #january 1 'Martin Luther King Jr. Day' #third monday in january 'Valentine\'s Day' #february 14 'Presidents\' Day' #third monday in february 'St. Patrick\'s Day' #march 17 'Spring Equinox' #march 20 'Memorial Day' #last monday in may 'Summer Solstice' #june 21 'Independence Day' #july 4 'Labor Day' #first monday in september 'Fall Equinox' #september 23 'Columbus Day' #second monday in october 'Halloween' #october 31 'Veteran\'s Day' #november 11 'Thanksgiving Day' #fourth thursday in november 'Winter Solstice' #december 22 'Christmas Day' #december 25 'Easter' #determined by computus 'Mardi Gras' #determined by computus
This is US-centric and not meant to be an exhaustive list. The computus is the algorithm for determining Easter. The equinoxes and solstices may be off by one day due to leap years. If you need to support additional holidays or better accuracy, you should create your own holiday() function.
Convert calendar back into timestamp.
Get month chart as text.
If colorize is true, the current day is highlighted and holidays are underlined. This imitates the output of the "cal" command-line tool. The current day can be overridden by passing another timestamp as now.
Get month chart as html.
This is similar to :text() except it places the chart within an HTML <pre> tag. The current day is highlighted, and past days are greyed out. Holidays are underlined and labeled with a tooltip. The current day can be overridden by passing another timestamp as now.