Ticket #3094: correct_1.1.X_XMLField_docs.diff
File correct_1.1.X_XMLField_docs.diff, 749 bytes (added by , 14 years ago) |
---|
-
docs/ref/models/fields.txt
795 795 796 796 .. class:: XMLField(schema_path=None, [**options]) 797 797 798 A :class:`TextField` that checks that the value is valid XML that matches a799 given schema. Takes one requiredargument:798 A :class:`TextField` that stores XML data and a path to a schema. Takes one 799 optional argument: 800 800 801 801 .. attribute:: schema_path 802 802 803 The filesystem path to a RelaxNG_ schema against which to validate the 804 field. 803 The filesystem path to a schema for the field. 805 804 806 .. _RelaxNG: http://www.relaxng.org/807 805 808 806 Relationship fields 809 807 ===================