aboutsummaryrefslogtreecommitdiff
path: root/module/entry-points/html.scm (follow)
Commit message (Collapse)AuthorAge
* Update HTML to use app.Hugo Hörnquist2020-04-30
|
* Remove previous-week-start.Hugo Hörnquist2020-04-25
|
* Minor changes.Hugo Hörnquist2020-04-05
|
* 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.
* HTML weekly proper week-start.Hugo Hörnquist2020-03-22
|
* HTML small cal table now works with better intervals.Hugo Hörnquist2020-03-22
|
* Start work on week-by-week html.Hugo Hörnquist2020-03-22
|
* Rewamp HTML-main to allow for more styles.Hugo Hörnquist2020-03-19
|
* Sprinkled in some time prints.Hugo Hörnquist2020-03-09
|
* Move actual calendar render into own callback function.Hugo Hörnquist2020-03-02
|
* Freed datetime from its srfi-19 prison.Hugo Hörnquist2020-02-18
|
* Minor cleanup.Hugo Hörnquist2020-02-16
|
* Add count parameter to chunked html.Hugo Hörnquist2020-02-16
|
* Once again compiles.Hugo Hörnquist2020-01-30
|
* Move config from module to config directory.Hugo Hörnquist2019-12-28
|
* Rework program initialization.Hugo Hörnquist2019-12-24
Old init setup had the fancy idea to parse all files before anything could be done with them. This however led to problems when a part of the program which didn't care for the calendar files (such as text formatting). It also made testing performance almost impossible since to much code was run before I had a chance to init statprof.