14
0
forked from pool/python-lxml
OBS User unknown
2008-04-03 00:15:51 +00:00
committed by Git OBS Bridge
parent f891f30413
commit c823075c9d
4 changed files with 103 additions and 11 deletions

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Fri Mar 28 11:01:26 CET 2008 - toms@suse.de
- Split documentation into subpackage python-lxml-doc
- Updated to 2.0.3:
Features added
* soupparser.parse() allows passing keyword arguments on to
BeautifulSoup.
* fromstring() method in lxml.html.soupparser.
Bugs fixed:
* lxml.html.diff didn't treat empty tags properly (e.g., <br>).
* Handle entity replacements correctly in target parser.
* Crash when using iterparse() with XML Schema validation.
* The BeautifulSoup parser (soupparser.py) did not replace entities,
which made them turn up in text content.
* Attribute assignment of custom PyTypes in objectify could fail
to correctly serialise the value to a string.
Other changes
* lxml.html.ElementSoup was replaced by a new module lxml.html.soupparser
with a more consistent API. The old module remains for
compatibility with ElementTree's own ElementSoup module.
* Setting the XSLT_CONFIG and XML2_CONFIG environment variables at
build time will let setup.py pick up the xml2-config and xslt-config
scripts from the supplied path name.
* Passing --with-xml2-config=/path/to/xml2-config to setup.py will
override the xml2-config script that is used to determine the
C compiler options. The same applies for the --with-xslt-config option.
Older changes:
* see
http://pypi.python.org/pypi/lxml/2.0.2
http://pypi.python.org/pypi/lxml/2.0.1
http://pypi.python.org/pypi/lxml/2.0
-------------------------------------------------------------------
Tue Oct 30 12:03:16 CET 2007 - toms@suse.de