aboutsummaryrefslogtreecommitdiff
path: root/module/sxml (follow)
Commit message (Collapse)AuthorAge
* Remove ->str and ->quoted-string.Hugo Hörnquist2022-06-23
| | | | | | ->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.
* Normalize keyword syntax.Hugo Hörnquist2022-06-23
|
* Centralize (almost) all exports to :export in define-module.Hugo Hörnquist2022-06-23
|
* Extend sxml->html to copy procedures output verbatim.Hugo Hörnquist2022-06-12
| | | | | | sxml->xml already allows arbitrary strings to be included through procedures current output port. This adds the same feature to sxml->html for feature parity.
* Re-add (sxml html).Hugo Hörnquist2022-06-12
| | | | | | See future commits for rationale. This reverts commit 54fc8cf92e9212cc88c824f7b49549160d860657.
* 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
* Remove unused (sxml html).Hugo Hörnquist2020-08-28
|
* Move util modules into calp module..Hugo Hörnquist2020-08-24
|
* Fix /static/ links in generated html + extra.Hugo Hörnquist2020-08-14
|
* Add module for sxml transformations.Hugo Hörnquist2020-08-14
|
* SXML Namespace mappings.Hugo Hörnquist2020-07-12
|
* Add initial (sxml namespace).Hugo Hörnquist2020-07-12
|
* Patch sxml->html, adding:Hugo Hörnquist2020-07-09
| | | | | | | - Support for multiple body forms - Processing instructions (*PI*) (<? ?>) - *TOP* as noop grouper - mapping `#f' to nothing (instead of self)
* Import sxml->html from dthompson.Hugo Hörnquist2020-07-08