summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2016-06-22[1.10.x] Fixed typo in docs/topics/logging.txtJohn-Scott Atlakson
Backport of 9a54face2572d67c7a31dc967bfb66af6e98165c from master
2016-06-21[1.10.x] Refs #21379, #26719 -- Moved username normalization to ↵Tim Graham
AbstractBaseUser. Thanks Huynh Thanh Tam for the initial patch and Claude Paroz for review. Backport of 39805686b364358af725b695924a5a6dfa7f5302 from master
2016-06-20[1.10.x] Fixed typo in docs/topics/db/managers.txtTim Graham
Backport of 00551c3eff5cedcb9cc7ce5af97b948d62713d97 from master
2016-06-17[1.10.x] Added urlpatterns variable in docs/topics/http/urls.txt.Trey Hunner
Backport of 91e9be45ed5ad3b0c3de8890a4fcdbb68836856f from master
2016-06-17[1.10.x] Refs #26601 -- Improved backwards-compatibility of DEP 5 middleware ↵Carl Meyer
exception handling. Backport of 7d1b69dbe7f72ac04d2513f0468fe2146231b286 from master
2016-06-16[1.10.x] Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
Backport of 4f336f66523001b009ab038b10848508fd208b3b from master
2016-06-15[1.10.x] Fixed broken links in docs and comments.Ville Skyttä
Backport of 96f97691ad5e1483263cea3bb4e4021b4c8dcc41 from master
2016-06-14[1.10.x] Fixed #26754 -- Documented django.template.context_processors.tzVille Skyttä
Backport of 7003174fec188bd5a21e3d62bd5e13e80f6f329c from master
2016-06-09[1.10.x] Fixed #21588 -- Corrected handler initialization in "modifying ↵Berker Peksag
upload handlers" example. Backport of 8f50ff5b15a742f345dade0848a3fbbf2aff629d from master
2016-06-07[1.10.x] Fixed #26704 -- Documented DjangoJSONEncoder.Tommy Beadle
Backport of 729b9452b19b031d3817821128a115d5b2d5caed from master
2016-06-04[1.10.x] Fixed #25127 -- Documented how to organize models in a package.Evan Palmer
Backport of 84d8d1d7151a4ee70ae35037d37f76a40d18da64 from master
2016-06-04[1.10.x] Used snippet directive in file upload example.Berker Peksag
Backport of b9c04801d4b9ad37bd062cbca1a521eaf4047aa8 from master
2016-06-03[1.10.x] Fixed #26604 -- Added a multiple file upload example to ↵Berker Peksag
topics/http/file-uploads.txt. Backport of 54febdb8be7c9793caae9c781f4d6b7cbbdcd900 from master
2016-06-03[1.10.x] Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
Backport of 4a4d7f980e2a66756e1e424f7648dcd28ff765b7 from master
2016-06-02[1.10.x] Fixed #26337 -- Added i18n note about using a non-English base languageClaude Paroz
Thanks Cristiano Coelho for the report and Tim Graham for the review. Backport of f6fefbf8cb from master.
2016-05-31[1.10.x] Fixed #26503 -- Removed an outdated example from session docs.Berker Peksag
Backport of 698c8dfc2a5c5865a8bb163c1ae70b75d53e6415 from master
2016-05-28[1.10.x] Refs #22634 -- Removed unneeded app_label in custom session engine ↵Tim Graham
example. Backport of cc0d1eaaea40dc9d784c6974be1ce631a2087c11 from master
2016-05-27[1.10.x] Fixed #26635 -- Clarified Argon2PasswordHasher's memory_cost ↵Bas Westerbaan
differs from command line utility. Backport of 9407cc966b02e5ef69b7f561a6b972aff5d9c2e0 from master
2016-05-27[1.10.x] Fixed typo in docs/topics/forms/modelforms.txtSergey Fedoseev
Backport of 26794f6657a9d201d47a0748a449a94ad5d7c66e from master
2016-05-25[1.10.x] Added imports to docs/topics/db/aggregation.txt example.MariKiev
Backport of 30d110ef43d8a3c50ea8ec4e4fe49bd2bb859530 from master
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
2016-05-16Refs #21379 -- Normalized unicode username inputsClaude Paroz
2016-05-16Fixed #24305 -- Allowed overriding fields on abstract models.Aron Podrigal
Fields inherited from abstract base classes may be overridden like any other Python attribute. Inheriting from multiple models/classes with the same attribute name will follow the MRO.
2016-05-14Refs #26021 -- Used hanging indentation in some doc examples.Tim Graham
2016-05-14Used 'classmethod' annotation in docs/topics/auth/customizing.txtTim Graham
2016-05-13Fixed typo in docs/topics/db/models.txtTim Graham
2016-05-13Fixed #24938 -- Added PostgreSQL trigram support.Matthew Somerville
2016-05-12Fixed typo in docs/topics/conditional-view-processing.txteltronix
2016-05-11Refs #26052 -- Corrected a sentence for conditional_content_removal() removal.Tim Graham
2016-05-08Fixed #26483 -- Updated docs.python.org links to use Intersphinx.Tim Graham
2016-05-07Fixed #26566 -- Rewrote an incorrect Cache-Control example.Vasiliy Faronov
2016-05-07Fixed a typoMatthias K
2016-05-07Fixed #26595 -- Removed unnecessary save() in one_to_one.txt example.shiblystory
2016-05-06Fixed syntax highlighting in docs/topics/cache.txtTim Graham
2016-05-03Normalized "an SQL" spelling.Ville Skyttä
2016-05-03Clarified that setting names must be uppercase.David D Lowe
2016-05-03Fixed #26567 -- Updated references to obsolete RFC2616.Vasiliy Faronov
Didn't touch comments where it wasn't obvious that the code adhered to the newer standard.
2016-04-28Fixed #26554 -- Updated docs URLs to readthedocs.ioTim Graham
2016-04-27Refs #25136 -- Fixed nonexistent field reference in aggregation topic guide.Tim Graham
Thanks Ankush Thakur for the report and Simon for the review.
2016-04-27Fixed typo in docs/topics/testing/tools.txteltronix
2016-04-26Fixed typo in docs/topics/testing/tools.txteltronix
2016-04-22Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn
Adds a reasonably feature complete implementation of full text search using the built in PostgreSQL engine. It uses public APIs from Expression and Lookup. With thanks to Tim Graham, Simon Charettes, Josh Smeaton, Mikey Ariel and many others for their advice and review. Particular thanks also go to the supporters of the contrib.postgres kickstarter.
2016-04-21Fixed #22383 -- Added support for HTML5 required attribute on required form ↵Jon Dufresne
fields.
2016-04-20Fixed incorrect rendered widget in forms example.Jon Dufresne
2016-04-20Fixed #26520 -- Fixed a regression where SessionBase.pop() didn't return a ↵Tobias Kroenke
KeyError.
2016-04-18Fixed typo in docs/topics/class-based-views/mixins.txteltronix
2016-04-18Fixed #26514 -- Documented that User.refresh_from_db() doesn't clear the ↵Tim Graham
permission cache.