aboutsummaryrefslogtreecommitdiff
path: root/module/datetime/util.scm (unfollow)
Commit message (Collapse)Author
2020-03-31Attempt at decentralized configuration system.Hugo Hörnquist
Placing all possible configuration items in a central (parameters) module scales really badly. This idea that any module can register configuration parameters is better. The current implementation however has the drawback that it requires that the module exposing the parameter is loaded before the value can be sat, but that scales even worse. A probable solution would be to abandon binding everything to guile's module system, and instead let (util config) provide a `conf-ref' and a `conf-set!' procedures. A `define-configuration' similar to emacs `defcustom' could be of use, mainly for retroactively type checking parameters.
2020-03-31Add {start,end}-of-week.Hugo Hörnquist
2020-03-31Redefine all <date>-stream in terms of general date-stream.Hugo Hörnquist
2020-03-25Improve *->decimal-hour procedures.Hugo Hörnquist
2020-03-24Add date-{min,max}.Hugo Hörnquist
2020-03-23Remove deprecated get-time.Hugo Hörnquist
2020-03-22Add previous-week-start procedure.Hugo Hörnquist
2020-03-20Add datetime-{min,max}.Hugo Hörnquist
2020-03-19Add ~e and ~b to date->string.Hugo Hörnquist
2020-03-19Fix year-rollover bug in month-days.Hugo Hörnquist
2020-03-19Move date util procedures to module, document.Hugo Hörnquist
2020-03-18Add week-stream.Hugo Hörnquist
2020-03-02Made start of week for html configurable.Hugo Hörnquist
2020-02-18Freed datetime from its srfi-19 prison.Hugo Hörnquist
2020-02-16Get-time now always returns localtime.Hugo Hörnquist
2020-02-14Export utc? for time objects.Hugo Hörnquist
2020-02-14Cleanup and tests.Hugo Hörnquist
2020-02-14Months once again start on the first.Hugo Hörnquist
2020-02-13Remove in-day?Hugo Hörnquist
2020-02-03Fix date<=.Hugo Hörnquist
2020-01-31Work.Hugo Hörnquist
2020-01-30Once again compiles.Hugo Hörnquist
2020-01-26Export as-{date,time}.Hugo Hörnquist
2020-01-24Start of new date structures.Hugo Hörnquist