/tutorial/xml/README.txt
http://github.com/tybor/Liberty · Plain Text · 18 lines · 11 code · 7 blank · 0 comment · 0 complexity · 0f3cccc056ff3b15911db01ee8429eb1 MD5 · raw file
- There are two ways of using the XML library:
- == SAX ==
- (Simple API for XML)
- It is event-oriented: implement your own XML_CALLBACKS and all its
- features.
- == DOM ==
- (Document Object Model)
- It is data-oriented: just use XML_TREE that provides a generic
- (non-validated) tree containing your XML data.
- You can also subclass XML_TREE if you want some validation (just
- redefine the `new_node' feature).