Skip to content

Commit

Permalink
[1.0.X] Merged trunk changes [9850], [9851], [9852], [9853]
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Feb 21, 2009
1 parent d9b5a41 commit 2671229
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/ref/contrib/syndication.txt
Expand Up @@ -259,7 +259,7 @@ request to the URL :file:`/rss/beats/0613/`:
a 404 error for that request.

.. versionadded:: 1.0
meth:`get_object()` can handle the :file:`/rss/beats/` url.
:meth:`get_object()` can handle the :file:`/rss/beats/` url.

The :meth:`get_object()` method also has a chance to handle the
:file:`/rss/beats/` url. In this case, :data:`bits` will be an
Expand Down
1 change: 1 addition & 0 deletions docs/ref/forms/fields.txt
Expand Up @@ -23,6 +23,7 @@ how they work. Each ``Field`` instance has a ``clean()`` method, which takes
a single argument and either raises a ``django.forms.ValidationError``
exception or returns the clean value::

>>> from django import forms
>>> f = forms.EmailField()
>>> f.clean('foo@example.com')
u'foo@example.com'
Expand Down
2 changes: 2 additions & 0 deletions docs/ref/forms/widgets.txt
Expand Up @@ -107,6 +107,8 @@ built-in Field classes.
However, if you want to use a different widget for a field, you can -
just use the 'widget' argument on the field definition. For example::

from django import forms

class CommentForm(forms.Form):
name = forms.CharField()
url = forms.URLField()
Expand Down
2 changes: 1 addition & 1 deletion docs/ref/templates/builtins.txt
Expand Up @@ -1155,7 +1155,7 @@ For example::

{{ value|linebreaks }}

If ``value`` is ``Joel\nis a slug``, the output will be ``<p>Joel<br>is a
If ``value`` is ``Joel\nis a slug``, the output will be ``<p>Joel<br />is a
slug</p>``.

.. templatefilter:: linebreaksbr
Expand Down
3 changes: 2 additions & 1 deletion docs/topics/serialization.txt
Expand Up @@ -125,7 +125,8 @@ The Django object itself can be inspected as ``deserialized_object.object``.
Serialization formats
---------------------

Django "ships" with a few included serializers:
Django supports a number of serialization formats, some of which require you
to install third-party Python modules:

========== ==============================================================
Identifier Information
Expand Down

0 comments on commit 2671229

Please sign in to comment.