summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorDominic Rodger <dominicrodger+github@gmail.com>2013-08-05 17:23:26 +0100
committerTim Graham <timograham@gmail.com>2013-08-06 07:13:17 -0400
commitc33d1ca1d98003de29cdecb6080b52c5c52139bd (patch)
tree659adb65682a8fc81a9345ddfc6872f1497bcd3a /docs/releases
parent0b771fcf2923cef1b0d759fda79907c39ad733b4 (diff)
Fixed #20852 - Fixed incorrectly generated left quotes in docs.
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">&#8216;" in the generated HTML.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/1.3.txt4
-rw-r--r--docs/releases/1.6.txt4
-rw-r--r--docs/releases/1.7.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/releases/1.3.txt b/docs/releases/1.3.txt
index 060f099c52..6bf4c0db60 100644
--- a/docs/releases/1.3.txt
+++ b/docs/releases/1.3.txt
@@ -365,7 +365,7 @@ In earlier Django versions, when a model instance containing a
file from the backend storage. This opened the door to several data-loss
scenarios, including rolled-back transactions and fields on different models
referencing the same file. In Django 1.3, when a model is deleted the
-:class:`~django.db.models.FileField`'s ``delete()`` method won't be called. If
+:class:`~django.db.models.FileField`’s ``delete()`` method won't be called. If
you need cleanup of orphaned files, you'll need to handle it yourself (for
instance, with a custom management command that can be run manually or
scheduled to run periodically via e.g. cron).
@@ -654,7 +654,7 @@ Password reset view now accepts ``from_email``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The :func:`django.contrib.auth.views.password_reset` view now accepts a
-``from_email`` parameter, which is passed to the ``password_reset_form``'s
+``from_email`` parameter, which is passed to the ``password_reset_form``’s
``save()`` method as a keyword argument. If you are using this view with a
custom password reset form, then you will need to ensure your form's ``save()``
method accepts this keyword argument.
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt
index b545cbcd64..c0f5c51194 100644
--- a/docs/releases/1.6.txt
+++ b/docs/releases/1.6.txt
@@ -183,7 +183,7 @@ Minor features
* The :attr:`~django.views.generic.edit.DeletionMixin.success_url` of
:class:`~django.views.generic.edit.DeletionMixin` is now interpolated with
- its ``object``\'s ``__dict__``.
+ its ``object``’s ``__dict__``.
* :class:`~django.http.HttpResponseRedirect` and
:class:`~django.http.HttpResponsePermanentRedirect` now provide an ``url``
@@ -330,7 +330,7 @@ Minor features
* :class:`~django.forms.ModelForm` fields can now override error messages
defined in model fields by using the
- :attr:`~django.forms.Field.error_messages` argument of a ``Field``'s
+ :attr:`~django.forms.Field.error_messages` argument of a ``Field``’s
constructor. To take advantage of this new feature with your custom fields,
:ref:`see the updated recommendation <raising-validation-error>` for raising
a ``ValidationError``.
diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 28d9c9e1f1..161ae55436 100644
--- a/docs/releases/1.7.txt
+++ b/docs/releases/1.7.txt
@@ -141,7 +141,7 @@ Miscellaneous
have a custom :class:`~django.core.files.uploadhandler.FileUploadHandler`
that implements ``new_file()``, be sure it accepts this new parameter.
-* :class:`ModelFormSet<django.forms.models.BaseModelFormSet>`'s no longer
+* :class:`ModelFormSet<django.forms.models.BaseModelFormSet>`’s no longer
delete instances when ``save(commit=False)`` is called. See
:attr:`~django.forms.formsets.BaseFormSet.can_delete` for instructions on how
to manually delete objects from deleted forms.