summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-04-15 10:54:37 -0300
committerRamiro Morales <cramm0@gmail.com>2013-05-20 16:29:51 -0300
commit4ba1c2e785feecfa7a47aa5336a2b595f086a765 (patch)
tree9b5c4ced8c5af019f389349bea1e7a94e221856e /docs/internals
parent2fd61285d109a04bf22d1822e834cbb7bcf4239f (diff)
Fixed #9321 -- Deprecated hard-coding of help text in model ManyToManyField fields.
This is backward incompatible for custom form field/widgets that rely on the hard-coded 'Hold down "Control", or "Command" on a Mac, to select more than one.' sentence. Application that use standard model form fields and widgets aren't affected but need to start handling these help texts by themselves before Django 1.8. For more details, see the related release notes and deprecation timeline sections added with this commit.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 095b6d0a33..5fa7ea16ac 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -392,6 +392,11 @@ these changes.
* The ``CACHE_MIDDLEWARE_ANONYMOUS_ONLY`` setting will be removed.
+* Usage of the hard-coded *Hold down "Control", or "Command" on a Mac, to select
+ more than one.* string to override or append to user-provided ``help_text`` in
+ forms for ManyToMany model fields will not be performed by Django anymore
+ either at the model or forms layer.
+
2.0
---