summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2017-12-06Fixed #28886 -- Updated prefix for example django.contrib.auth.urls URLs.Tim Graham
2017-12-06Fixed #28883 -- Doc'd that the uuid URL path converter matches lowercase ↵Tim Graham
only letters.
2017-12-04Fixed typo in docs/topics/testing/advanced.txt. (#9416)Sergey Fedoseev
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-23Linked to prefetch_related_objects func in DB optimization docs.Luke Plant
2017-11-22Fixed typo in docs/topics/forms/media.txt.Hyunwoo Park
2017-11-21Clarified who the AdminEmailHandler emails.Frédéric Massart
2017-11-18Fixed #28810 -- Replaced '%' style logging formatting with str.format() style.Chris Lamb
2017-11-16Fixed #28802 -- Fixed typo in docs/topics/auth/default.txt.Tim Graham
2017-11-07Fixed #28770 -- Warned that quoting a placeholder in a raw SQL string is unsafe.Tim Graham
Thanks Hynek Cernoch for the report and review.
2017-11-07Fixed typo in docs/topics/db/aggregation.txt.Tim Graham
2017-11-01Fixed #28745 -- Added first and last page links to paginator docs example.Sam Morrow
2017-11-01Described how querysets are protected from SQL injection in more detail.Tim Graham
2017-11-01Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie ↵Tim Graham
examples.
2017-10-30Fixed 'a'/'an' mix-ups in docs.Ville Skyttä
2017-10-28Fixed #28131 -- Corrected examples of using attribute lookups on the "perms" ↵Botond Beres
template variable.
2017-10-25Fixed #28737 -- Clarified {% cache %} tag's handling of arguments.Tim Graham
Thanks Tom Aratyn for the report.
2017-10-25Suggested LoginView rather than @login_required as an alternative to ↵Tim Graham
authenticate().
2017-10-13Removed incorrect reference to ModelChoiceField in Field.choices docs.LeeHanYeong
2017-10-03Fixed #28584 -- Dropped support for SQLite < 3.7.15.Tim Graham
2017-09-29Fixed #28653 -- Added missing ForeignKey.on_delete argument in docs.Stefan Schneider
2017-09-29Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.Stefan Schneider
2017-09-25Fixed #28627 -- Added slug converter to some path() examples in docs.Christopher Schäpers
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-09-22Refs #25187 -- Required the authenticate() method of authentication backends ↵Tim Graham
to have request as the first positional argument. Per deprecation timeline.
2017-09-22Refs #27175 -- Removed exception silencing from the {% include %} template tag.Tim Graham
Per deprecation timeline.
2017-09-22Refs #20892 -- Removed support for passing pylibmc behavior settings as ↵Tim Graham
top-level attributes of CACHES['OPTIONS']. Per deprecation timeline.
2017-09-22Refs #26929 -- Removed extra_context parameter of ↵Tim Graham
contrib.auth.views.logout_then_login(). Per deprecation timeline.
2017-09-22Refs #17209 -- Removed login/logout and password reset/change function-based ↵Tim Graham
views. Per deprecation timeline.
2017-09-21Refs #28595 -- Added a hook to add execute wrappers for database queries.Shai Berger
Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak, Michael Manfre, and Tim Graham for discussion and review.
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-09-19Fixed typo in docs/topics/cache.txt.tk
2017-09-08Removed obsolete doc references to javascript_catalog.Samir Shah
2017-09-06Fixed #27318 -- Made cache.set_many() return the list of failed keys.Olivier Tabone
2017-09-06Fixed #28032 -- Added Paginator.get_page().Sami J. Lehtinen
Moved boilerplate from docs to a method.
2017-09-04Fixed #28479 -- Doc'd that transaction rollback doesn't revert model state.Jonatas CD
2017-09-02Fixed #28332 -- Fixed diamond inheritence example in docs.Jeremy Satterfield
2017-08-30Fixed #28548 -- Replaced 'middlewares' with 'middleware' in docs.Jkrzy
2017-08-22Fixed #27931 -- Clarified the meaning of "django catch-all logger."Kim DoHyeon
2017-08-22Added "test --keepdb" to testing speedup docs.Harry Moreno
2017-08-21Fixed typo in documented number of logging filters.Adrien Brunet
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-12Fixed #23546 -- Added kwargs support for CursorWrapper.callproc() on Oracle.Mariusz Felisiak
Thanks Shai Berger, Tim Graham and Aymeric Augustin for reviews and Renbi Yu for the initial patch.
2017-08-11Fixed #28252 -- Corrected docs for default file extensions of makemessages.Jonatas CD
2017-08-10Fixed #23766 -- Doc'd CursorWrapper.callproc().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-07-26Fixed #28363 -- Allowed naming the migration generated by squashmigrations.Melvyn Sopacua
2017-07-20Fixed #28377 -- Made combining form Media retain relative asset order.Johannes Hoppe
Thanks Florian Apolloner, Mariusz Felisiak, and Tim Graham for reviews.
2017-07-18Removed unneeded right quotes in docs to fix spelling errors.Tim Graham
A regression in pyenchant caused a problem: https://github.com/rfk/pyenchant/issues/93
2017-07-11Fixed #28352 -- Corrected QuerySet.values_list() return type in docs examples.Irindu Indeera
2017-07-06Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context ↵Bruno Alla
in as_view().