XML canonocialisation for xmerl
Functions for performing XML canonicalisation (C14n), as specified at http://www.w3.org/TR/xml-c14n .
These routines work on xmerl data structures (see the xmerl user guide for details).xml_thing() = #xmlDocument{} | #xmlElement{} | #xmlAttribute{} | #xmlPI{} | #xmlText{} | #xmlComment{}
c14n/1 | Puts an XML document or element into canonical form, as a string. |
c14n/2 | Puts an XML document or element into canonical form, as a string. |
c14n/3 | Puts an XML document or element into canonical form, as a string. |
c14n(XmlThing::xml_thing()) -> string()
Puts an XML document or element into canonical form, as a string.
c14n(XmlThing::xml_thing(), Comments::boolean()) -> string()
Puts an XML document or element into canonical form, as a string.
If the Comments argument is true, preserves comments in the output.c14n(XmlThing::xml_thing(), Comments::boolean(), InclusiveNs::[string()]) -> string()
Puts an XML document or element into canonical form, as a string.
If the Comments argument is true, preserves comments in the output. Any namespace prefixes listed in InclusiveNs will be left as they are and not modified during canonicalization.Generated by EDoc