Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 1 | TODO for the libxml2 Python wrappers |
| 2 | |
Daniel Veillard | 9589d45 | 2002-02-02 10:28:17 +0000 | [diff] [blame] | 3 | $Id$ |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 4 | |
| 5 | Things to do: |
| 6 | ------------- |
| 7 | |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 8 | - SAX interfaces |
Daniel Veillard | 33caa0b | 2002-02-04 14:07:26 +0000 | [diff] [blame] | 9 | - 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 Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 12 | - enums -> libxml.py |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 13 | - access to XPath variables |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 14 | - xmlBuffer exposure |
| 15 | - xpathContext, being able to set/get info and clean it up |
Daniel Veillard | 70cab35 | 2002-02-06 16:06:58 +0000 | [diff] [blame] | 16 | - more work needed on context handling for function lookup |
| 17 | and use of an hash table. |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 18 | - add regression tests |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 19 | - SAX flow |
Daniel Veillard | 33caa0b | 2002-02-04 14:07:26 +0000 | [diff] [blame] | 20 | - DTD element and attributes content accesses |
| 21 | - attribute handled in SAX |
| 22 | - element needed in both |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 23 | |
| 24 | |
| 25 | Done: |
| 26 | ----- |
| 27 | - class hierarchy: |
| 28 | + make specific node type inherit from xmlNode |
Daniel Veillard | 9589d45 | 2002-02-02 10:28:17 +0000 | [diff] [blame] | 29 | done, had to sort the classes in the output |
| 30 | + get the generator to output a classes.txt description |
| 31 | done libxml2class.txt |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 32 | - add regression tests |
| 33 | - tests/Makefile.am: export the Python class path |
| 34 | - xpath queries |
| 35 | - xpath extension |
Daniel Veillard | 4e1b26c | 2002-02-03 20:13:06 +0000 | [diff] [blame] | 36 | - check memory |
Daniel Veillard | 33caa0b | 2002-02-04 14:07:26 +0000 | [diff] [blame] | 37 | - build tree |
| 38 | - saving |
Daniel Veillard | 9589d45 | 2002-02-02 10:28:17 +0000 | [diff] [blame] | 39 | - extensions based on a python.xml description of the new specific |
| 40 | interfaces |
| 41 | file libxml2-python-api.xml , first entry is xmlRegisterXPathFunction |
| 42 | - spec file: automatically generate for pythonX.Y if found |
| 43 | Done, a bit ugly by running new makes in %install for each level |
| 44 | found. |
Daniel Veillard | 5d81903 | 2002-02-02 21:49:17 +0000 | [diff] [blame] | 45 | - error redirections and preformat |
Daniel Veillard | cfb0546 | 2002-02-02 23:18:22 +0000 | [diff] [blame] | 46 | - handling of node.content |
Daniel Veillard | 26f1dcc | 2002-02-03 16:53:19 +0000 | [diff] [blame] | 47 | - access to xmlParserCtxt and push mode |
| 48 | - needed for SAX too |
Daniel Veillard | 4e1b26c | 2002-02-03 20:13:06 +0000 | [diff] [blame] | 49 | - entry points |
| 50 | - wrappers |
| 51 | - decent interface for setting/getting behaviour |
| 52 | - memory debug interfaces |
Daniel Veillard | 33caa0b | 2002-02-04 14:07:26 +0000 | [diff] [blame] | 53 | - SAX interfaces |
| 54 | - basic stuff with push is available |
| 55 | - basic xmllib replacement |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 56 | |
| 57 | Daniel Veillard |