| Age | Commit message (Collapse) | Author |
|
|
|
Backport of 05ed7104c0bc069352b2cee85ab918e48ee73cbe from master
|
|
Backport of 1c2c6f1b51a540bddc7ae95f4d1213688411ca44 from master
|
|
django.contrib.auth.models.User docs.
Backport of 505b7b616320b8d5bbc83d0dbbb3aec3a58ba0c9 from master
|
|
Backport of b28be08cac1f7cde332ca43db65bb733fa3f9bf5 from master
|
|
Backport of 201431915925f63da6303dd21ad11088bb004382 from master
|
|
Avoid partial string construction and make use of ``ngettext`` to show
example of how to handle plural variants with translations. Also make
use of ``messages.SUCCESS`` to highlight customizing the style of the
message - in this case it better fits what the message is conveying.
Backport of 058b38b43ea4726be2914ecc967b8fb1da47d995 from master
|
|
Backport of f1a808a5025b63715d1034af2b96a6a5241d29e9 from master.
|
|
Backport of 69e2cd6fed40f3ecf767609b80ad31f288446e48 from master
|
|
Backport of 1cdfe8d91215eefaa18c398069dd9c6879a9511d from master.
|
|
Use re_path() pattern with the regex used before original regression in
df41b5a05d4e00e80e73afe629072e37873e767a.
Regression in a0916d7212aaae634f4388d47d8717abc2cd9036.
Backport of 8f2a6c76d19e4010c4683b20ed7f1eb4b07c17eb from master
|
|
APPEND_SLASH.
Regression in df41b5a05d4e00e80e73afe629072e37873e767a.
Backport of a0916d7212aaae634f4388d47d8717abc2cd9036 from master
|
|
Backport of 30ca66eadd1135d220ae1f0570bb0244c26b9d29 from master
|
|
Backport of 3bd29a8a973e2bb11b00666458344aeab5684a39 from master
|
|
Backport of 5978de2ec0787c8912349a72a7143c33f62b980b from master
|
|
Backport of 0ac8ac8b0dece68072548900e992fc31493154c1 from master
|
|
Backport of 958977f662d878c299b3599282f005c3469dbef9 from master
|
|
Backport of 5e00bd1f7717149573df9607b848297a520881d3 from master
|
|
Backport of d216e67b0cf7b161c8f532ca742e87eb8cf98f4b from master
|
|
Support was added in 65129aac07022f23afa1df7ec7fad2216634cb38.
Backport of 85c598900772a00aee2ad4a20e3f3854f1c87fbd from master
|
|
ModelAdmin.actions docs.
The queryset argument is already filtered, and request.POST doesn't
contain all selected objects when "Select All" is used.
Backport of e651b3095c950627b1eed1527f2bb011ddad03de from master
|
|
contrib.sites docs.
Backport of b991eefd3a9fa4da4eb46fddcb36cf1e8b5862e9 from master
|
|
Backport of 1c5ec221a44fc9ce1585fc1f94830957df4322e7 from master
|
|
lookups.
Backport of 440603a4bc0dc4f0b489489e80dcbab0ca736d23 from master
|
|
documentation.
Support was added in 15715bf.
Backport of 5becb36a79a0c31c7cc9e76237239ebd0fdda18d from master
|
|
when QuerySet.select_related() was already called.
Backport of e3f647f4d5fc414f8cb7ab58df5e61a19908c63f from master
|
|
Backport of 7b3c06cd72e691ffd932ccce338701c37297a415 from master
|
|
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.
|
|
Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
|
|
|
|
|
|
operations for PostgreSQL.
Thanks to Simon Charettes for review.
Co-Authored-By: Daniel Tao <daniel.tao@gmail.com>
|
|
Removed reference to custom builds, feature removed in
https://github.com/openlayers/openlayers/commit/8e6b3bba994f5908e51c492ac314240863178789.
|
|
Removing the lawrence journal flat page examples because one is no longer a web page (404) and the other is no longer served by Django: https://www.reddit.com/r/django/comments/8v0fpb/the_lawrence_journalworld_where_django_was/
|
|
|
|
library path.
Thanks Nikita Krokosh for the initial patch.
|
|
Thanks to Nick Pope and Mariusz Felisiak for review.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
|
|
|
|
|
|
Equivalent note for PermissionsMixin was added in d33864ed138f65070049a3ac20ee98e03a1442b9.
|
|
|
|
|
|
|
|
filesizeformat filters.
intword and filesizeformat passed floats to ngettext() which is
deprecated in Python 3.7. The rationale for this warning is documented
in BPO-28692: https://bugs.python.org/issue28692.
For filesizeformat, the filesize value is expected to be an int -- it
fills %d string formatting placeholders. It was likely coerced to a
float to ensure floating point division on Python 2. Python 3 always
does floating point division, so coerce to an int instead of a float to
fix the warning.
For intword, the number may contain a decimal component. In English, a
decimal component makes the noun plural. A helper function,
round_away_from_one(), was added to convert the float to an integer that
is appropriate for ngettext().
|
|
|
|
Added to mirror the existing User.get_group_permissions().
|
|
|
|
|
|
parent object.
|
|
Updated the Spatialite installation instruction to refer to the latest
available version from KyngChaos, as Gaia-SINS does not provide MacOS
binaries anymore.
|