summaryrefslogtreecommitdiff
path: root/tests/admin_docs
AgeCommit message (Collapse)Author
2021-06-02[3.2.x] Fixed CVE-2021-33203 -- Fixed potential path-traversal via ↵Florian Apolloner
admindocs' TemplateDetailView.
2020-09-14Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick
2020-05-23Refs #30400 -- Improved typography in admin_doc/missing_docutils.html.Jon Dufresne
2020-05-18Updated docutils link to HTTPS and new location.Jon Dufresne
2019-11-29Fixed #30255 -- Fixed admindocs errors when rendering docstrings without ↵Baptiste Mispelon
leading newlines. Used inspect.cleandoc() which implements PEP-257 instead of an internal hook.
2019-10-23Added tests for middlewares' checks.Sergey Fedoseev
2019-08-30Fixed #30731 -- Fixed handling trailing groups in simplify_regex().Alan Crosswell
Previously simplify_regex() didn't handle trailing groups for regexp without the end of string character ("$").
2019-06-28Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne
Thanks Claude Paroz for assistance with translations.
2019-04-25Fixed #30399 -- Changed django.utils.html.escape()/urlize() to use ↵Jon Dufresne
html.escape()/unescape().
2018-12-31Updated test URL patterns to use path() and re_path().Tim Graham
2018-11-27Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham
2018-11-26Removed empty setUp() in admindocs tests.Simon Charette
2018-06-03Fixed #29385 -- Made admindocs ModelDetailView show model properties.humbertotm
Original patch by bkaluza. Tests and docs by humbertotm.
2018-04-12Fixed #29296 -- Fixed crashes in admindocs when a view is a callable object.Paul Donohue
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-10Completed test coverage for ModelDetailView.Mads Jensen
2017-05-24Refs #27804 -- Used subTest() in several tests.Bruno Alla
2017-01-26Fixed #27781 -- Made simplify_regex() remove outstanding '?' characters.Mariusz Felisiak
Regression in f0ef0c49e9284f262fbc63e8a497699ca4a248fe.
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-03Fixed #26621 -- Corrected simplify_regex()'s handling of named capture groups.Ketan Bhatt
2016-09-27Split admin_docs tests into separate files.Tim Graham
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
http://bugs.python.org/issue27364
2016-08-20Fixed #27018 -- Fixed admindocs crash with a view in a class.Helen Sherwood-Taylor
Generated correct admindocs URLs on Python 3. URLs generate 404s on Python 2, as in older versions of Django.
2016-06-18Fixed #24931 -- Made namespaced RegexURLResolvers populate callback strings.Markus Holtermann
Fixed a regression in 2f16ff5a6cbd71fc6c50e88e4087f3657222e90e. Thanks Tim Graham for the review.
2016-05-30Refs #26621 -- Added tests for admindocs.views.simplify_regex().Tim Graham
2016-04-08Fixed E128 flake8 warnings in tests/.Tim Graham
2016-02-06Fixed #26175 -- Removed SHA1 password hashes in tests.Tim Graham
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-02Fixed #25667 -- Fixed admindocs initial_header_level.Ville Skyttä
2015-09-07Removed 'Test that' prefix from admindocs tests.Zan Anderle
2015-09-07Fixed #24917 -- Made admindocs display model methods that take arguments.Zan Anderle
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-13Fixed #25115 -- Made admindocs view bookmarklet reverse the URL rather than ↵Ben Spaulding
hardcode it.
2015-06-11Refs #24125 -- Added admin_docs tests for multiple template engines.Kai Richard Koenig
This adds a test for 511a53b3142551a1bc3093ed1b6655f57634f510
2015-06-08Fixed #21927 -- Made application and instance namespaces more distinct.Marten Kenbeek
Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
2015-04-14Refs #24625 -- Filtered docutils warnings output in testsMarkus Holtermann
Instead of setting ``warning_stream`` in the docutils config overrides to ``False`` I opted for filtering the stderr in the tests to keep the error output showing up in server logs. Thanks Tim Graham for the report and review
2015-04-11Fixed #24625 -- Prevented arbitrary file inclusion in admindocsMarkus Holtermann
Thanks Tim Graham for the review.
2015-04-11Fixed #24624 -- Replaced obsoleted rel.opts in admindocs viewClaude Paroz
Thanks Scott Sanders for the report, and Markus Holtermann and Tim Graham for the reviews. Refs #24381.
2015-03-05Converted test fixtures to setUpTestData methodsJosh Smeaton
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2014-11-03Fixed #5405 -- Added admindocs support for reStructured text in model docstringsZan Anderle
Thanks elvard and gkmngrgn for work on the patch and Markus H. for review.
2014-11-03Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag
2014-10-06Fixed #23601 -- Ensured view exists in URLconf before importing it in admindocs.Markus Holtermann
2014-06-21Removed some apps from ALWAYS_INSTALLED_APPSClaude Paroz
2014-05-10Fixed #21685 -- Displayed app verbose name in admindocs model indexClaude Paroz
2014-04-06Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi