summaryrefslogtreecommitdiff
path: root/django/test/html.py
AgeCommit message (Expand)Author
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2023-07-14Refs #30686 -- Moved Parser.SELF_CLOSING_TAGS to django.utils.html.VOID_ELEMENTSDavid Smith
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-10-29Fixed #33236 -- Fixed assertHTMLEqual() error messages for escaped HTML.Pratyush Mittal
2021-03-19Fixed #32556 -- Fixed handling empty string as non-boolean attributes value b...Baptiste Mispelon
2021-03-19Refs #32556 -- Added django.test.html.normalize_attributes().Baptiste Mispelon
2021-03-18Fixed #32556 -- Fixed assertHTMLEqual() to handle empty string as boolean att...Hasan Ramezani
2021-03-18Fixed #32547 -- Corrected notes about validation in HTML assertions docs.Hasan Ramezani
2020-10-28Made small readability improvements.Martin Thoma
2020-09-24Fixed #27906 -- Fixed test tools counting of HTML matches for subsets of elem...Jacob Walls
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-05-10Fixed #30470 -- Added assertHTMLEqual() support for all self closing tags.Jon Dufresne
2019-05-09Fixed #30468 -- Fixed assertHTMLEqual() to handle all ASCII whitespace in a c...Jon Dufresne
2019-05-09Refs #30399 -- Made assertHTMLEqual normalize character and entity references.Jon Dufresne
2019-02-09Removed uneeded generator expressions and list comprehensions.Sergey Fedoseev
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2018-01-03Fixed #28985 -- Removed unneeded None checks before hasattr().Дилян Палаузов
2017-12-07Refs #23919 -- Replaced super() calls for old-style classes.Nick Pope
2017-09-25Fixed #27857 -- Dropped support for Python 3.4.Tim Graham
2017-03-04Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-08-31Fixed #24112 -- Fixed assertInHTML()'s counting if needle has no root element.Adam Zapletal
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-18Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol
2013-03-28Fixed spelling errorsGavin Wahl
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2012-12-24Fixed HTML comparisons of class="foo bar" and class="bar foo" in testsLuke Plant
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-08[py3] Made Element instances hashableClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-03-01Fixed #17730 - Renamed django.utils.htmlparser to django.utils.html_parser to...Carl Meyer
2012-01-31Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer