aboutsummaryrefslogtreecommitdiff
path: root/module/datetime (follow)
Commit message (Collapse)AuthorAge
* Work on paths?Hugo Hörnquist2020-08-17
|
* Massivly simplify config internals.Hugo Hörnquist2020-08-12
|
* Resolve (datetime instance) TODO with ./configure?Hugo Hörnquist2020-08-03
| | | | | | | | | | Tried adding a ./configure script, which mostly is responsible for downloading a default zoneinfo file, and setting up the environment for the program. I have for quite a while thought about having a configure system for things like these, but also for setting up default paths. Let's see if it works out.
* Add TODO's about early load.Hugo Hörnquist2020-08-03
|
* Remove (util app).Hugo Hörnquist2020-08-02
|
* Resolve zic TODO's.Hugo Hörnquist2020-07-30
|
* Merge (datetime util) into (datetime).Hugo Hörnquist2020-07-07
|
* Merge UTC-OFFSET and TIMESPEC into one.Hugo Hörnquist2020-06-25
|
* Update weekday-list documentation.Hugo Hörnquist2020-06-13
|
* Fix normalization in (datetime util).Hugo Hörnquist2020-06-13
|
* Modify config to store return of #:pre.Hugo Hörnquist2020-06-01
|
* Timespan-overlaps? single moment and tests.Hugo Hörnquist2020-05-24
|
* Minor change.Hugo Hörnquist2020-05-24
|
* Slight changes to define-config.Hugo Hörnquist2020-05-23
|
* Remove commented procedure in-day?Hugo Hörnquist2020-05-22
|
* Fix week-start in HTML month view from server.Hugo Hörnquist2020-05-21
|
* Add week-start parameter.Hugo Hörnquist2020-05-21
|
* Cleanup in datetime.Hugo Hörnquist2020-05-19
|
* Remove leap and expiry from zic.Hugo Hörnquist2020-05-19
|
* Add all-wday-in-year.Hugo Hörnquist2020-05-13
|
* Add ~3 to datetime->string.Hugo Hörnquist2020-05-11
|
* Change to only call get-datetime in parse.Hugo Hörnquist2020-05-05
|
* Weeknumber hopefully counts correctly now.Hugo Hörnquist2020-05-03
|
* Change call signature for [gs]etf.Hugo Hörnquist2020-04-30
|
* Update ical parts to use app context.Hugo Hörnquist2020-04-30
|
* Handle TZ-rule with minimum start.Hugo Hörnquist2020-04-29
|
* Add final-event-occurence procedure.Hugo Hörnquist2020-04-27
|
* Move date-range to datetime/util.Hugo Hörnquist2020-04-26
|
* Add some comments.Hugo Hörnquist2020-04-26
|
* Remove previous-week-start.Hugo Hörnquist2020-04-25
|
* Add ice-9 format to datetime/util.Hugo Hörnquist2020-04-25
|
* Update (start|end)-of-week to work as expected.Hugo Hörnquist2020-04-24
|
* Add ~Z format to datetimes.Hugo Hörnquist2020-04-22
|
* Add locale parameter to week-day-name.Hugo Hörnquist2020-04-22
|
* Work on zoneinfo parser.Hugo Hörnquist2020-04-22
|
* map takes 2 arguments...Hugo Hörnquist2020-04-20
|
* Add parser for plaintext zoneinfo files.Hugo Hörnquist2020-04-20
|
* Add some week handling procedures.Hugo Hörnquist2020-04-20
|
* Add year-day function.Hugo Hörnquist2020-04-20
|
* Improve some errors.Hugo Hörnquist2020-04-17
|
* Add datetime functions for working with week numbers.Hugo Hörnquist2020-04-16
|
* Add multiple new text formatting procedures.Hugo Hörnquist2020-04-06
|
* Add ~k to datetime format.Hugo Hörnquist2020-04-06
|
* Introduce datetime->unix-time and back.Hugo Hörnquist2020-04-05
|
* Remove ensure? for configs, built in instead.Hugo Hörnquist2020-04-02
|
* week-day-name rethrow with better error.Hugo Hörnquist2020-04-02
|
* Made date->str use datetime->str. Reintroduce time->str.Hugo Hörnquist2020-04-02
|
* Fix internationalization of datetime formatting.Hugo Hörnquist2020-04-02
|
* Update remaining code to use new config scheme.Hugo Hörnquist2020-04-01
|
* Attempt at decentralized configuration system.Hugo Hörnquist2020-03-31
| | | | | | | | | | | | | | | 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.