index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
regressiontests
/
requests
/
tests.py
Age
Commit message (
Expand
)
Author
2013-02-26
Merged regressiontests and modeltests into the test root.
Florian Apolloner
2013-02-19
Added a new required ALLOWED_HOSTS setting for HTTP host header validation.
Carl Meyer
2013-02-13
Removed try-except in django.db.close_connection()
Anssi Kääriäinen
2013-02-10
Fixed #19707 -- Reset transaction state after requests
Anssi Kääriäinen
2012-12-29
Removed HttpRequest.raw_post_data.
Aymeric Augustin
2012-12-22
Fixed #19468 -- Decoded request.path correctly on Python 3.
Aymeric Augustin
2012-12-10
Fixed a security issue in get_host.
Florian Apolloner
2012-11-03
Fixed #19101 -- Decoding of non-ASCII POST data on Python 3.
Aymeric Augustin
2012-10-30
Fixed #5076 -- Properly decode POSTs with non-utf-8 payload encoding
Claude Paroz
2012-10-26
Don't use : as an invalid cookie character
Ian Clelland
2012-10-20
Used @override_settings in several tests.
Aymeric Augustin
2012-10-20
Used FakePayload in requests tests
Claude Paroz
2012-10-20
Fixed #5611 -- Restricted accepted content types in parsing POST data
Claude Paroz
2012-10-18
Added missed poisoned host header tests
Preston Holmes
2012-08-11
[py3] Used BytesIO to test request streams
Claude Paroz
2012-08-08
[py3] Used compatible imports of StringIO.
Aymeric Augustin
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-05-19
Marked bytestrings with b prefix. Refs #18269
Claude Paroz
2012-05-03
Inserted more simplefilter calls to be sure warnings are emitted.
Claude Paroz
2012-05-03
Made warning assertions work with or without -Wall python switch
Claude Paroz
2012-05-03
Used catch_warnings instead of save/restore methods. Refs #17049.
Claude Paroz
2012-05-03
Fixed #18042 -- Advanced deprecation warnings.
Aymeric Augustin
2012-03-31
Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ...
Claude Paroz
2012-03-30
Removed with_statement imports, useless in Python >= 2.6. Refs #17965. Thanks...
Claude Paroz
2012-03-18
Fixed #17931 -- Accepted aware datetimes to set cookies expiry dates. Thanks ...
Aymeric Augustin
2012-02-10
Fixed #17277 - Wrap IOErrors raised due to client disconnect in a specific IO...
Carl Meyer
2011-12-16
Refs #17323 -- Updated a test to use try/finally to avoid state leakage. Than...
Carl Meyer
2011-12-16
Fixed #17323 -- Renamed HttpRequest.raw_post_data to request.body. Thanks for...
Adrian Holovaty
2011-09-10
Added protection against spoofing of X_FORWARDED_HOST headers. A security ann...
Russell Keith-Magee
2011-06-28
Fixed #15785 -- Stopped HttpRequest.read() from reading beyond the end of a w...
Jannis Leidel
2011-06-10
Fixed #16201 -- Ensure that requests with Content-Length=0 don't break the mu...
Russell Keith-Magee
2011-06-09
Fixed #16178 - Cleanup request classes' `__repr__()`
Luke Plant
2011-03-28
Fixed #15679 - regression in HttpRequest.POST and raw_post_data access.
Luke Plant
2011-01-16
Fixed #15018 -- Corrected the handling of LimitedStream under one edge case i...
Russell Keith-Magee
2010-11-26
Fixed #3304 -- Added support for HTTPOnly cookies. Thanks to arvin for the su...
Russell Keith-Magee
2010-11-07
Make the requests test use unittest2, rather than the system unittest.
Alex Gaynor
2010-10-29
Fixed #9886 -- Added a file-like interface to HttpRequest. Thanks to Ivan Sag...
Russell Keith-Magee
2010-09-28
Modified the requests unit tests so that they aren't dependent on dictionary ...
Russell Keith-Magee
2010-09-28
Migrated requests doctests. Thanks to Stephan Jaekel.
Russell Keith-Magee
2010-09-28
Fixed #14351 -- Modified the requests test case to avoid an timing problem in...
Russell Keith-Magee
2010-09-12
Allow setting HttpResponse cookie expiry times with datetime objects.
Malcolm Tredinnick
2008-08-23
Fixed #7494 -- Fixed build_absolute_url() for some types of (uncommon) URLs.
Malcolm Tredinnick
2008-07-21
Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or
Malcolm Tredinnick
2008-03-17
Fixed #6764 -- Added some error checking around cookie decoding. Thanks,
Malcolm Tredinnick
2008-03-08
Fixed tests added in [7200] to not depend on unpredictable key order of dict,...
Gary Wilson Jr
2008-03-08
Fixed #5595 -- Made `ModPythonRequest.__repr__` return a string instead of a ...
Gary Wilson Jr