summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2020-01-30Added tests for signing non-string values and updated docs.Claude Paroz
2020-01-29Fixed #31212 -- Updated psycopg links to HTTPS and new location.Jon Dufresne
2020-01-27Refs #30997 -- Removed HttpRequest.is_ajax() usage.Claude Paroz
2020-01-24Refs #30997 -- Added HttpRequest.accepts().Claude Paroz
2020-01-24Fixed #31184 -- Clarified URL matching behavior in URL dispatcher docs.Roy Smith
2020-01-16Fixed #30765 -- Made cache_page decorator take precedence over max-age ↵Flavio Curella
Cache-Control directive.
2020-01-15Refs #29998 -- Corrected auto-created OneToOneField parent_link in MTI docs.Mariusz Felisiak
2020-01-09More accurate terminology ("logger" instead of "logging handler") in logging ↵Kal Sze
documentation.
2020-01-09Fixed #30995 -- Allowed converter.to_url() to raise ValueError to indicate ↵Jack Cushman
no match.
2020-01-08Clarified that ValueError raised by converter.to_python() means no match ↵Jack Cushman
unless another URL pattern matches.
2020-01-07Fixed #31103 -- Improved pagination topic documentation.Mark Bailey
2020-01-06Removed "Don't do that" from docs and error messages.Adam Johnson
It's slightly aggressive and doesn't explain itself.
2019-12-23Removed unnecessary code-block directives in various docs.Jon Dufresne
2019-12-20Added example of assertNumQueries() with "using" kwarg in testing topics docs.Garry Polley
2019-12-19Refs #28954 -- Remove remaining Jython documentation.Nick Pope
There is still no further progress on Jython 3 since support for Jython was stripped in Django 2.0. The developers experimenting with Jython 3 have stated that they would need to start from scratch, so it doesn't look as though it will materialize for years to come. Python 2 and Django 1.11, the last version to support Python 2.7, will both be end-of-life before Django 3.1 is released. We should no longer instruct users to use an unsupported version of Django.
2019-12-18Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags.Mike Hansen
2019-12-18Corrected some typos in documentation.Hasan Ramezani
2019-12-12Fixed #31069, Refs #26431 -- Doc'd RegexPattern behavior change in passing ↵Hasan Ramezani
optional named groups in Django 3.0.
2019-12-11Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵Jon Dufresne
<script> tags.
2019-12-06Fixed #31061 -- Ignored positional args in django.urls.resolve() when all ↵Mariusz Felisiak
optional named parameters are missing. Regression in 76b993a117b61c41584e95149a67d8a1e9f49dd1. Thanks Claude Paroz for the report and Carlton Gibson for reviews.
2019-12-04Fixed #20456 -- Added example of directly testing CBVs in topics docs.Felipe Lee
2019-12-04Removed leftover word in CBV mixins docs.Claude Paroz
2019-12-03Fixed #31056 -- Allowed disabling async-unsafe check with an environment ↵Andrew Godwin
variable.
2019-12-03Refs #30451 -- Doc'd asynchronous support and async-safety.Andrew Godwin
2019-12-03Fixed typo in topics docsClaude Paroz
2019-11-26Used :ticket: role in all tickets links.Sergey Fedoseev
2019-11-20Fixed #31008 -- Fixed typos in docs/topics/logging.txt.Mariusz Felisiak
2019-11-20Fixed #27164 -- Fixed an example of using routers in multiple databases docs.Caio Ariede
Make sure that AuthRouter includes ContentType in the same database.
2019-11-19Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede
2019-11-18Fixed #30988 -- Deprecated the InvalidQuery exception.Simon Charette
It was barely documented without pointers at its defining location and was abused to prevent misuse of the QuerySet field deferring feature.
2019-11-14Fixed #30759 -- Made cache.delete() return whether it succeeded.daniel a rios
Thanks Simon Charette for the review.
2019-11-12Fixed #30828 -- Added how to remove/insert many-to-many relations in bulk to ↵David Foster
the database optimization docs.
2019-11-11Fixed typo in docs/topics/files.txt.Mariusz Felisiak
2019-11-08Fixed #30948 -- Changed packaging to use declarative config in setup.cfg.Jon Dufresne
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
2019-11-08Fixed #30955 -- Doc'd that only concrete base models are stored in ↵Shipeng Feng
historical models bases. Abstract models are removed from bases when generating historical model state since 6436f1fad9ce51f18735106ac75aeea3d6d1f310.
2019-11-07Replaced 'n_' prefix with 'number_of_' in docs/topics/db/queries.txt.René Fleschenberg
2019-11-06Refs #29983 -- Added pathlib.Path support to the file email backend.Jon Dufresne
2019-11-04Refs #30947 -- Changed tuples to lists in model Meta options examples in docs.Mariusz Felisiak
Follow up to 97d3321e89c8d4434927bdbc308db1ccffa99d3b.
2019-11-04Updated list of field types conversions in ModelForm docs.Adam Johnson
2019-10-30Corrected error message in Many-to-many relationships docs.Mariusz Felisiak
2019-10-30Fixed #30917 -- Clarified formsets topic documentation.Ken Whitesell
2019-10-29Fixed #13750 -- Clarified need to reopen models.ImageField.image file to ↵Hasan Ramezani
access raw image data.
2019-10-29Fixed typo in docs/topics/files.txt.Mariusz Felisiak
2019-10-28Documented the order in which signal receivers are called.Adam Johnson
2019-10-18Fixed #27391 -- Implemented SimpleTestCase.debug().Pavel Savchenko
debug() should bubbled up exceptions if occurring in test, but behave the same as run() when no exceptions occurred.
2019-10-14Refs #26207 -- Removed obsolete note about slow constructing a model with ↵Simon Charette
deferred fields. This is not true since 7f51876 removed the necessity of creating proxy model classes at runtime for each deferred field sets.
2019-10-10Fixed #23755 -- Added support for multiple field names in the no-cache ↵Flavio Curella
Cache-Control directive to patch_cache_control(). https://tools.ietf.org/html/rfc7234#section-5.2.2.2
2019-10-09Fixed #11097 -- Added note about parent link fields in formsets for ↵Mac Chapman
multi-table inheritance models.
2019-10-08Fixed #28790 -- Doc'd how to avoid running certain test classes in parallel.Caio Ariede
2019-09-27Fixed #30597 -- Clarified how to unapply migrations.David Vaz