From 20cf3b82a1f4f7a2feb8e74152e581e621b37e89 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sun, 6 Mar 2011 07:03:27 +0000 Subject: [PATCH] [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 --- docs/ref/models/fields.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index a0cd6fbb2c..4b03dc58c7 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -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 ===================