Update of /cvsroot/pyxml/xml
In directory usw-pr-cvs1:/tmp/cvs-serv29931
Modified Files:
ANNOUNCE README setup.py
Log Message:
Update for 0.8.
Index: ANNOUNCE
===================================================================
RCS file: /cvsroot/pyxml/xml/ANNOUNCE,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** ANNOUNCE 1 May 2002 10:04:06 -0000 1.21
--- ANNOUNCE 24 Jul 2002 21:39:33 -0000 1.22
***************
*** 4,53 ****
==================
! Version 0.7.1 of the Python/XML distribution is now available. It
should be considered a beta release, and can be downloaded from
the following URLs:
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1.tar.gz
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1.win32-py1.5.exe
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1.win32-py2.1.exe
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1.win32-py2.2.exe
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1-1.5.2.i386.rpm
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.7.1-2.2.i386.rpm
! Changes in this version, compared to 0.7:
! * sgmlop offers the XMLUnicodeParser (contributed by Walter Dörwald).
! * setup.py now supports the option --with(out)-pyexpat.
! * On Mac OS X, -flat_namespace is used to build extensions.
! * XBEL support for parsing Opera, MSIE, and Netscape bookmarks
! was improved.
! * c14n is now documented in the reference manual.
! * Support for older expat versions is dropped from pyexpat.
! * pyexpat can intern strings found during parsing in a dictionary.
! * xml.ns now provides XLINK and RNG namespaces.
! * 4DOM supports now arbitrary Unicode element and attribute names.
! * pulldom supports the iterator protocol.
! * Spanish xmlproc messages have been added.
! * xml.sax.expatreader has a feature to intern strings, and a
! property to access the interning dictionary.
! * Construction of Unicode regular expressions in
! xml.utils.characters happens lazily through accessor functions.
! * Various bugs have been fixed (4DOM, minidom, c14n,
! marshal.generic, xmlproc, sax.expatreader, sax.writer,
! xml.utils.iso8601)
--- 4,61 ----
==================
! Version 0.8 of the Python/XML distribution is now available. It
should be considered a beta release, and can be downloaded from
the following URLs:
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.8.tar.gz
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.8.win32-py2.1.exe
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.8.win32-py2.2.exe
! http://prdownloads.sourceforge.net/pyxml/PyXML-0.8-2.2.i386.rpm
! Changes in this version, compared to 0.7.1:
! * Python 1.5 is not supported anymore; Python 2.0 or higher
! is required.
! * Expat has been updated to 1.95.4.
! * pyexpat is now always built.
! * pyexpat now reports skipped entities.
! * pyexpat now combines subsequent character data events into
! a single callback invocation.
! * pyexpat can now report namespace prefixes.
! * Various bugs in sgmlop have been fixed.
! * Various DOM Level 3 symbolic constants have been added;
! DOMStringSizeErr can now be spelled as DomstringSizeErr again.
! * Various DOM L1, L2 and L3 features have been added to minidom:
! userdata, isSupported, getInterface, wholeText, Entity, Notation
! * minidom's .toxml now allows the caller to specify an encoding.
! * The new module xml.dom.xmlbuilder implements the load part
! of the DOM L3 Load/Store spec.
! * The new module xml.dom.expatbuilder allows to create minidom
! trees more efficiently, by using expat directly (rather than
! using SAX).
! * Bugs in c14n namespace processing have been fixed.
! * Minor bugs in xmlproc have been fixed.
!
! * xml.sax.expatreader now invokes resolveEntity properly.
!
! * The sgmlop SAX driver now invokes skippedEntity.
!
! * The xml-howto has been updated.
!
! * Bugs in the MSIE, ADR, and NS XBEL parsers have been fixed.
Index: README
===================================================================
RCS file: /cvsroot/pyxml/xml/README,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** README 23 Jul 2002 21:33:21 -0000 1.24
--- README 24 Jul 2002 21:39:33 -0000 1.25
***************
*** 38,43 ****
4DOM Fourthought, Inc. (Uche Ogbuji, Mike Olson)
4XSLT Fourthought, Inc. (Uche Ogbuji, Mike Olson)
! PyExpat Jack Jansen
! Expat 1.95.2 James Clark, Clark Cooper, Fred Drake
saxlib-1.0 Lars Marius Garshol
sgmlop-000705 Fredrik Lundh
--- 38,43 ----
4DOM Fourthought, Inc. (Uche Ogbuji, Mike Olson)
4XSLT Fourthought, Inc. (Uche Ogbuji, Mike Olson)
! PyExpat Jack Jansen, Fred Drake, Martin v. Löwis
! Expat 1.95.4 James Clark, Clark Cooper, Fred Drake
saxlib-1.0 Lars Marius Garshol
sgmlop-000705 Fredrik Lundh
Index: setup.py
===================================================================
RCS file: /cvsroot/pyxml/xml/setup.py,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** setup.py 2 Jul 2002 15:42:26 -0000 1.67
--- setup.py 24 Jul 2002 21:39:33 -0000 1.68
***************
*** 197,201 ****
setup (name = "PyXML",
! version = "0.7.1", # Needs to match xml/__init__.version_info
description = "Python/XML package",
author = "XML-SIG",
--- 197,201 ----
setup (name = "PyXML",
! version = "0.8", # Needs to match xml/__init__.version_info
description = "Python/XML package",
author = "XML-SIG",
***************
*** 204,208 ****
long_description =
"""XML Parsers and API for Python
! This version of PyXML was tested with Python 2.x and 1.5.2.
""",
--- 204,208 ----
long_description =
"""XML Parsers and API for Python
! This version of PyXML was tested with Python 2.x
""",
|