/tutorial/xml/README.txt
Plain Text | 18 lines | 11 code | 7 blank | 0 comment | 0 complexity | 0f3cccc056ff3b15911db01ee8429eb1 MD5 | raw file
1There are two ways of using the XML library: 2 3== SAX == 4 5(Simple API for XML) 6 7It is event-oriented: implement your own XML_CALLBACKS and all its 8features. 9 10== DOM == 11 12(Document Object Model) 13 14It is data-oriented: just use XML_TREE that provides a generic 15(non-validated) tree containing your XML data. 16 17You can also subclass XML_TREE if you want some validation (just 18redefine the `new_node' feature).