summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2019-12-23[3.0.x] Removed unnecessary code-block directives in various docs.Jon Dufresne
Backport of 5e00bd1f7717149573df9607b848297a520881d3 from master
2019-12-20[3.0.x] Added example of assertNumQueries() with "using" kwarg in testing ↵Garry Polley
topics docs. Backport of 0b698eaea611d3bafa86d6d81d9203b482600ccb from master
2019-12-19[3.0.x] Refs #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. Backport of d8b6a76bc745b21c6cf2b29c220a91bcae7fd3d7 from master
2019-12-18[3.0.x] Corrected some typos in documentation.Hasan Ramezani
Backport of 70d95682b1be6a85abdeaea0205a897f7530f8bc from master
2019-12-12[3.0.x] Fixed #31069, Refs #26431 -- Doc'd RegexPattern behavior change in ↵Hasan Ramezani
passing optional named groups in Django 3.0. Backport of 9736137cdc4b7528a0aca17415dc9798660eed81 from master
2019-12-06[3.0.x] Fixed #31061 -- Ignored positional args in django.urls.resolve() ↵Mariusz Felisiak
when all optional named parameters are missing. Regression in 76b993a117b61c41584e95149a67d8a1e9f49dd1. Thanks Claude Paroz for the report and Carlton Gibson for reviews. Backport of 82a88d2f48e13ef5d472741d5ed1c183230cfe4c from master
2019-12-04[3.0.x] Fixed #20456 -- Added example of directly testing CBVs in topics docs.Felipe Lee
Backport of a2e96f7969059fb4e621a1cd591fbdd0d4deae2e from master
2019-12-04[3.0.x] Removed leftover word in CBV mixins docs.Claude Paroz
Backport of d83b585e5cc2b6dec49982670b86d6b4dd339342 from master
2019-12-03[3.0.x] Fixed #31056 -- Allowed disabling async-unsafe check with an ↵Andrew Godwin
environment variable. Backport of c90ab30fa1305481024b9c3c50b5a6ed6cd9a2f5 from master
2019-12-03[3.0.x] Refs #30451 -- Doc'd asynchronous support and async-safety.Andrew Godwin
Backport of 635a3f8e6e0303e8a87586ef6be4ab0cc01d7c0d from master
2019-12-03[stable/3.0.x] Fixed typo in topics docsClaude Paroz
Backport of b92d101bd868aa460d16d1196a798df7e5c1ea33 from master.
2019-11-26[3.0.x] Used :ticket: role in all tickets links.Sergey Fedoseev
Backport of abc51d44afcb8482c64c0bb8c1022f11e7eb2bbb from master
2019-11-20[3.0.x] Fixed #31008 -- Fixed typos in docs/topics/logging.txt.Mariusz Felisiak
Backport of 3e5b349535f011a51dc308898924786143000631 from master
2019-11-20[3.0.x] Fixed #27164 -- Fixed an example of using routers in multiple ↵Caio Ariede
databases docs. Make sure that AuthRouter includes ContentType in the same database. Backport of 608e06023e6eaf75f744134a0fd203853260e616 from master
2019-11-12[3.0.x] Fixed #30828 -- Added how to remove/insert many-to-many relations in ↵David Foster
bulk to the database optimization docs. Backport of 6a04e69e686cf417b469d7676f93c2e3a9c8d6a3 from master
2019-11-11[3.0.x] Fixed typo in docs/topics/files.txt.Mariusz Felisiak
Backport of 08c0d8b16bb7e79074bc9c8ab4f0db97a94d336a from master
2019-11-08[3.0.x] Fixed #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. Backport of 8058d9d7adb189fec75a4b57565f225996c7b22c from master
2019-11-07[3.0.x] Replaced 'n_' prefix with 'number_of_' in docs/topics/db/queries.txt.René Fleschenberg
Backport of 367634f976ab43db93321bf4eb898449b670e291 from master
2019-11-05[3.0.x] Refs #30947 -- Changed tuples to lists in model Meta options ↵Mariusz Felisiak
examples in docs. Follow up to 97d3321e89c8d4434927bdbc308db1ccffa99d3b. Backport of e5cacb1f47cb3a2943bbc7685a630c84503b0d1b from master
2019-11-04[3.0.x] Updated list of field types conversions in ModelForm docs.Adam Johnson
Backport of 5a856669bf0574f612eea89e72a6b0a3d2cb80d9 from master
2019-10-30[3.0.x] Corrected error message in Many-to-many relationships docs.Mariusz Felisiak
Backport of a370dbd9543703677697e80701b5dbec8c8e7da7 from master
2019-10-30[3.0.x] Fixed #30917 -- Clarified formsets topic documentation.Ken Whitesell
Backport of 4c762588ff6748a9a9bad111894fd418c43b74a9 from master
2019-10-29[3.0.x] Fixed #13750 -- Clarified need to reopen models.ImageField.image ↵Hasan Ramezani
file to access raw image data. Backport of f57e174fa61e4c31213f6d0033fb9d647b463626 from master
2019-10-29[3.0.x] Fixed typo in docs/topics/files.txt.Mariusz Felisiak
Backport of bf7b3e2750e3392d112b34e076ee1a77c8adbe77 from master
2019-10-28[3.0.x] Documented the order in which signal receivers are called.Adam Johnson
Backport of ab0fd3f58f751859cc7c5260decf0acca26513bf from master
2019-10-14[3.0.x] Refs #26207 -- Removed obsolete note about slow constructing a model ↵Simon Charette
with deferred fields. This is not true since 7f51876 removed the necessity of creating proxy model classes at runtime for each deferred field sets. Backport of 35396a7f243eceec42cc90725ab573a7d9ac3b4c from master
2019-10-09[3.0.x] Fixed #11097 -- Added note about parent link fields in formsets for ↵Mac Chapman
multi-table inheritance models. Backport of 0b7378db1fdd7bfc7b78089811b3abb722c4ba95 from master
2019-10-08[3.0.x] Fixed #28790 -- Doc'd how to avoid running certain test classes in ↵Caio Ariede
parallel. Backport of dafdfd6a60638c4edcca7c4e65d11c0af654d759 from master
2019-09-27[3.0.x] Fixed #30597 -- Clarified how to unapply migrations.David Vaz
Backport of 45554fd5c5c6a536db3ce70d78646d3dc398cf08 from master
2019-09-25[3.0.x] Documented admonition on when to use custom signalsAdam Johnson
Thanks Cesar Canassa for the suggestion and Aymeric Augustin for review. Backport of 566fca14b3e1406f918898de5bb2b2382a44edaf from master
2019-09-24[3.0.x] Refs #27910 -- Doc'd support for enumeration types serialization in ↵Mariusz Felisiak
migrations. Backport of aad46ee274b0e294ac055cc199e6595de4ef4164 from master
2019-09-24[3.0.x] Refs #30350 -- Doc'd support for range serialization in migrations.Mariusz Felisiak
Backport of bc46e386c7aa496642d3ffc9e4f56ae5a46417a7 from master
2019-09-24[3.0.x] Updated the default cache key transformation in documentation.Ryan Nowakowski
Follow up to 6c69de80bdcd2744bc64cb933c2d863dd5e74a33. Backport of 3f141719a198983a41840e3c2ea542f87c92e4c1 from master
2019-09-24[3.0.x] Refs #26601 -- Used new-style middlewares in documentation.Claude Paroz
Backport of d71497bb249a2c3ffec41e99089f5ae8e575f2d3 from master
2019-09-09Fixed #29406 -- Added support for Referrer-Policy header.Nick Pope
Thanks to James Bennett for the initial implementation.
2019-09-06Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze
involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
2019-09-04Fixed #27910 -- Added enumeration helpers for use in Field.choices.Shai Berger
These classes can serve as a base class for user enums, supporting translatable human-readable names, or names automatically inferred from the enum member name. Additional properties make it easy to access the list of names, values and display labels. Thanks to the following for ideas and reviews: Carlton Gibson, Fran Hrženjak, Ian Foote, Mariusz Felisiak, Shai Berger. Co-authored-by: Shai Berger <shai@platonix.com> Co-authored-by: Nick Pope <nick.pope@flightdataservices.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2019-09-04Fixed #29714 -- Allowed using ExceptionReporter subclass with AdminEmailHandler.Nasir Hussain
2019-08-29Fixed #18763 -- Added ModelBackend/UserManager.with_perm() methods.Berker Peksag
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
2019-08-29Removed unneeded * markers from parameter names.Carlton Gibson
2019-08-29Fixed #30066 -- Enabled super user creation without email and passworddaniel a rios
2019-08-26Fixed #29019 -- Added ManyToManyField support to REQUIRED_FIELDS.Hasan Ramezani
2019-08-21Fixed broken links and redirects in documentation.François Freitag
Removed reference to custom builds, feature removed in https://github.com/openlayers/openlayers/commit/8e6b3bba994f5908e51c492ac314240863178789.
2019-08-20Fixed #30695 -- Used relative path in default_storage docs example.Harrison88
2019-08-20Corrected typo in search docs. (#11673)Dan Swain
2019-08-02Fixed #30661 -- Added models.SmallAutoField.Nick Pope
2019-07-29Fixed #30656 -- Added QuerySet.bulk_update() to the database optimization docs.daniel a rios
2019-07-29Refs #30656 -- Reorganized bulk methods in the database optimization docs.daniel a rios
2019-07-23Fixed typo in docs/topics/http/sessions.txt.terminator14
2019-07-18Fixed #30648 -- Removed unnecessary overriding get_context_data() from ↵Davit Gachechiladze
mixins with CBVs docs.