Commit 20cf3b82 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

[1.2.X] Fixed #3094 -- Updated docs to reflect actual behavior of XMLField....

[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
parent cb4b469a
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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
===================