summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-23Fixed #25619 -- Made runserver serve with HTTP 1.1 protocolClaude Paroz
Thanks Tim Graham for the review.
2017-02-22Completed test coverage for django.utils.encoding.Tim Graham
2017-02-22Refs #27851 -- Clarified that admin.site.urls can't be passed to include().Tim Graham
2017-02-22Fixed typos in code comments.Anton Samarchyan
2017-02-22Updated Thai (th) locale formats.Manatsawin Hanmongkolchai
2017-02-22Updated Bengali (bn) locale formats.Asif Saifuddin Auvi
2017-02-22Fixed #27870 -- Cleaned up ManagementUtility.autocomplete().Phil Bazun
2017-02-21Used "0" ip shortcut for runserver example.Timothy Allen
2017-02-21Refs #26285 -- Removed postgresql's unused ↵Tim Graham
DatabaseOperations.fulltext_search_sql(). Should have been removed in 5139832398624be75ee5361a6fac9348fdb61093.
2017-02-21Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.Vytis Banaitis
Accuracy was incorrect when dates differ by a month or more.
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-20Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan
2017-02-20Refs #23151 -- Removed RegexField's unused error_message parameter.Tim Graham
Should have been removed in b6ea1961eb6816dee4370fb0ebd49dba29478db1.
2017-02-20Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the wrapped ↵Collin Anderson
widget.
2017-02-20Fixed typo in DurationField's docstring.Alexey Rogachev
2017-02-17Fixed #27308 -- Fixed BytesWarnings in the test suite.Tim Graham
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-02-17Fixed #27843 -- Fixed truncate_name() when the name contains a username.Mariusz Felisiak
2017-02-16Added tests for db.backends.utils.truncate_name().Mariusz Felisiak
2017-02-16Fixed #27828 -- Fixed a crash when subtracting Integer/DurationField from ↵Vytis Banaitis
DateField on Oracle/PostgreSQL.
2017-02-16Clarified that creating a pull request for the tutorial isn't necessary.Tim Graham
2017-02-16Fixed #27829 -- Deprecated settings.DEFAULT_CONTENT_TYPE.Tim Graham
2017-02-15Fixed #27135 -- Made index introspection return Index.suffix.Tim Graham
2017-02-15Made a sentence in default_if_none docs consistent with other template filters.Joon Hwan 김준환
2017-02-15Removed docs/internals/roles.txt.Tim Graham
It's moved to https://www.djangoproject.com/foundation/teams/.
2017-02-15Fixed #27840 -- Fixed KeyError in PasswordResetConfirmView.form_valid().Markus Holtermann
When a user is already logged in when submitting the password and password confirmation to reset a password, a KeyError occurred while removing the reset session token from the session. Refs #17209 Thanks Quentin Marlats for the report and Florian Apolloner and Tim Graham for the review.
2017-02-13Fixed #27823 -- Updated mod_wsgi example to use WSGIPythonHome.Tim Graham
2017-02-13Fixed #27820 -- Fixed RequestDataTooBig/TooManyFieldsSent crash.amalia
2017-02-13Refs #22669 -- Fixed bulk_create test if Pillow isn't installed.Vytis Banaitis
2017-02-13Added TransactionTestCase.multi_db instead of using getattr().Tim Graham
2017-02-11Refs #27656 -- Updated django.utils docstring verbs according to PEP 257.Anton Samarchyan
2017-02-11Fixed #27367 -- Doc'd and tested reversing of URLs with the same name.Robert Roskam
Thanks Reinout van Rees for contributing to the patch.
2017-02-11Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen
2017-02-11Fixed #27722 -- Reallowed using django.Template in {% include %}.Tim Graham
2017-02-11Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in ↵Tim Graham
multi-table inheritance models." This reverts commit 74a575eb7296fb04e1fc2bd4e3f68dee3c66ee0a as it causes unexpected migrations and doesn't seem to be the best solution.
2017-02-11Fixed #25978 -- Deprecated shorcuts.render_to_response().Tim Graham
2017-02-11Fixed #25524 -- Removed GISOperations.get_distance()'s handle_spheroid param.Tim Graham
2017-02-11Removed WSGIServer.server_bind() identical to parent versionClaude Paroz
The method customization was removed in 2ca00faa9137.
2017-02-10Refs #27148 -- Fixed UUIDField.to_python(None) crash.ClairePhila
Regression in 2f9861d823620da7ecb291a8f005f53da12b1e89.
2017-02-10Allow UUIDField to be None when deserializingClairePhila
2017-02-10Added multi_db=True to test cases that access the 'other' db connection.Tim Graham
Fixed a failure in the context processors tests when running in reverse on MySQL due to an extra query after refs #27683.
2017-02-09Fixed #20238 -- Added threading support to LiveServerTestCase.Nadège Michel
2017-02-09Fixed #22669 -- Fixed QuerySet.bulk_create() with empty model fields on Oracle.Mikhail Nacharov
2017-02-09Fixed #25898 -- Made test database/user creation on Oracle reraise ↵Mariusz Felisiak
unexpected errors. Thanks Shai Berger and Tim Graham for review.
2017-02-09Fixed #26551 -- Fixed negated Q() queries that span relations.François Freitag
Prevented queries from reusing trimmed joins.
2017-02-09Explained the shell's $ prefix in tutorial 1.Tim Graham
Thanks Luke Sneeringer for the suggestion.
2017-02-09Fixed #26005 -- Fixed some percent decoding cases in uri_to_iri().Chronial
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-02-09Refs #23919 -- Removed an used block in ExceptionReporter.get_traceback_data().Tim Graham
The test from refs #20368 only runs this block on Python 2.
2017-02-09Fixed #27822 -- Replaced deprecated cx_Oracle types in ↵Mariusz Felisiak
DatabaseIntrospection.data_types_reverse.