aboutsummaryrefslogtreecommitdiff
path: root/module/datetime.scm (unfollow)
Commit message (Collapse)Author
2022-03-01Remove with-stream macro.Hugo Hörnquist
It was an extra (rather complicated) macro to support, which had 2 unresolved TODO:s, and made the resulting code hard to read since it wasn't immediately apparent which procedures where replaced by their stream counterparts. The only using code was rewritten using a threading macro, which is way more readable.
2022-03-01Add unit test for days-in-interval.Hugo Hörnquist
2022-02-13Datetime restrict imports.Hugo Hörnquist
We might want to break datetime out into its own (independent) module, but for that we should have a clear understanding of what it uses.
2022-02-13Datetime remove old commented parse-month.Hugo Hörnquist
2022-02-13Datetime rewrote parse-month.Hugo Hörnquist
2022-02-01Remove define-many.Hugo Hörnquist
It was only used in one module, and provided litle clarity over a simple set of define statementns.
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2022-01-29Add span-upto.Hugo Hörnquist
2022-01-29Add ~b and ~p flags to datetime parser.Hugo Hörnquist
2021-12-09<datetime> no longer crashes.Hugo Hörnquist
2021-08-24Fix warning calls in string->datetime.Hugo Hörnquist
2021-01-14Added string->date/-time.Hugo Hörnquist
2021-01-14Bind full week days in addition to abriviations.Hugo Hörnquist
2020-10-23Add entry-point for generating tidsrapporter.Hugo Hörnquist
2020-09-06Improve datetime error messages.Hugo Hörnquist
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-08-12Massivly simplify config internals.Hugo Hörnquist
2020-08-10Remove dependency from view/calendar -> datetime.Hugo Hörnquist
2020-08-04Start work on long event layout for months.Hugo Hörnquist
2020-07-30Add datetime-.Hugo Hörnquist
2020-07-27Merge mod!:s functionality into set!Hugo Hörnquist
2020-07-07Remove some TODO:s.Hugo Hörnquist
2020-07-07Major reordering in datetime.Hugo Hörnquist
2020-07-07Clean up datetime parsing.Hugo Hörnquist
2020-07-07Merge (datetime util) into (datetime).Hugo Hörnquist
2020-06-28Add parse-iso-datetime.Hugo Hörnquist
2020-06-15Clarify and fix TZ stuff in (datetime).Hugo Hörnquist
2020-06-13Change write-form of <datetime>.Hugo Hörnquist
2020-06-13Date, time & datetime now display themself in read-able forms.Hugo Hörnquist
2020-05-24Fix multi day overflow in time-.Hugo Hörnquist
2020-05-23Cleanup in datetime.Hugo Hörnquist
2020-05-23date= and time= now work.Hugo Hörnquist
2020-05-19Cleanup in datetime.Hugo Hörnquist
2020-05-19date=, datetime=, time= any number of arguments.Hugo Hörnquist
2020-05-14Add some TODO's.Hugo Hörnquist
2020-05-05Change to only call get-datetime in parse.Hugo Hörnquist
2020-04-26Add some comments.Hugo Hörnquist
2020-04-25Datetime+ now retains zoneinfo.Hugo Hörnquist
2020-04-25Add current-datetime.Hugo Hörnquist
2020-04-22Add get-timezone.Hugo Hörnquist
2020-04-22Add time-zero?Hugo Hörnquist
2020-04-16Fix date-difference when changing year.Hugo Hörnquist
Previously some days in a date-difference would be dropped when the end date was in the year after the start date. There might be more bugs of this nature, better testing should be put in place.
2020-04-05Introduce datetime->unix-time and back.Hugo Hörnquist
2020-03-31Rename parse-date to parse-ics-date, add parse-iso-date.Hugo Hörnquist
2020-03-29Clarify error on bad RRULE's.Hugo Hörnquist
2020-03-25minor cleanup.Hugo Hörnquist
2020-03-25Improve *->decimal-hour procedures.Hugo Hörnquist
2020-03-25Fix bug in date-difference.Hugo Hörnquist
2020-03-24Move some datetime procedures to propper modules.Hugo Hörnquist
2020-03-24Change date{,time}-difference to hopefully sensible types.Hugo Hörnquist