summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-08Fixed typo in docs/topics/testing/tools.txt.Tim Graham
2017-02-08Used JsonResponse and response.json in file_uploads tests.Tim Graham
2017-02-08Fixed #27821 -- Clarified docs of the return value of Form.clean_<fieldname>().Tim Graham
Thanks Christian Ullrich for the report and review.
2017-02-07Fixed #27356 -- Fixed ModelAdmin.lookup_allowed() for some nested relations.Anton Samarchyan
2017-02-07Fixed #27814 -- Removed an inaccurate sentence about Paginator.orphans.Tim Graham
2017-02-07Fixed #26903 -- Fixed __contains lookup for Date/DateTimeRangeField.Mariusz Felisiak
Thanks Mariusz Felisiak and Tim Graham for polishing the patch.
2017-02-07Fixed #5851 -- Allowed specifying different HTML attrs for ↵Mariusz Felisiak
SplitDateTimeWidget subwidgets. Thanks Tim Graham and Nick Pope for review.
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
Thanks Tim Graham for the review.
2017-02-07Refs #27815 -- Reordered LoginView.get_form_kwargs().Tim Graham
2017-02-07Fixed #27815 -- Made LoginView pass the request kwarg to AuthenticationForm.Zoltan Gyarmati
2017-02-07Fixed typo in docs/releases/1.11.txt.Atul Varma
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-02-06Fixed #27805 -- Fixed ClearableFileInput's "Clear" checkbox on model fields ↵Tim Graham
with a default.
2017-02-06Fixed #27783 -- Switched VariableDoesNotExist.__str__() to repr() context.Ryan O’Hara
Using __str__() and then repr'ing the result looks strange and can lead to recursive rendering of forms.
2017-02-06Refs #27795 -- Removed force_text from templatize functionClaude Paroz
2017-02-06Fixed #27802 -- Unified return value of db backend datetime SQL methods.Mariusz Felisiak
2017-02-06Fixed typo in docs/releases/2.0.txt.Charlie Denton
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-02-04Fixed running TransactionsPerRequestTests in isolation.Jon Dufresne
Caused by `contrib/auth/backends.py` changes in cb7bbf97a74fa7800865e3615f196ad65dc4f281.
2017-02-04Fixed #27767 -- Added distinct argument to ArrayAgg.orf
2017-02-04Fixed alphabetization of Tom's in AUTHORS.Tim Graham
2017-02-04Refs #27546 -- Removed hardcoded class names in __repr__() methods.Mads Jensen
2017-02-04Added tests for various __repr__() methods.Mads Jensen
2017-02-03Refs #23919 -- Removed a Python 2 code path in force_text().Tim Graham
Reverted the obsolete fix and tests for refs #12302.
2017-02-03Removed an untested and broken branch in force_bytes() (refs #6353).Tim Graham
The new test crashed in the removed branch. It's unclear if the branch has value since c6a2bd9b962af1cdf46f964589e6023046cfa8ec didn't include tests.
2017-02-03Used super() in DjangoUnicodeDecodeError.Tim Graham
2017-02-03Added a test for force_text()'s DjangoUnicodeDecodeError path.Tim Graham
2017-02-03Fixed #27741 -- Isolated TestCollectionHashedFilesCache in a tmpdir.David Sanders
2017-02-03Refs #27745 -- Improved test coverage of contrib.contenttypes.Anton Samarchyan
2017-02-03Split up contenttypes_tests.Tim Graham
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-02-02Fixed #27803 -- Kept safe status of lazy safe strings in conditional_escapeClaude Paroz
2017-02-02Refs #27804 -- Used subTest() in tests.utils_tests.test_html.Tim Graham
2017-02-02Imported specific functions in tests.utils_tests.test_html.Tim Graham
2017-02-01Removed unused ExceptionReporter.format_exception() method.Tim Graham
Unused since its introduction in e7e4b8b0f774b119bc1c46a62a97e51d7c8a35e3.
2017-02-01Removed ExceptionReporter support for string exceptions.Tim Graham
Reverted refs #6423 since raising string exceptions is prohibited since Python 2.5.
2017-02-01Fixed #27683 -- Made MySQL default to the read committed isolation level.Tim Graham
Thanks Shai Berger for test help and Adam Johnson for review.
2017-02-01Refs #27683 -- Split up MySQL isolation level tests.Tim Graham
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-02-01Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to ↵Ling-Xiao Yang
system checks. Thanks Simon Charette, Mariusz Felisiak, Tim Graham, and Adam Johnson for review.
2017-01-31Fixed #27800 -- Fixed QuerySet.annotate(Length(...)).distinct() crash.Lex Berezhny
2017-01-31Refs #23919 -- Removed unneeded code in force_text().Vytis Banaitis
Unneeded since 7b2f2e74adb36a4334e83130f6abc2f79d395235.
2017-01-31Refs #27421 -- Documented GDALRaster creation in detail.Daniel Wiesmann
2017-01-31Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template ↵Jon Dufresne
widget rendering.
2017-01-31Used model_ngettext in two more placesClaude Paroz
2017-01-30Added missing word in docs/howto/error-reporting.txt.Ryan Castner
2017-01-30Refs #27795 -- Prevented SafeText from losing safe status on str()Claude Paroz
This will allow to replace force_text() by str() in several places (as one of the features of force_text is to keep the safe status).
2017-01-30Fixed incorrect namespace in sitemap example.Arkadiusz Adamski
2017-01-30Reintroduced lazy import from commit 52138b1fd0Claude Paroz
2017-01-30Refs #23919 -- Removed usage of obsolete SafeBytes classClaude Paroz
The class will be removed as part of #27753. Thanks Tim Graham for the review.