aboutsummaryrefslogtreecommitdiff
path: root/module (follow)
Commit message (Collapse)AuthorAge
* Move type checking macros to own module.Hugo Hörnquist2022-07-09
|
* Change list-of and pair-of validator to separate macros.Hugo Hörnquist2022-07-08
| | | | | The functionallity is still the same, but this demonstrates that the system is easily extensible.
* Add pair-of to object system.Hugo Hörnquist2022-07-07
|
* Extend object type system to allow list-of.Hugo Hörnquist2022-07-07
|
* Change date/time interface.Hugo Hörnquist2022-07-07
|
* Add lenses.Hugo Hörnquist2022-07-07
|
* Add new object system.Hugo Hörnquist2022-07-07
| | | | fixup object tests.
* Import missing car+cdr.Hugo Hörnquist2022-07-07
|
* Cleanup (vcomponent datetime).Hugo Hörnquist2022-07-07
|
* Note that with-working-directory isn't thread-safe.Hugo Hörnquist2022-07-07
|
* Cleanup in graph.Hugo Hörnquist2022-07-07
|
* 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 base64 errors.Hugo Hörnquist2022-06-23
|
* Minor cleanup of entry-points/server.Hugo Hörnquist2022-06-23
|
* Clean up btn.Hugo Hörnquist2022-06-23
|
* Add TODO about query parameters.Hugo Hörnquist2022-06-23
|
* Remove ->str and ->quoted-string.Hugo Hörnquist2022-06-23
| | | | | | ->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.
* Limit imports in (srfi srfi-41 util).Hugo Hörnquist2022-06-23
|
* Normalize keyword syntax.Hugo Hörnquist2022-06-23
|
* Remove procedure tabset.Hugo Hörnquist2022-06-23
| | | | | | Tabset gave me a CSS-powered set of tabs. However, tabs are interactive, and I have moved most interaction to JavaScript. Making this procedure obsolete.
* Minor cleanup.Hugo Hörnquist2022-06-23
|
* Wrote (and fixed) tests for filename-extension.Hugo Hörnquist2022-06-23
|
* Centralize (almost) all exports to :export in define-module.Hugo Hörnquist2022-06-23
|
* Remove all inline use-modules.Hugo Hörnquist2022-06-23
|
* Clean up (calp util config).Hugo Hörnquist2022-06-23
| | | | | Introduced define-once-public. While only used once, removes a weird export which was previously easily missed.
* Minor zic format improvements.Hugo Hörnquist2022-06-23
|
* Minor cleanup in recurrence generate.Hugo Hörnquist2022-06-23
|
* Rewrote extenders or limiter generations.Hugo Hörnquist2022-06-23
| | | | | The old macro was fancy, but rather unweildly. The new version looks really similar when looking, but without as much magic.
* Remove define-macro in (vulgar termios).Hugo Hörnquist2022-06-22
|
* Replace define-macro with define-syntax in (hnh util).Hugo Hörnquist2022-06-22
|
* Rewrote define-define-peg-pattern.Hugo Hörnquist2022-06-22
| | | | | | | Rewrote it to use define-syntax instead of define-macro. This should resove the weirdness around environment for eval (now compile). Also rename it to define-peg-pattern*.
* Resolve TODO about calendar styles.Hugo Hörnquist2022-06-21
|
* Minor cleanup in fmt-single-event.Hugo Hörnquist2022-06-21
|
* Remove obsolete TODO.Hugo Hörnquist2022-06-21
|
* Move TODO to issue #56.Hugo Hörnquist2022-06-21
|
* Fix comments being constantly added to po files.Hugo Hörnquist2022-06-16
| | | | | | | | xgettext:s comment fetcher doesn't handle the same source string at multiple places, with different comments. Meaning that at those places all comments were copied over each time. This commit remove the problematic comments from the source code.
* Merge html-validator.Hugo Hörnquist2022-06-13
|\ | | | | | | | | | | | | | | Adds an HTML validator which checks the soundness of our generated document, both before and after javascript is ran (thanks to selenium). This merge also fixes the initial problems, meaning that the HTML should validate as of this commit.
| * Escape some unicode in initial xhtml output.Hugo Hörnquist2022-06-13
| | | | | | | | | | While not necessary, since both HTML and XHTML allows for direct UTF-8, the validator fails on it.
| * Remove with-label.Hugo Hörnquist2022-06-12
| |
| * Stop using with-label.Hugo Hörnquist2022-06-12
| |
* | Cleanup of zic.Hugo Hörnquist2022-06-13
| |
* | 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.
* | Add zic tests.Hugo Hörnquist2022-06-13
| | | | | | | | Also update zic to pass most of these tests.
* | Fix timespec.Hugo Hörnquist2022-06-12
| |
* | Add explaining comment to get-terminal-size.Hugo Hörnquist2022-06-12
|/