summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_http.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34194 -- Added django.utils.http.content_disposition_header().Alex Vandiver2022-12-051-0/+26
* Updated documentation and comments for RFC updates.Nick Pope2022-11-101-1/+1
* Updated vendored _urlsplit() to strip newline and tabs.Michael Manfre2022-07-011-0/+1
* Refs #33697 -- Used django.utils.http.parse_header_parameters() for parsing b...Mehrdad2022-06-281-0/+38
* Refs #33173 -- Removed use of deprecated cgi module.Carlton Gibson2022-05-111-0/+37
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-127/+210
* Fixed #28628 -- Changed \d to [0-9] in regexes where appropriate.Ad Timmering2022-01-071-0/+7
* Fixed #32366 -- Updated datetime module usage to recommended approach.Nick Pope2021-05-121-18/+32
* Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak2021-02-101-66/+1
* Refs #30747 -- Removed django.utils.http.is_safe_url() per deprecation timeline.Mariusz Felisiak2021-01-141-13/+4
* Refs #27753 -- Removed django.utils.http urllib aliases per deprecation timel...Mariusz Felisiak2021-01-141-23/+3
* Refs #21231 -- Backport urllib.parse.parse_qsl() from Python 3.8.Nick Pope2020-09-031-3/+69
* Fixed #31521 -- Skipped test_parsing_rfc850 test on 32-bit systems.Hasan Ramezani2020-04-301-0/+2
* Fixed #28690 -- Fixed handling of two-digit years in parse_http_date().Ad Timmering2019-09-301-8/+17
* Refs #28690 -- Added more tests for parse_http_date().Ad Timmering2019-09-301-2/+12
* Fixed #30747 -- Renamed is_safe_url() to url_has_allowed_host_and_scheme().Carlton Gibson2019-09-021-12/+35
* Fixed #30677 -- Improved error message for urlencode() and Client when None i...swatantra2019-08-111-2/+2
* Refs #30485 -- Removed non-representative test that emitted a warning.Jon Dufresne2019-06-191-1/+0
* Fixed #30485 -- Adjusted django.utils.http.urlencode for doseq=False case.Johan Lübcke2019-05-241-7/+17
* Fixed #30264 -- Fixed crash of test_parsing_year_less_than_70() on 32-bit sys...Mariusz Felisiak2019-03-201-2/+2
* Refs #27753 -- Deprecated django.utils.http urllib aliases.Tim Graham2019-02-041-1/+3
* Refs #28965 -- Removed utils.http.cookie_date() per deprecation timeline.Tim Graham2019-01-171-10/+4
* Fixed #30024 -- Made urlencode() and Client raise TypeError when None is pass...Jon Dufresne2018-12-271-1/+20
* Increased test coverage of django.utils.http.Hasan Ramezani2018-11-031-0/+5
* Fixed CVE-2018-14574 -- Fixed open redirect possibility in CommonMiddleware.Andreas Hug2018-08-011-4/+15
* Fixed #29525 -- Allowed is_safe_url()'s allowed_hosts arg to be a string.Przemysław Suliga2018-06-291-0/+4
* Fixed #28638 -- Made allowed_hosts a required argument of is_safe_url().Jon Dufresne2018-01-111-2/+2
* Refs #28965 -- Deprecated unused django.utils.http.cookie_date().Tim Graham2018-01-021-1/+3
* Fixed #28679 -- Fixed urlencode()'s handling of bytes.François Freitag2017-10-121-0/+17
* Split django.utils.http tests into separate test classes.François Freitag2017-10-101-95/+121
* Refs #26956 -- Removed the host parameter of django.utils.http.is_safe_url().Tim Graham2017-09-221-6/+0
* Added test for too large input to django.utils.http.base36_to_int().Mads Jensen2017-09-211-0/+3
* Fixed #28142 -- Fixed is_safe_url() crash on invalid IPv6 URLs.UmanShahzad2017-05-101-0/+2
* Fixed #27912, CVE-2017-7233 -- Fixed is_safe_url() with numeric URLs.Tim Graham2017-04-041-0/+3
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-17/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-3/+3
* Fixed #27083 -- Added support for weak ETags.Kevin Christopher Henry2016-09-101-6/+11
* Refs #26956 -- Allowed is_safe_url() to validate against multiple hostsJon Dufresne2016-09-071-9/+21
* Fixed #26902 -- Allowed is_safe_url() to require an https URL.Przemysław Suliga2016-08-191-0/+18
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-61/+53
* Added safety to URL decoding in is_safe_url() on Python 2Claude Paroz2016-03-041-1/+1
* Fixed #26308 -- Prevented crash with binary URLs in is_safe_url()Claude Paroz2016-03-041-0/+12
* Fixed CVE-2016-2512 -- Prevented spoofing is_safe_url() with basic auth.Mark Striemer2016-03-011-0/+12
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-5/+10
* Fixed #26024 -- Fixed regression in ConditionalGetMiddleware ETag support.Denis Cornehl2016-01-051-1/+3
* Fixed many spelling mistakes in code, comments, and docs.Josh Soref2015-12-031-2/+2
* Fixed #24496 -- Added CSRF Referer checking against CSRF_COOKIE_DOMAIN.Matt Robenolt2015-09-161-25/+19
* Made is_safe_url() reject URLs that start with control characters.Tim Graham2015-03-181-1/+3
* Fixed #24321 -- Improved `utils.http.same_origin` compliance with RFC6454Lukas Klein2015-02-121-0/+6