From f13328f7762dbdc920395bdf5c50fe0b6e40f1db Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 17 Mar 2012 22:13:20 +0000 Subject: [PATCH] Fixed #17926 -- Removed mention of XMLField in docs (missing deletion from r15982). Thanks aburgel for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17764 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/models/fields.txt | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index e34da13ee5..36bf60e9ac 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -902,21 +902,6 @@ Like all :class:`CharField` subclasses, :class:`URLField` takes the optional :attr:`~CharField.max_length`argument. If you don't specify :attr:`~CharField.max_length`, a default of 200 is used. -``XMLField`` ------------- - -.. deprecated:: 1.3 - ``XMLField`` is deprecated. Use TextField instead. - -.. class:: XMLField(schema_path=None, [**options]) - -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 schema for the field. - Relationship fields ===================