Ticket #3094: correct_1.2.X_XMLField_docs.diff
File correct_1.2.X_XMLField_docs.diff, 749 bytes (added by , 14 years ago) |
---|
-
docs/ref/models/fields.txt
838 838 839 839 .. class:: XMLField(schema_path=None, [**options]) 840 840 841 A :class:`TextField` that checks that the value is valid XML that matches a842 given schema. Takes one requiredargument:841 A :class:`TextField` that stores XML data and a path to a schema. Takes one 842 optional argument: 843 843 844 844 .. attribute:: schema_path 845 845 846 The filesystem path to a RelaxNG_ schema against which to validate the 847 field. 846 The filesystem path to a schema for the field. 848 847 849 .. _RelaxNG: http://www.relaxng.org/850 848 851 849 Relationship fields 852 850 ===================