History log of /external/python/cpython2/Lib/test/test_htmlparser.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
5a88853bdc1074e62441c7558502bd989c39f056 01-Feb-2014 Ezio Melotti <ezio.melotti@gmail.com> #20288: fix handling of invalid numeric charrefs in HTMLParser.
/external/python/cpython2/Lib/test/test_htmlparser.py
b8147452265077d4c12464a9943903f0d040f79c 07-Nov-2013 Ezio Melotti <ezio.melotti@gmail.com> #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard.
/external/python/cpython2/Lib/test/test_htmlparser.py
c45868ec697a70a80d1cf8a511894f073fda3a27 19-Apr-2012 Ezio Melotti <ezio.melotti@gmail.com> #14538: HTMLParser can now parse correctly start tags that contain a bare /.
/external/python/cpython2/Lib/test/test_htmlparser.py
36b7361fe76733b3a4944ef92b49bcea4584b740 21-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> HTMLParser is now able to handle slashes in the start tag.
/external/python/cpython2/Lib/test/test_htmlparser.py
65d36dab4d915eb9fada52b867301b546e840fae 15-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #13987: HTMLParser is now able to handle malformed start tags.
/external/python/cpython2/Lib/test/test_htmlparser.py
d2307cb48ab09baa846947c5c2c4001dce9b6e52 14-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #13987: HTMLParser is now able to handle EOFs in the middle of a construct.
/external/python/cpython2/Lib/test/test_htmlparser.py
369cbd744ed06b3e01fe7a2e6a86ea4d85250231 13-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> Fix an index, add more tests, avoid raising errors for unknown declarations, and clean up comments.
/external/python/cpython2/Lib/test/test_htmlparser.py
f117443cb8afa3b2d91b4fef861db17866d6b6df 13-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #13993: HTMLParser is now able to handle broken end tags.
/external/python/cpython2/Lib/test/test_htmlparser.py
4b92cc3f7924e455b7e41cf1a66034a44ede0cc0 13-Feb-2012 Ezio Melotti <ezio.melotti@gmail.com> #13960: HTMLParser is now able to handle broken comments.
/external/python/cpython2/Lib/test/test_htmlparser.py
6b7003a18c2fa7378eb5ec5766ded01dee212c85 19-Dec-2011 Ezio Melotti <ezio.melotti@gmail.com> #13576: add tests about the handling of (possibly broken) condcoms.
/external/python/cpython2/Lib/test/test_htmlparser.py
00dc60beee3bf4b68fd658716616f25503a3a9eb 18-Nov-2011 Ezio Melotti <ezio.melotti@gmail.com> #13358: HTMLParser now calls handle_data only once for each CDATA.
/external/python/cpython2/Lib/test/test_htmlparser.py
0f1571ce7fb7da0e2ad75f941b29f2d19717e012 14-Nov-2011 Ezio Melotti <ezio.melotti@gmail.com> #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in HTMLParser.
/external/python/cpython2/Lib/test/test_htmlparser.py
74592919d67706c3554f42da5226afb8b6feb48e 08-Nov-2011 Ezio Melotti <ezio.melotti@gmail.com> Group tests about attributes in a separate class.
/external/python/cpython2/Lib/test/test_htmlparser.py
7e82b276dd5c1f786e7bd3c1554ac2017a909ab9 01-Nov-2011 Ezio Melotti <ezio.melotti@gmail.com> #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``.
/external/python/cpython2/Lib/test/test_htmlparser.py
9f1ffb2ae932f5eef1bcf1317a0e3d8f4bad0e0c 05-Apr-2011 Ezio Melotti <none@none> #7311: fix HTMLParser to accept non-ASCII attribute values.
/external/python/cpython2/Lib/test/test_htmlparser.py
3f60f09eb23be3289ac5cc019391711dcdf800b3 28-Dec-2010 Senthil Kumaran <orsenthil@gmail.com> Fix Issue10759 - HTMLParser.unescape() to handle malform charrefs.
/external/python/cpython2/Lib/test/test_htmlparser.py
554a3b82e40573846f893ffdfff230e1d908af57 24-May-2010 Victor Stinner <victor.stinner@haypocalc.com> Issue #6662: Fix parsing of malformatted charref (&#bad;)
/external/python/cpython2/Lib/test/test_htmlparser.py
b3be23ad27f35bae55638e2ccf0bbb121d8e66ed 05-Mar-2010 Benjamin Peterson <benjamin@python.org> remove the svn:executable property from files that don't have shebang lines
/external/python/cpython2/Lib/test/test_htmlparser.py
bcdafa44f2a0147f97d2426ef0552c227a219f2e 20-May-2008 Georg Brandl <georg@python.org> Remove html package and fix test_htmlparser.
/external/python/cpython2/Lib/test/test_htmlparser.py
d21dabc890087fb030ad2f732de9386f0cc03f9c 19-May-2008 Benjamin Peterson <benjamin@python.org> change some imports in tests so they will not be skipped in 3.0
/external/python/cpython2/Lib/test/test_htmlparser.py
c5f05e45cffa16f45f1332cec531c045893f928f 23-Feb-2008 Christian Heimes <christian@cheimes.de> Patch #2167 from calvin: Remove unused imports
/external/python/cpython2/Lib/test/test_htmlparser.py
ab8a6bba250b35ea87d8976e9cd4dd74e57cfd0a 06-Mar-2007 Martin v. Löwis <martin@v.loewis.de> Patch #912410: Replace HTML entity references for attribute values
in HTMLParser.
/external/python/cpython2/Lib/test/test_htmlparser.py
d09def36d52af3e087433eb67c49da633436c602 09-Mar-2006 Georg Brandl <georg@python.org> Bug #1442874: handle "<!>", the empty SGML comment
/external/python/cpython2/Lib/test/test_htmlparser.py
75d9a62fe031195742b6d9f0647458af0fbd96f0 09-Sep-2004 Fred Drake <fdrake@acm.org> add tests that make sure buffer boundaries are handled properly for SGML comments
(see SF patch #901369)
/external/python/cpython2/Lib/test/test_htmlparser.py
27f883687ba01f571ff7cc03a3f03b94030f92ad 08-Jul-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_htmlparser.py
b7d8ce0275d7b4c9a9c2312d0add835c6eac1730 05-Jun-2004 Andrew M. Kuchling <amk@amk.ca> [Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal according to the HTML REC, but HTMLParser is already a pretty loose parser. Reported by Bernd Zimmermann.
/external/python/cpython2/Lib/test/test_htmlparser.py
fafd56f439319c3044fdcc5b506f9c9824978407 18-Apr-2003 Fred Drake <fdrake@acm.org> Add test that demonstrates SGML-style handling of processing
instructions.
/external/python/cpython2/Lib/test/test_htmlparser.py
0834d77bc4f07e5632588ed636b6db21e87694cc 14-Mar-2003 Fred Drake <fdrake@acm.org> Accept commas in unquoted attribute values.
This closes SF patch #669683.
/external/python/cpython2/Lib/test/test_htmlparser.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_htmlparser.py
073148c4ef807732eaf42df4b7178cecfa0b58dc 03-Dec-2001 Fred Drake <fdrake@acm.org> Add a test that makes sure unclosed entity references are handled consitently.
/external/python/cpython2/Lib/test/test_htmlparser.py
e822049efcfb3eafede8035609284656671aece4 24-Sep-2001 Fred Drake <fdrake@acm.org> Adapt to use the test_main() approach.
/external/python/cpython2/Lib/test/test_htmlparser.py
7cf613dc77302fb9a2a6533878aba7296276e12c 04-Sep-2001 Fred Drake <fdrake@acm.org> HTMLParser is allowed to be more strict than sgmllib, so let's not
change their basic behavior: When parsing something that cannot possibly
be valid in either HTML or XHTML, raise an exception.
/external/python/cpython2/Lib/test/test_htmlparser.py
c20a698932d61ea825491781186caa77eb6c0e5e 04-Sep-2001 Fred Drake <fdrake@acm.org> Enhanced the test for DOCTYPE declarations, added a test for dealing with
broken declaration-like things.
/external/python/cpython2/Lib/test/test_htmlparser.py
029acfb922bdd25d6e38c864895c6cc66db76d13 20-Aug-2001 Fred Drake <fdrake@acm.org> Deal more appropriately with bare ampersands and pointy brackets; this
module has to deal with "class" HTML-as-deployed as well as XHTML, so we
cannot be as strict as XHTML allows.

This closes SF bug #453059, but uses a different fix than suggested in
the bug comments.
/external/python/cpython2/Lib/test/test_htmlparser.py
84bb9d8dc463eaa3e38080e4ee6fe3d150b3cb1b 03-Aug-2001 Fred Drake <fdrake@acm.org> Fix stupid bug: when migrating these tests from the Zope repository, the
names of the test methods were not changed from the Zope-standard "check"
names to the Python-standard "test_" names, so the tests were not actually
being run.

Added test of hexadecimal character references as a regression check for
SF bug #445196.
/external/python/cpython2/Lib/test/test_htmlparser.py
50bc19fce54a22f06eb777711b75a1bfd1c0b86b 16-Jul-2001 Fred Drake <fdrake@acm.org> Remove a duplicate test.
/external/python/cpython2/Lib/test/test_htmlparser.py
bd3090d4d659951ed38d1da0f44c3e59ec830bea 18-May-2001 Fred Drake <fdrake@acm.org> Added test suite for the new HTMLParser module, originally from the
TAL/PageTemplate package for Zope. This only needed a little boilerplate
change; the tests themselves are unchanged.
/external/python/cpython2/Lib/test/test_htmlparser.py