aboutsummaryrefslogtreecommitdiff
path: root/module (follow)
Commit message (Collapse)AuthorAge
* Fix some incorrect strings in documentation.Hugo Hörnquist2023-11-06
|
* Fix spelling of 'definitions'.Hugo Hörnquist2023-10-24
|
* Merge (web uri-query) into (web query).Hugo Hörnquist2023-10-24
|
* Add tests for (calp translation).Hugo Hörnquist2023-10-24
|
* Propstat stash.Hugo Hörnquist2023-10-23
|
* Test work.Hugo Hörnquist2023-10-22
|
* Add tests for sxml namespaced + fix 'root-element'.Hugo Hörnquist2023-10-21
| | | | | * Removes on-root-element since it was never used * Handle the case of root-elemnt with no *TOP*
* Change namespaced sxml to use new object system.Hugo Hörnquist2023-10-18
|
* Remove (hnh util graph) export of rebuild-graph.Hugo Hörnquist2023-10-18
|
* Finish tests for (vcomponent duration).Hugo Hörnquist2023-10-18
|
* Add "unreachable".Hugo Hörnquist2023-10-18
|
* Move (vcomponent duration) to new object system.Hugo Hörnquist2023-10-18
|
* Move vcomponent geo to new object system.Hugo Hörnquist2023-10-18
|
* Change add-enumeration-punctuation to always return lists.Hugo Hörnquist2023-10-18
|
* Add commentary to (web http dav)Hugo Hörnquist2023-10-18
|
* Move (vcomponent create) to new object system.Hugo Hörnquist2023-10-18
|
* Remove srfi-9 from defalut ignore of use2dot-all.Hugo Hörnquist2023-10-18
| | | | Since I'm moving away from srfi-9 mentioning it's existance is now good.
* Remove commented srfi-9 import.Hugo Hörnquist2023-10-18
|
* Change zic to use new object system.Hugo Hörnquist2023-10-18
|
* Introduce keyword: to define-type.Hugo Hörnquist2023-10-18
| | | | | | 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.
* Move timespec and recur-rule to new object system.Hugo Hörnquist2023-10-16
|
* Add `not` case to type validators.Hugo Hörnquist2023-10-16
|
* Move `false?` to type module.Hugo Hörnquist2023-10-16
|
* Change printer for vcomponent.Hugo Hörnquist2023-10-16
| | | | | | | | | | | | | 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.
* Fixen in vcomponent formats.Hugo Hörnquist2023-10-16
| | | | | Previously almost everything was broken. This takes it back to a somewhat working state.
* Remove some old debug prints.Hugo Hörnquist2023-10-16
|
* Update some data formats to properly use table type.Hugo Hörnquist2023-10-16
|
* Add fallback arg for table-get.Hugo Hörnquist2023-10-16
|
* Better test diffs for strings.Hugo Hörnquist2023-10-16
| | | | | | | | | | 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.
* Add number of clearifying comments + minor cleanup.Hugo Hörnquist2023-10-16
|
* Better structuring between webdav modules.Hugo Hörnquist2023-10-10
|
* Fix `prop` for multi-valued items.Hugo Hörnquist2023-10-09
|
* Handle crashes in tests!Hugo Hörnquist2023-10-09
| | | | | | | | | 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...
* Document atomic types.Hugo Hörnquist2023-10-08
|
* Further rewrite of testrunner.Hugo Hörnquist2023-10-08
| | | | Move many of the atomic procedures into proper libraries.
* Cleanup in lens.Hugo Hörnquist2023-10-03
|
* Add TODO comments.Hugo Hörnquist2023-10-02
|
* Rewrite test running system.Hugo Hörnquist2023-10-02
|
* Made displayln into a library export.Hugo Hörnquist2023-10-02
|
* Rewrote `with-replaced-properties`.Hugo Hörnquist2023-09-13
| | | | | | The old version built on the old stateful components, while the new version is stateless. This also clearly shows the benefits of stateless components.
* Merge branch 'next' into datarewrite-structuresHugo Hörnquist2023-09-13
|\
| * Even more documentation.nextHugo Hörnquist2023-09-12
| |
| * Add a bunch of documentation.Hugo Hörnquist2023-09-12
| |
| * Fix bug causing for's continue to not work.Hugo Hörnquist2023-09-11
| |
| * Document text modules.Hugo Hörnquist2023-09-11
| |
| * Introduce stream-split-by.Hugo Hörnquist2023-09-11
| | | | | | | | | | | | This procedure isn't currently used, but as noted is really useful for grouping a character stream into a word stream, which is a later commit will use for it for justifying posibly infinite streams of text.
| * Clean up and include exception utility documentation.Hugo Hörnquist2023-09-11
| |
| * Allow shorter byday when constructing recurrence rules.Hugo Hörnquist2023-09-11
| |
| * Extend `for'-macro to allow improper list elements.Hugo Hörnquist2023-09-11
| |
| * Change `kvlist->assq` and `group-by` to return pairs.Hugo Hörnquist2023-09-11
| | | | | | | | | | Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.