[Lxml-checkins] r47969 - lxml/trunk

scoder at codespeak.net scoder at codespeak.net
Thu Oct 25 19:32:50 CEST 2007


Author: scoder
Date: Thu Oct 25 19:32:50 2007
New Revision: 47969

Modified:
   lxml/trunk/CHANGES.txt
Log:
changelog cleanup

Modified: lxml/trunk/CHANGES.txt
==============================================================================
--- lxml/trunk/CHANGES.txt	(original)
+++ lxml/trunk/CHANGES.txt	Thu Oct 25 19:32:50 2007
@@ -8,6 +8,10 @@
 Features added
 --------------
 
+* ``lxml.html.clean.Cleaner`` now allows for a ``host_whitelist``, and
+  two overridable methods: ``allow_embedded_url(el, url)`` and the
+  more general ``allow_element(el)``.
+
 * Extended slicing of Elements as in ``element[1:-1:2]``, both in
   etree and in objectify
 
@@ -18,29 +22,22 @@
   ``NOPARSE_MARKUP`` (like ``# doctest: +NOPARSE_MARKUP``) to suppress
   the special checking for one test.
 
-* ``lxml.html.clean.Cleaner`` now allows for a ``host_whitelist``, and
-  two overridable methods: ``allow_embedded_url(el, url)`` and the
-  more general ``allow_element(el)``.
-
 Bugs fixed
 ----------
 
+* In the ``lxml.html`` ``iter_links`` method, links in ``<object>``
+  tags weren't recognized.  (Note: plugin-specific link parameters
+  still aren't recognized.)  Also, the ``<embed>`` tag, though not
+  standard, is now included in
+  ``lxml.html.defs.special_inline_tags``.
+
 * Using custom resolvers on XSLT stylesheets parsed from a string
   could request ill-formed URLs.
 
-* lxml.etree could crash when adding more than 10000 namespaces to a
-  document
-
 * With ``lxml.doctestcompare`` if you do ``<tag xmlns="...">`` in your
   output, it will then be namespace-neutral (before the ellipsis was
   treated as a real namespace).
 
-* In the ``lxml.html`` ``iter_links`` method, links in ``<object>``
-  tags weren't recognized.  (Note: plugin-specific link parameters
-  still aren't recognized.)  Also, the ``<embed>`` tag, though not
-  standard, is now included in
-  ``lxml.html.defs.special_inline_tags``.
-
 Other changes
 -------------
 
@@ -51,6 +48,22 @@
   the package name of their module.
 
 
+1.3.5 (2007-10-22)
+==================
+
+Features added
+--------------
+
+Bugs fixed
+----------
+
+* lxml.etree could crash when adding more than 10000 namespaces to a
+  document
+
+* lxml failed to serialise namespace declarations of elements other
+  than the root node of a tree
+
+
 2.0alpha4 (2007-10-07)
 ======================
 


More information about the lxml-checkins mailing list