aboutsummaryrefslogtreecommitdiff
path: root/module/sxml/namespace.scm (follow)
Commit message (Collapse)AuthorAge
* Move stuff from calp/util to hnh/util.Hugo Hörnquist2022-01-31
| | | | | This is the first (major) step in splitting the generally useful items into its own library.
* Allow partial change and removal of XML Namespaces.Hugo Hörnquist2021-08-24
| | | | | | | | | | | | | 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
* Move util modules into calp module..Hugo Hörnquist2020-08-24
|
* SXML Namespace mappings.Hugo Hörnquist2020-07-12
|
* Add initial (sxml namespace).Hugo Hörnquist2020-07-12