summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-30Fixed #27793 -- Used stdlib's ipaddress module to validate IP addressesClaude Paroz
Thanks Tim Graham for the review.
2017-01-30Refs #23919 -- Assumed request COOKIES and META are strClaude Paroz
2017-01-30Fixed #27789 -- Simplified query for sequence value on Oracle.Mariusz Felisiak
2017-01-29Removed unneeded parentheses in class definitionsClaude Paroz
2017-01-28Fixed #26708 -- Updated the contributing tutorial to use a GitHub workflow.Subhrajyoti Sen
2017-01-28Refs #27790 -- Reverted "Removed available_apps on TestCase subclasses."Tim Graham
This reverts commit 91023d79ec70df9289271e63a67675ee51e7dea8 as it increases memory usage for the test suite.
2017-01-28Fixed #26993 -- Increased User.last_name max_length to 150 characters.Thom Wiggers
2017-01-28Fixed #27788 -- Dropped support for Oracle < 12.1.Tim Graham
2017-01-28Removed obsolete sentence in ManagementUtility docstring.Srinivas Reddy Thatiparthy
2017-01-28Made ugettext* functions aliases of gettext*Claude Paroz
Thanks Tim Graham for the review.
2017-01-27Refs #23919 -- Removed an obsolete test for a Python 2 code path (refs #15662).Tim Graham
Fixed #21628 by removing the last usage of the imp module.
2017-01-27Fixed #27748 -- Switched HTTP error handlers to reference callables instead ↵Dmitry Gladkov
of strings.
2017-01-27Fixed #27769 -- Documented option naming differences between django-admin ↵Andrew Nester
and call_command().
2017-01-27Improved test coverage for conf.urls.static.Anton Samarchyan
2017-01-27Refs #27537 -- Added default_addr(_ipv6) attributes to runserver command.Ed Morley
2017-01-27Improved test coverage and error messages for conf.urls.__init__.Anton Samarchyan
2017-01-27Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking ↵Tim Graham
form field order.
2017-01-27Fixed #27678 -- Warned that the template system isn't safe against untrusted ↵andrewnester
authors.
2017-01-27Tested AppConfig.__repr__().Anton Samarchyan
2017-01-26Fixed #27501 -- Documented lazy evaluation of ModelChoiceField.queryset.chillaranand
2017-01-26Slightly simplified django.conf.urls.static.static().Anton Samarchyan
2017-01-26Fixed #27781 -- Made simplify_regex() remove outstanding '?' characters.Mariusz Felisiak
Regression in f0ef0c49e9284f262fbc63e8a497699ca4a248fe.
2017-01-26Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context ↵Chillar Anand
manager.
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python ↵Claude Paroz
equivalents Thanks Tim Graham for the review.
2017-01-26Removed unnecessary force_text() in BaseTemporalField.to_python().Tim Graham
This seems unneeded since its introduction in da3aa22d04d6452f87abbb1a0fee8a90a61eff5b.
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Fixed #27776 -- Merged tests/requirements/base.txt into py3.txt.Tim Graham
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #27741 -- Fixed staticfiles_tests.test_views when run in isolation.Tim Graham
2017-01-25Simplified tests with assertDoesNotOptimize().Ed Morley
2017-01-25Corrected http.multipartparser.exhaust() docstring.Tim Graham
MultiPartParserError was removed in ebf34c3cdcd2c75349c60a064427ac255958bf9b.
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-25Refs #23919 -- Removed obsolete MySQLdb references.Tim Graham
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
2017-01-25Refs #25175 -- Deprecated db.backends.postgresql_psycopg2 module.Tim Graham
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-25Fixed typo in docs/ref/models/expressions.txt.Paolo Melchiorre
2017-01-24Removed unneeded force_text calls in the test suiteClaude Paroz
2017-01-24Refs #23919 -- Removed a MySQLdb workaround (refs #6052) for Python 2.Tim Graham
2017-01-24Tidied djang.db.utils.load_backend().Tim Graham
Removed an unneeded EnvironmentError catching and used "raise from exc" syntax.
2017-01-24Refs #23919 -- Removed __traceback__ setting needed for Python 2.Tim Graham
Partially reverted refs #25761 and refs #16245.
2017-01-23Fixed #27743 -- Prevented admin's "+" button icon from overlapping its label.Nick Mavrakis
2017-01-23Replaced dict() usage with dict literals.Jon Dufresne
Literals are faster and more idiomatic.
2017-01-23Assumed iri_to_uri always returns a stringClaude Paroz
Thanks Tim Graham for the review.
2017-01-23Replaced "not var is ..." with "is not" in attrs.html.Jon Dufresne
2017-01-23Removed MySQL decimal casting.Tim Graham
Added in Django 1.0: 92c35a0617836b09aef3b6909579ee368004969b Unknown when it became obsolete.
2017-01-23Fixed #27759 -- Prevented forms attrs.html template from rendering False attrs.Jon Dufresne
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
2017-01-23Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.Jon Dufresne
2017-01-23Removed ChoiceWidget.render() as it duplicates parent implementation.Jon Dufresne