1
0
mirror of https://github.com/django/django.git synced 2025-04-09 15:59:41 +00:00

4117 Commits

Author SHA1 Message Date
Chris Jerdonek
d200069b15 [2.2.x] Refs #30565 -- Doc'd HttpResponse.close() method.
Backport of 533311782fd0c974208490ec9d11da3bbe179dea from master
2019-06-20 11:49:52 +02:00
Swat009
c3a0f76d11 [2.2.x] Fixed #30547 -- Doc'd how Meta.constraints affect model validation.
Backport of 00169bc36156d4a32546229bf39de91213709eaf from master
2019-06-20 10:45:20 +02:00
Hasan Ramezani
c3a9d3050c [2.2.x] Fixed typos in signals and custom management commands docs.
Backport of a7038adbd02c916315b16939b835f021c2ee8880 from master
2019-06-19 08:41:51 +02:00
Hasan Ramezani
1ce04289f1 [2.2.x] Fixed typos and example in signals.pre_init docs.
Backport of 036362e0cfe74e4ab8a65b99eb2aa9c35371fc04 from master
2019-06-18 15:09:07 +02:00
Jon Dufresne
13e6040fd4 [2.2.x] Fixed intword example in docs/ref/contrib/humanize.txt.
Backport of 175656e166712db019a4704c4031510b9fd6b00a from master
2019-06-11 22:12:24 +02:00
Vyacheslav Ver
36766e1a28 [2.2.x] Fixed #30486 -- Fixed the default value of Aggregate.distinct and updated example of custom aggregate functions.
Backport of 76b3fc5c8d8dffb441aaa08f75833888be2107af from master
2019-06-11 12:02:02 +02:00
Mykola Nicholas
d5d22e1090 [2.2.x] Changed charset and collation link to MySQL docs.
Backport of f3a03d5b61bbf6a47c9aaf8113cff5b1befbcbc5 from master
2019-06-11 11:17:23 +02:00
Mariusz Felisiak
430f7e9dac [2.2.x] Removed redundant object descriptions to prevent warnings with Sphinx 2.1.0.
Backport of 5ab75adb900ca3fce50e65e60b11f2eb3ce9fd25 from master
2019-06-10 16:57:50 +02:00
Caio Ariede
d6d65c1e87 [2.2.x] Fixed #30505 -- Doc'd how changes in the order of Field.choices affect migrations.
Backport of 5248abe9b0425c1fc989c60a55860cdb4d135bcf from master
2019-06-04 14:57:08 +02:00
parth
5c85244eb9 [2.2.x] Fixed #28831 -- Doc'd that InlineModelAdmin methods' obj argument is the parent object.
Backport of 85436473066aae5d793caeced010ea4f45da4e79 from master
2019-05-31 13:21:13 +02:00
Brad Solomon
0f0d1cd772 [2.2.x] Fixed #30491 -- Clarified when save() on object with pk executes INSERT.
Backport of 67b6cb7723b2765cb776bd59d5603e3e63eefc2e from master
2019-05-28 11:28:28 +02:00
GwynBleidD
83605a17f0 [2.2.x] Refs #30062 -- Corrected UniqueConstraint signature in docs.
Backport of 5402061c80aa2ede08a7c6b3ff204646c5059cf7 from master
2019-05-20 10:54:19 +02:00
Jon Dufresne
ed221f7c97 [2.2.x] Changed docs to link to Python's description of iterable.
Backport of e86cc14bd36734d81c4e490a2453778e33b95a45 from master
2019-05-17 17:27:57 +02:00
Daniel Hepper
0aca34fc83 [2.2.x] Fixed #25633 -- Updated macOS Spatialite installation instructions.
Updated the Spatialite installation instruction to refer to the latest
available version from KyngChaos, as Gaia-SINS does not provide MacOS
binaries anymore.
Backport of ccb7f7c6d237900614290085cca103d9509b89b9 from master
2019-05-17 16:24:43 +02:00
Alex
4ef96cce6a [2.2.x] Fixed #30199 -- Adjusted QuerySet.get_or_create() docs to highlight atomicity warning.
Backport of 1686dce06c1f3587e90ea98816eddaa965fd9f45 from master
2019-05-17 12:25:12 +02:00
Jon Dufresne
08c8838727 [2.2.x] Changed tuple choices to list in docs.
Backport of 97d3321e89c8d4434927bdbc308db1ccffa99d3b from master
2019-05-15 14:41:01 +02:00
Daniel Musketa
4cfbd2c0c2 [2.2.x] Fixed typo in docs/ref/django-admin.txt.
Backport of 59de9494e7513de29bc71bd0b27445daff25a4b3 from master
2019-05-07 12:59:14 +02:00
Tobias Kunze
769f87fd24 [2.2.x] Fixed #26678 -- Doc'd that RelatedManager.add()/remove()/set() accepts the field the relation points to.
Backport of a44a21a22f20c1a710670676fcca798dd6bb5ac0 from master
2019-05-07 12:58:55 +02:00
Tobias Kunze
bf9e0e342d [2.2.x] Refs #20122 -- Corrected documentation of pluralize template filter.
Backport of e3968df527c4d378677f4784fb1bc0c86950fcf8 from master
2019-05-03 11:53:56 +02:00
Jacob Green
e45763193f [2.2.x] Fixed #30361 -- Increased the default timeout of watchman client to 5 seconds and made it customizable.
Made the default timeout of watchman client customizable via
DJANGO_WATCHMAN_TIMEOUT environment variable.

Backport of ed3c59097a01ed3f32f8a8bed95307fb5c181251 from master
2019-04-26 13:35:47 +02:00
Aarni Koskela
a4095dadc4 [2.2.x] Fixed #30312 -- Relaxed admin check from django.contrib.sessions to SessionMiddleware subclasses.
Backport of efeceba589974b95b35b2e25df86498c96315518 from master
2019-04-26 11:51:28 +02:00
Alasdair Nicol
3c3df7db8e [2.2.x] Fixed #30318 -- Added check for importability of arguments of custom error handler views.
Thanks to Jon on Stack Overflow for reporting the issue.

Backport of a5accc0368c6575b55976c06af36ed399c85c781 from master
2019-04-25 11:38:35 +02:00
Mariusz Felisiak
f24cf51661 [2.2.x] Fixed #30362 -- Noted partial indexes and constraints restrictions with abstract base classes.
Thanks Carlton Gibson for the review.

Backport of 5df3301aab9e1d1c386799263bef5cf013985c83 from master
2019-04-25 07:37:34 +02:00
Mariusz Felisiak
158cfebe87 [2.2.x] Fixed UniqueConstraint example in ref/models/constraints.txt.
Backport of f8f0f92ed9f73a025de599bd1a4965f2cc2ebbba from master
2019-04-25 07:37:21 +02:00
Luke Plant
46416554f3 [2.2.x] Changed tuple Mate.unique_together/permissions to lists in docs.
Backport of 0c916255eb4d94e06e123fafec93efdba45b1259 from master
2019-04-24 10:33:05 +02:00
Willy Njundong
ef38777ee8 [2.2.x] Updated SpatiaLite install instructions to suggest first package from recent Debian-based distributions.
Backport of 8180ffba21bf10f4be905cb0d4890dc2bcff2788 from master
2019-04-17 07:57:20 +02:00
Gary Donovan
0ba78c3989 [2.2.x] Fixed typo in docs/ref/models/instances.txt.
Backport of 516d858e7a3d01443cdc4e1eb4532b9d910f5e2b from master
2019-04-16 08:27:05 +02:00
sage
86de106864 [2.2.x] Fixed #30326 -- Doc'd how to avoid persistence of F() assignment.
Backport of bfae195b0a2c8dae755610a7e23add5c6bc37b5e from master
2019-04-15 09:13:56 +02:00
Bruno Furtado
bfe279293c [2.2.x] Fixed #30321 -- Added example of changed_data to forms docs.
Backport of 571ab44e8a8936014c22e7eebe4948d9611fd7ce from master
2019-04-09 22:54:02 +02:00
Tim Graham
53c83387cf [2.2.x] Refs #27807 -- Removed docs for User.username_validator.
The new override functionality claimed in refs #21379 doesn't work.
Forwardport of 714fdbaa7048c2321f6238d9421137c33d9af7cc from stable/1.10.x.
2019-04-07 20:03:01 -04:00
Mariusz Felisiak
de11488c52
[2.2.x] Fixed typo in docs/ref/settings.txt.
Backport of 4cbe2b06ce580423c62b6e49969f7e24d57d63b8 from master
2019-04-02 09:12:40 +02:00
Tim Graham
fc708f32f5 [2.2.x] Refs #30278 -- Fixed link in cached_property docs.
Backport of b9455b010e41d1c6e68faa11115212d50de3c231 from master.
2019-03-30 09:35:21 -04:00
Matthew Schinckel
f14170406c [2.2.x] Refs #30278 -- Doc'd behavior of del on an unaccessed cached_property.
Thanks to Curtis Maloney for the description of the problem.
Backport of c3c2ec54f59428cdf0a35abce594fd2ada35c209 from master
2019-03-30 09:29:23 -04:00
Nick Pope
5237da3416 [2.2.x] Removed unnecessary /static from links to PostgreSQL docs.
Backport of 198a2a9381a415f76c3170753270f5087ce4475a from master.
2019-03-29 21:50:28 -04:00
Tim Graham
2fb602f581 [2.2.x] Used extlinks for Django's source code.
Backport of a68c029e224cebe540da7447dbbd27993b4aa793 from master.
2019-03-28 20:39:38 -04:00
Tim Graham
ffdacc5879 [2.2.x] Fixed #30299 -- Removed jQuery dependency from getCookie() in CSRF docs.
Backport of 8e675e2bd8366adf5d0b579accfef75a7b1bc3bf from master
2019-03-28 19:57:01 -04:00
Nick Pope
6ac921bab0
[2.2.x] Refs #1660 -- Doc'd the LANGUAGES_BIDI setting.
Backport of 07daa487aeb7d41d69d7d1cf9d4b3648e299e4ac from master
2019-03-28 21:58:19 +01:00
Mariusz Felisiak
c910053a09
[2.2.x] Doc'd that HttpResponse accepts bytestrings.
Backport of e449c3a832ff2a4e3fa83cec6909d0476ed14110 from master
2019-03-28 10:02:24 +01:00
Mariusz Felisiak
609b7f1123
[2.2.x] Fixed "byte string" typo in various docs and comments.
Backport of 881362986a1ee8f650752de8471a895890b71f96 from master
2019-03-28 10:01:36 +01:00
Nick Pope
d7876fc999 [2.2.x] Updated spelling and RFCs in HttpOnly cookie flag docs.
Backport of 398afba084679f1055926f6f91bd33fe124a92c5 from master.
2019-03-27 11:11:24 -04:00
Nick Pope
c04bd386d4 [2.2.x] Removed obsolete RFC from cookie docs.
RFC 2109 was obsoleted by RFC 2965 which was obsoleted by RFC 6265.

Backport of 2afd670de5b2f28f56f722a95344fb7eefad3d37 from master
2019-03-27 10:13:05 -04:00
Philipp Bosch
bca600339e [2.2.x] Used monospace font in date template filter format character docs.
Helps distinguish between lowercase L and uppercase I.
Backport of 0b8abd7cdf1a5bae96dd0640af10ad504f104d06 from master.
2019-03-21 10:20:35 -04:00
Paul Wayper
a48c0180f5 [2.2.x] Fixed #30253 -- Doc'd how to order nulls in QuerySet.order_by().
Backport of 1025e764291167f2f34a4d55bd3d043836e74250 from master.
2019-03-18 11:11:55 -04:00
Mariusz Felisiak
62f28f37bf
[2.2.x] Fixed documentation of database representation for ManyToManyField.
Backport of b0799f5d86b6c0ccb1dcba6e0d2eee336f7f5928 from master
2019-02-25 20:08:11 +01:00
Tim Graham
07b44a251a [2.2.x] Removed docs of unused libgeoip1/python-gdal packages.
Backport of 21f9d437374ee078ee46e23b64efa3d52ca6f49a from master.
2019-02-14 09:46:45 -05:00
Hasan Ramezani
f2b460231d [2.2.x] Fixed #29943 -- Doc'd that admin changelist may add pk to ordering.
Backport of f63811f4813f0e0439e140a97eeba18a5017e858 from master.
2019-02-12 21:36:07 -05:00
Claude Paroz
28a6046b54 [2.2.x] Doc'd database functions for overlaps lookup.
Backport of 8cf9dbee6aeca57ab4dac986e46b79a2d234f703 from master
2019-02-12 15:43:11 -05:00
Tim Graham
b89d31d2dc [2.2.x] Fixed #30169 -- Removed SAP SQL Anywhere from "3rd party database backends" as it's inactive.
Backport of 56b50cbf73ecfd4577bb7cfe8dc8ccd4befd7e00 from master.
2019-02-09 18:38:43 -05:00
Mariusz Felisiak
d03e5961aa
[2.2.x] Removed extra characters in docs header underlines.
Backport of 25829197bb94585e94695360065ac614aa9e6a56 from master
2019-02-08 21:39:54 +01:00
Mariusz Felisiak
0aff35459d
[2.2.x] Updated Oracle docs links to Oracle 18c.
Backport of 759a9b710c0e5a6009cfba406ff562919fa70ef0 from master
2019-02-07 10:03:11 +01:00