[1.2.X] Fixed #3094 -- Updated docs to reflect actual behavior of XMLField. Thanks to PaulM for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15764 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-03-06 07:03:27 +00:00
parent cb4b469a7f
commit 20cf3b82a1

View File

@ -838,15 +838,13 @@ Like all :class:`CharField` subclasses, :class:`URLField` takes the optional
.. class:: XMLField(schema_path=None, [**options])
A :class:`TextField` that checks that the value is valid XML that matches a
given schema. Takes one required argument:
A :class:`TextField` that stores XML data and a path to a schema. Takes one
optional argument:
.. attribute:: schema_path
The filesystem path to a RelaxNG_ schema against which to validate the
field.
The filesystem path to a schema for the field.
.. _RelaxNG: http://www.relaxng.org/
Relationship fields
===================