aboutsummaryrefslogtreecommitdiff
path: root/module/sxml (unfollow)
Commit message (Collapse)Author
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-28Remove unused (sxml html).Hugo Hörnquist
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-08-14Fix /static/ links in generated html + extra.Hugo Hörnquist
2020-08-14Add module for sxml transformations.Hugo Hörnquist
2020-07-12SXML Namespace mappings.Hugo Hörnquist
2020-07-12Add initial (sxml namespace).Hugo Hörnquist
2020-07-09Patch sxml->html, adding:Hugo Hörnquist
- Support for multiple body forms - Processing instructions (*PI*) (<? ?>) - *TOP* as noop grouper - mapping `#f' to nothing (instead of self)
2020-07-08Import sxml->html from dthompson.Hugo Hörnquist