aboutsummaryrefslogtreecommitdiff
path: root/module/datetime.scm (follow)
Commit message (Collapse)AuthorAge
* Remove set! from datetime.Hugo Hörnquist2022-07-07
|
* Remove case*.Hugo Hörnquist2022-07-07
| | | | It has its uses, but like others, its extra weight.
* Move each imported symbol to own line for easier removal.Hugo Hörnquist2022-07-07
| | | | | This allows each of the following commits to remove a single symbol from the import list without problem.
* Fix datetime issues discovered due to new tests.Hugo Hörnquist2022-07-07
|
* Move (date|time)-zero? higher up in datetime.Hugo Hörnquist2022-06-23
|
* Remove (add|remove)-day, and month[+-].Hugo Hörnquist2022-06-23
| | | | | Procedures where overly specific, and doing it manually was almost no more work.
* Normalize keyword syntax.Hugo Hörnquist2022-06-23
|
* Centralize (almost) all exports to :export in define-module.Hugo Hörnquist2022-06-23
|
* Remove custom let*.Hugo Hörnquist2022-06-13
| | | | | | While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
* datetime->decimal-hour correct time for hours without days.Hugo Hörnquist2022-04-21
|
* Simplify week-day-name.Hugo Hörnquist2022-04-21
| | | | | The out of range exception could never occur, since I aleready limited the interval to (n % 7) + 1.
* Replace config system with paramater based system.Hugo Hörnquist2022-04-11
| | | | | | | | | | | | | | | | This new setup stores all configurations are parameters. This forces everything into modules, and ensures that we can't have a module use an unloaded config. It (unfortunatelly) also causes users to have to specify namespaces when defining values, but ini-files (and the like) already does that. Also, there is nothing stopping a new `set-config!' from being defined which allows un-namespaced operation. The commit also removes the introspection procedures. They where a bit weird to begin with, since they only showed loaded fields. And since the program had no way of properly serializing or deserializing them we remove them for the time being. They would however be good to reintroduce together with a proper menu for editing simple configuration (see Emacs' `custom-set-variables').
* Minor fixups.Hugo Hörnquist2022-04-05
|
* Remove parse-time from (datetime timespec).Hugo Hörnquist2022-03-30
|
* Normalize errors.Hugo Hörnquist2022-03-28
|
* Stop exporting internal time+%Hugo Hörnquist2022-03-28
|
* Remove with-stream macro.Hugo Hörnquist2022-03-01
| | | | | | | | | | 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.
* Add unit test for days-in-interval.Hugo Hörnquist2022-03-01
|
* Datetime restrict imports.Hugo Hörnquist2022-02-13
| | | | | 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.
* Datetime remove old commented parse-month.Hugo Hörnquist2022-02-13
|
* Datetime rewrote parse-month.Hugo Hörnquist2022-02-13
|
* Remove define-many.Hugo Hörnquist2022-02-01
| | | | | It was only used in one module, and provided litle clarity over a simple set of define statementns.
* Move stuff from calp/util to hnh/util.Hugo Hörnquist2022-01-31
| | | | | This is the first (major) step in splitting the generally useful items into its own library.
* Add span-upto.Hugo Hörnquist2022-01-29
|
* Add ~b and ~p flags to datetime parser.Hugo Hörnquist2022-01-29
|
* <datetime> no longer crashes.Hugo Hörnquist2021-12-09
|
* Fix warning calls in string->datetime.Hugo Hörnquist2021-08-24
|
* Added string->date/-time.Hugo Hörnquist2021-01-14
|
* Bind full week days in addition to abriviations.Hugo Hörnquist2021-01-14
|
* Add entry-point for generating tidsrapporter.Hugo Hörnquist2020-10-23
|
* Improve datetime error messages.Hugo Hörnquist2020-09-06
|
* Move util modules into calp module..Hugo Hörnquist2020-08-24
|
* Massivly simplify config internals.Hugo Hörnquist2020-08-12
|
* Remove dependency from view/calendar -> datetime.Hugo Hörnquist2020-08-10
|
* Start work on long event layout for months.Hugo Hörnquist2020-08-04
|
* Add datetime-.Hugo Hörnquist2020-07-30
|
* Merge mod!:s functionality into set!Hugo Hörnquist2020-07-27
|
* Remove some TODO:s.Hugo Hörnquist2020-07-07
|
* Major reordering in datetime.Hugo Hörnquist2020-07-07
|
* Clean up datetime parsing.Hugo Hörnquist2020-07-07
|
* Merge (datetime util) into (datetime).Hugo Hörnquist2020-07-07
|
* Add parse-iso-datetime.Hugo Hörnquist2020-06-28
|
* Clarify and fix TZ stuff in (datetime).Hugo Hörnquist2020-06-15
|
* Change write-form of <datetime>.Hugo Hörnquist2020-06-13
|
* Date, time & datetime now display themself in read-able forms.Hugo Hörnquist2020-06-13
|
* Fix multi day overflow in time-.Hugo Hörnquist2020-05-24
|
* Cleanup in datetime.Hugo Hörnquist2020-05-23
|
* date= and time= now work.Hugo Hörnquist2020-05-23
|
* Cleanup in datetime.Hugo Hörnquist2020-05-19
|
* date=, datetime=, time= any number of arguments.Hugo Hörnquist2020-05-19
|