aboutsummaryrefslogtreecommitdiff
path: root/doc (unfollow)
Commit message (Collapse)Author
2023-12-09Complete rewrite of the lens system.Hugo Hörnquist
The old "lens" system was more of nested accessors. This rewrites them to be much better, at the cost of some extra up-front complexity. Beside the change in lenses, and all required adjustments, also adds lens creation to the define-type macro.
2023-12-01Repair format tests.Hugo Hörnquist
The test have been really broken for a while, since the return type of `parameters` changed somewhere along the line. The serializers are now updated to the new API, and the tests updated to compare components correctly!
2023-11-16Document vcomponent grouping utilities.Hugo Hörnquist
2023-11-16Document that vcomponent children are unordered.Hugo Hörnquist
2023-11-06Fix API for each-string.Hugo Hörnquist
2023-11-06Merge (hnh module-introspection static) into parent module.Hugo Hörnquist
It only contained a single binding, and the base module was already utilities.
2023-11-06HAdd sections to introspection documentation.Hugo Hörnquist
2023-11-06Update module-uses* documentation.Hugo Hörnquist
2023-11-06Document assq-limit.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-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-24Split webdav documentation into multiple files.Hugo Hörnquist
2023-10-23Fixup in documentation.Hugo Hörnquist
2023-10-18Fix spelling.Hugo Hörnquist
2023-10-18Remove (hnh util graph) export of rebuild-graph.Hugo Hörnquist
2023-10-18Add "unreachable".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-18Clarify keywordness for object field parameters.Hugo Hörnquist
2023-10-17Document sxml namespaced utils.Hugo Hörnquist
2023-10-16Move timespec and recur-rule to new object system.Hugo Hörnquist
2023-10-16Move `false?` to type module.Hugo Hörnquist
2023-10-16Document test utilities.Hugo Hörnquist
2023-10-16s/defaulct/default/gHugo Hörnquist
2023-10-16Document call-with-tmpfile.Hugo Hörnquist
2023-10-16Add documentation and tests for table.Hugo Hörnquist
2023-10-10Remove obsolete frontend.org.Hugo Hörnquist
2023-10-10Include calp documentation.Hugo Hörnquist
A bad gitignore ignored much more than it should have. Now updated to only ignore top level binary.
2023-10-08Document atomic types.Hugo Hörnquist
2023-10-03Improve lens documentation.Hugo Hörnquist
2023-10-03Document coverage utilities.Hugo Hörnquist
2023-10-02Documentation work.Hugo Hörnquist
2023-10-02Made displayln into a library export.Hugo Hörnquist
2023-09-13Move around info nodes.Hugo Hörnquist
2023-09-13Repair texinfo files after merge.Hugo Hörnquist
2023-09-12Even more documentation.nextHugo Hörnquist
2023-09-12Further doc work.Hugo Hörnquist
2023-09-12Rework file tree structure for info files.Hugo Hörnquist
2023-09-12Change overarching structure of info document.Hugo Hörnquist
2023-09-12Add a bunch of documentation.Hugo Hörnquist
2023-09-11Add basic documentation of entry points.Hugo Hörnquist
2023-09-11Document text modules.Hugo Hörnquist
2023-09-11Introduce stream-split-by.Hugo Hörnquist
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.
2023-09-11Add documentation for translation procedures.Hugo Hörnquist
2023-09-11Clean up and include exception utility documentation.Hugo Hörnquist
2023-09-11Change `kvlist->assq` and `group-by` to return pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-09-11Require component for path append.Hugo Hörnquist
Changed the signature of `path-append` to require at least one argument. The alternative would have been that no components expands into '.'.
2023-09-11Fix spelling of stream-remove in documentation.Hugo Hörnquist