summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2016-08-09Fixed #27041 -- Documented that built-in middleware are compatible with ↵Ville Skyttä
MIDDLEWARE and MIDDLEWARE_CLASSES.
2016-08-05Edited docs of test.utils.setup/teardown_test_environment().Chris Jerdonek
2016-08-05Edited multi-db topic guide for grammar and clarity.Liz Lemon
2016-08-04Fixed #26981 -- Added DiscoverRunner.get_test_runner_kwargs().Chris Jerdonek
2016-07-28Fixed #26929 -- Deprecated extra_context parameter of ↵Andrew Nester
contrib.auth.views.logout_then_login().
2016-07-28Removed a blank line per isort and a trailing whitespace.Tim Graham
2016-07-25Fixed #26925 -- Linked aggregation ordering topic from Meta.ordering docs.Tim Graham
2016-07-22Fixed #18348 -- Documented SesssionStore.create()Preetham Nosum
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-07-14Fixed #26656 -- Added duration (timedelta) support to DjangoJSONEncoder.Will Hardy
2016-07-12Fixed #26831 -- Documented session data must be JSON encodable for ↵Md. Sadaf Noor
JSONSerializer.
2016-07-06Fixed capitalization of "URL pattern".Tim Graham
2016-07-06Fixed typo in docs/topics/class-based-views/generic-display.txtTaylor Edmiston
2016-07-04Fixed a typo in auth docs.Jiang Haiyun
2016-07-02Fixed #26832 -- Added translated language name on the get_language_info ↵Leila20
documentation
2016-07-01Added parallel test running to "Speeding up the tests" docs.Harry Moreno
2016-06-28Fixed #24694 -- Added support for context_processors to Jinja2 backend.Berker Peksag
2016-06-28Fixed #15091 -- Allowed passing custom encoder to JSON serializer.Berker Peksag
2016-06-27Added missing trailing '$' to url() patterns in docs.Ramiro Morales
2016-06-24Fixed #26719 -- Normalized email in AbstractUser.clean().Bang Dao + Tam Huynh
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-23Fixed #26791 -- Replaced LiveServerTestCase port ranges with binding to port 0.Tim Graham
2016-06-22Fixed typo in docs/topics/logging.txtJohn-Scott Atlakson
2016-06-21Refs #21379, #26719 -- Moved username normalization to AbstractBaseUser.Tim Graham
Thanks Huynh Thanh Tam for the initial patch and Claude Paroz for review.
2016-06-20Refs #26666 -- Added ALLOWED_HOSTS validation when running tests.Tobias McNulty
Also used ALLOWED_HOSTS to check for external hosts in assertRedirects().
2016-06-20Fixed typo in docs/topics/db/managers.txtTim Graham
2016-06-17Added urlpatterns variable in docs/topics/http/urls.txt.Trey Hunner
2016-06-17Refs #26601 -- Improved backwards-compatibility of DEP 5 middleware ↵Carl Meyer
exception handling.
2016-06-16Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
2016-06-15Fixed broken links in docs and comments.Ville Skyttä
2016-06-14Fixed #26754 -- Documented django.template.context_processors.tzVille Skyttä
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
Previously, empty values were saved as strings.
2016-06-09Fixed #21588 -- Corrected handler initialization in "modifying upload ↵Berker Peksag
handlers" example.
2016-06-07Fixed #26704 -- Documented DjangoJSONEncoder.Tommy Beadle
2016-06-04Fixed #25127 -- Documented how to organize models in a package.Evan Palmer
2016-06-04Fixed #26628 -- Changed CSRF logger to django.security.csrf.Holly Becker
2016-06-04Used snippet directive in file upload example.Berker Peksag
2016-06-03Fixed #26604 -- Added a multiple file upload example to ↵Berker Peksag
topics/http/file-uploads.txt.
2016-06-03Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
2016-06-02Fixed #26337 -- Added i18n note about using a non-English base languageClaude Paroz
Thanks Cristiano Coelho for the report and Tim Graham for the review.
2016-05-31Fixed #26503 -- Removed an outdated example from session docs.Berker Peksag
2016-05-28Refs #22634 -- Removed unneeded app_label in custom session engine example.Tim Graham
2016-05-27Fixed #26635 -- Clarified Argon2PasswordHasher's memory_cost differs from ↵Bas Westerbaan
command line utility.
2016-05-27Fixed typo in docs/topics/forms/modelforms.txtSergey Fedoseev
2016-05-25Added imports to docs/topics/db/aggregation.txt example.MariKiev
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-19Fixed #20869 -- made CSRF tokens change every request by salt-encrypting themShai Berger
Note that the cookie is not changed every request, just the token retrieved by the `get_token()` method (used also by the `{% csrf_token %}` tag). While at it, made token validation strict: Where, before, any length was accepted and non-ASCII chars were ignored, we now treat anything other than `[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for backwards-compatibility, are accepted and replaced by 64-char ones). Thanks Trac user patrys for reporting, github user adambrenecki for initial patch, Tim Graham for help, and Curtis Maloney, Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne for reviews.
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
2016-05-17Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify ↵Loïc Bistuer
models' default and base managers. This deprecates use_for_related_fields. Old API: class CustomManager(models.Model): use_for_related_fields = True class Model(models.Model): custom_manager = CustomManager() New API: class Model(models.Model): custom_manager = CustomManager() class Meta: base_manager_name = 'custom_manager' Refs #20932, #25897. Thanks Carl Meyer for the guidance throughout this work. Thanks Tim Graham for writing the docs.
2016-05-17Fixed #20932, #25897 -- Streamlined manager inheritance.Loïc Bistuer