blob: a19dfe4ef239723c48845c4703900c82a6c127e3 [file] [log] [blame]
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001 TODO for the libxml2 Python wrappers
2
Daniel Veillard9589d452002-02-02 10:28:17 +00003 $Id$
Daniel Veillard253aa2c2002-02-02 09:17:16 +00004
5Things to do:
6-------------
7
Daniel Veillard253aa2c2002-02-02 09:17:16 +00008- SAX interfaces
Daniel Veillard33caa0b2002-02-04 14:07:26 +00009 - push is done but no generic interface
10 - elementDecl need some work
11 - need more testing and check full callbacks for xmllib/sgmlop replacement
Daniel Veillard253aa2c2002-02-02 09:17:16 +000012- enums -> libxml.py
Daniel Veillard253aa2c2002-02-02 09:17:16 +000013- access to XPath variables
Daniel Veillard253aa2c2002-02-02 09:17:16 +000014- xmlBuffer exposure
15- xpathContext, being able to set/get info and clean it up
16- add regression tests
Daniel Veillard253aa2c2002-02-02 09:17:16 +000017 - SAX flow
Daniel Veillard33caa0b2002-02-04 14:07:26 +000018- DTD element and attributes content accesses
19 - attribute handled in SAX
20 - element needed in both
Daniel Veillard253aa2c2002-02-02 09:17:16 +000021
22
23Done:
24-----
25- class hierarchy:
26 + make specific node type inherit from xmlNode
Daniel Veillard9589d452002-02-02 10:28:17 +000027 done, had to sort the classes in the output
28 + get the generator to output a classes.txt description
29 done libxml2class.txt
Daniel Veillard253aa2c2002-02-02 09:17:16 +000030- add regression tests
31 - tests/Makefile.am: export the Python class path
32 - xpath queries
33 - xpath extension
Daniel Veillard4e1b26c2002-02-03 20:13:06 +000034 - check memory
Daniel Veillard33caa0b2002-02-04 14:07:26 +000035 - build tree
36 - saving
Daniel Veillard9589d452002-02-02 10:28:17 +000037- extensions based on a python.xml description of the new specific
38 interfaces
39 file libxml2-python-api.xml , first entry is xmlRegisterXPathFunction
40- spec file: automatically generate for pythonX.Y if found
41 Done, a bit ugly by running new makes in %install for each level
42 found.
Daniel Veillard5d819032002-02-02 21:49:17 +000043- error redirections and preformat
Daniel Veillardcfb05462002-02-02 23:18:22 +000044- handling of node.content
Daniel Veillard26f1dcc2002-02-03 16:53:19 +000045- access to xmlParserCtxt and push mode
46 - needed for SAX too
Daniel Veillard4e1b26c2002-02-03 20:13:06 +000047 - entry points
48 - wrappers
49 - decent interface for setting/getting behaviour
50- memory debug interfaces
Daniel Veillard33caa0b2002-02-04 14:07:26 +000051- SAX interfaces
52 - basic stuff with push is available
53 - basic xmllib replacement
Daniel Veillard253aa2c2002-02-02 09:17:16 +000054
55Daniel Veillard