aboutsummaryrefslogtreecommitdiff
path: root/module (unfollow)
Commit message (Collapse)Author
2023-11-06Add tests for module introspection.Hugo Hörnquist
2023-11-06Remove (srfi srfi-64 util).Hugo Hörnquist
It only declared `test-match-group`, which was sort of useful when ignoring som tests. It haven't been used in a while, and is therefore removed.
2023-11-06Add some NOCOV declarations to (hnh util).Hugo Hörnquist
2023-11-06Remove and=>>.Hugo Hörnquist
It was a really nice procedure, but was largely made obsolete with the introduction of the `do` notation.
2023-11-06Minor documentation improvements.Hugo Hörnquist
2023-11-06Move 'validate-event' into only module using it.Hugo Hörnquist
2023-11-06Add tests for '(hnh test util)'.Hugo Hörnquist
2023-11-06Add basic tests for coverage manipulation.Hugo Hörnquist
2023-11-06Remove unused module (hnh util set).Hugo Hörnquist
2023-11-06Move coverage supplement for datetime into source file.Hugo Hörnquist
2023-11-06Replace regex with simpler string check.Hugo Hörnquist
2023-11-06Add proper text calendar.Hugo Hörnquist
Previously the program `cal` was used, this was slow and unreliable.
2023-11-06Remove unused 'color-if'.Hugo Hörnquist
2023-11-06Fix some incorrect strings in documentation.Hugo Hörnquist
2023-10-24Fix spelling of 'definitions'.Hugo Hörnquist
2023-10-24Merge (web uri-query) into (web query).Hugo Hörnquist
2023-10-24Add tests for (calp translation).Hugo Hörnquist
2023-10-23Propstat stash.Hugo Hörnquist
2023-10-22Test work.Hugo Hörnquist
2023-10-21Add tests for sxml namespaced + fix 'root-element'.Hugo Hörnquist
* Removes on-root-element since it was never used * Handle the case of root-elemnt with no *TOP*
2023-10-18Change namespaced sxml to use new object system.Hugo Hörnquist
2023-10-18Remove (hnh util graph) export of rebuild-graph.Hugo Hörnquist
2023-10-18Finish tests for (vcomponent duration).Hugo Hörnquist
2023-10-18Add "unreachable".Hugo Hörnquist
2023-10-18Move (vcomponent duration) to new object system.Hugo Hörnquist
2023-10-18Move vcomponent geo to new object system.Hugo Hörnquist
2023-10-18Change add-enumeration-punctuation to always return lists.Hugo Hörnquist
2023-10-18Add commentary to (web http dav)Hugo Hörnquist
2023-10-18Move (vcomponent create) to new object system.Hugo Hörnquist
2023-10-18Remove srfi-9 from defalut ignore of use2dot-all.Hugo Hörnquist
Since I'm moving away from srfi-9 mentioning it's existance is now good.
2023-10-18Remove commented srfi-9 import.Hugo Hörnquist
2023-10-18Change zic to use new object system.Hugo Hörnquist
2023-10-18Introduce keyword: to define-type.Hugo Hörnquist
Type fields like to be named after their containing type. But when creating new instances having to type the full name each time gets cumbersome. This allows local keywords for cleaner code.
2023-10-16Move timespec and recur-rule to new object system.Hugo Hörnquist
2023-10-16Add `not` case to type validators.Hugo Hörnquist
2023-10-16Move `false?` to type module.Hugo Hörnquist
2023-10-16Change printer for vcomponent.Hugo Hörnquist
This new printer attempts to output something actually matching a structure which the object can be recreated from. It's still not read-compatible (since that can only be done through reader macros), but a read + eval would work. It's fed through the pretty printer, both so the output might actually be readable, but also so that line diffs work (and so that acidental output of the entire database doesn't crash emacs). This still needs to be extended to the vlines to be really useful.
2023-10-16Fixen in vcomponent formats.Hugo Hörnquist
Previously almost everything was broken. This takes it back to a somewhat working state.
2023-10-16Remove some old debug prints.Hugo Hörnquist
2023-10-16Update some data formats to properly use table type.Hugo Hörnquist
2023-10-16Add fallback arg for table-get.Hugo Hörnquist
2023-10-16Better test diffs for strings.Hugo Hörnquist
Previously everything was passed through pretty print, meaning that strings would be squashed to one line. Instead handle strings separately, and do a line diff on them, but still pretty print actual scheme structures. Also change display to write to be able to differentiate different forms which prints the same.
2023-10-16Add number of clearifying comments + minor cleanup.Hugo Hörnquist
2023-10-10Better structuring between webdav modules.Hugo Hörnquist
2023-10-09Fix `prop` for multi-valued items.Hugo Hörnquist
2023-10-09Handle crashes in tests!Hugo Hörnquist
Unhandled exceptions thrown during tests are now caught, and properly repported. This also allows the tests to run to completion, and print their final summary (which I previously believed was broken when running in multiple threads). Also add --help flag to testrunner...
2023-10-08Document atomic types.Hugo Hörnquist
2023-10-08Further rewrite of testrunner.Hugo Hörnquist
Move many of the atomic procedures into proper libraries.
2023-10-03Cleanup in lens.Hugo Hörnquist
2023-10-02Add TODO comments.Hugo Hörnquist