aboutsummaryrefslogtreecommitdiff
path: root/module/sxml/namespace.scm (unfollow)
Commit message (Collapse)Author
2023-10-16Add number of clearifying comments + minor cleanup.Hugo Hörnquist
2022-06-23Centralize (almost) all exports to :export in define-module.Hugo Hörnquist
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2021-08-24Allow partial change and removal of XML Namespaces.Hugo Hörnquist
Changing the error to a returnu allows a partial namespace change map, which can sometimes be usefull (and should hopefully not lead to any issues here). Changing assoc-ref to assoc allows the removal of namespaces, since assoc-ref can't differentiate between a match with #f in its cdr, and no match. (assoc-ref '((a . #f)) 'a) ⇒ #f (assoc-ref '((a . #f)) 'b) ⇒ #f
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-07-12SXML Namespace mappings.Hugo Hörnquist
2020-07-12Add initial (sxml namespace).Hugo Hörnquist