aboutsummaryrefslogtreecommitdiff
path: root/module (unfollow)
Commit message (Collapse)Author
2023-10-03Cleanup in lens.Hugo Hörnquist
2023-10-02Add TODO comments.Hugo Hörnquist
2023-10-02Rewrite test running system.Hugo Hörnquist
2023-10-02Made displayln into a library export.Hugo Hörnquist
2023-09-13Rewrote `with-replaced-properties`.Hugo Hörnquist
The old version built on the old stateful components, while the new version is stateless. This also clearly shows the benefits of stateless components.
2023-09-12Even more documentation.nextHugo Hörnquist
2023-09-12Add a bunch of documentation.Hugo Hörnquist
2023-09-11Fix bug causing for's continue to not work.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-11Clean up and include exception utility documentation.Hugo Hörnquist
2023-09-11Allow shorter byday when constructing recurrence rules.Hugo Hörnquist
2023-09-11Extend `for'-macro to allow improper list elements.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-11Fix seeding of UUIDs.Hugo Hörnquist
2023-09-11Add comment about bad stream error.Hugo Hörnquist
2023-09-11Simplify glob procedure bindings.Hugo Hörnquist
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-11Allow find-undocumented to skip files.Hugo Hörnquist
2023-09-11Document how find-undocumented's pattern builder work.Hugo Hörnquist
2023-09-11Expose eager-stream-cons.Hugo Hörnquist
2023-09-11Add `break` and `continue` support in `for`.Hugo Hörnquist
2023-09-11Enable let-env to unset variables.Hugo Hörnquist
2023-09-11Fixes to xdg basedir.Hugo Hörnquist
Update to v0.8 (XDG_STATE_HOME). Allowed empty environment variables alongside unset variables.
2023-09-11Remove xdg sysconfdir.Hugo Hörnquist
It was based on a missunderstanding of the spec. `sysconfdir` is mentioned, but only as an element of XDG_CONFIG_DIR.
2023-09-07Add new script to find undocumented symbols.Hugo Hörnquist
2023-09-07Remove accidental extra 'vcomponent control' module.Hugo Hörnquist
2023-09-07Explicitly import copy-tree (needed since guile 3).Hugo Hörnquist
2023-09-07Create a true all-files-under-directory procedure.Hugo Hörnquist
2023-09-05Major work on, something.Hugo Hörnquist
2023-04-24Add set on top of tree-table.Hugo Hörnquist
2023-04-24Add tree->list, -map, and -fold.Hugo Hörnquist
2023-04-24Add basic table.Hugo Hörnquist
2023-04-21Add href-relative.Hugo Hörnquist
2023-04-21Split WebDAV calendar resources into 2.Hugo Hörnquist
Differentiate between calendar collection and calendar objects already at the DAV level. This is sensible since they support completely different properties, and only collections support REPORTS (as for as I can tell).
2023-04-21Add xmllint shell-out for normalizing xml trees.Hugo Hörnquist
Used by the serialization format tests which work on xml. Ensures that they don't fail due to whitespace mismatchs. I however still need to ensure that all components are arranged in the correct order, and that namespace prefixes match. This could be improved.
2023-04-21Change xcal to work on namespaced sxml instead.Hugo Hörnquist
2023-04-19Utilities for namespaced sxml.Hugo Hörnquist
2023-04-18Allow namespaced sxml to add namespaces.Hugo Hörnquist
2023-04-18Move code for finding an available socket.Hugo Hörnquist
2023-04-18Move test runner to library.Hugo Hörnquist
This will both allow us multiple test entry points, since some integration tests doesn't fit to well in our current unit test setup. It will hopefully also allow me to reuse the code in other projects.
2023-04-14Allow compilation without sqlite3 module.Hugo Hörnquist
2023-04-14WebDAV Fail properly on bad body.Hugo Hörnquist
2023-04-14Fix propfind.Hugo Hörnquist
* Allows propfind elements to appear in any order * properly ignored unknown elements * works directly with namespaced sxml
2023-04-13Fix webdav move.Hugo Hörnquist
2023-04-12Fix copy for file resources.Hugo Hörnquist
2023-04-12UNFINISHED webdav server.Hugo Hörnquist
2023-04-12Add with-locale1.Hugo Hörnquist
2023-04-12Add registry of HTTP status codes.Hugo Hörnquist
Guile already includes such a registry, but it's incomplete (it lacks WebDAV extension, for one). This also adds a dedicated procedure to generate HTTP status lines, which besides the regular HTTP header are also needed for WebDAV's multistatus responses.
2023-04-12UNFINISHED work on data stores and formats.Hugo Hörnquist