Changeset 3140:8c769fa6982b in livinglogic.python.xist
- Timestamp:
- 01/07/08 18:30:11 (12 years ago)
- Author:
- Walter Doerwald <walter@…>
- Branch:
- default
- Message:
-
Add news info missing from NEWS.rst. Drop stuff that was duplicated.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
r3139
|
r3140
|
|
5 | 5 | Changes in 3.0 (released 01/07/2008) |
6 | 6 | ------------------------------------ |
| 7 | |
| 8 | * Namespaces have been greatly simplified. There are no namespace modules any |
| 9 | longer. An element class can be assigned a namespace by setting the ``xmlns`` |
| 10 | class attribute to the namespace name. Global attributes can be assigned a |
| 11 | namespace by setting the ``xmlns`` attribute on the attribute class itself |
| 12 | (*not* on the :class:`Attrs` class). The classes :class:`Prefixes` and |
| 13 | :class:`NSPool` are gone too. Instead a new class :class:`Pool` is used to |
| 14 | specify which classes should be used for parsing. |
| 15 | |
| 16 | * Dependency on PyXML_ has finally been dropped. XIST now uses its own XML |
| 17 | parsing API. Two parsers are available: One based on expat_ and one based on |
| 18 | a custom version of sgmlop_. |
| 19 | |
| 20 | .. _PyXML: http://pyxml.sf.net/ |
| 21 | .. _expat: http://expat.sourceforge.net/ |
| 22 | .. _sgmlop: http://effbot.org/zone/sgmlop-index.htm |
7 | 23 | |
8 | 24 | * Tree traversal has been rewritten again. XFind expressions involving multiple |
… |
… |
|
66 | 82 | |
67 | 83 | .. _XPython: http://codespeak.net/svn/user/hpk/talks/xpython-talk.txt |
68 | | |
69 | | * Parsing has been rewritten, so PyXML is no longer required. |
70 | 84 | |
71 | 85 | * A subset of ReST__ is supported now for docstrings when using the |
-
r3139
|
r3140
|
|
87 | 87 | <a href="http://codespeak.net/svn/user/hpk/talks/xpython-talk.txt">XPython</a>.</p> |
88 | 88 | </li> |
89 | | |
90 | | <li>Parsing has been rewritten, so PyXML is no longer required.</li> |
91 | 89 | |
92 | 90 | <li>A subset of <a href="http://docutils.sourceforge.net/rst.html">ReST</a> |