Ticket #3094: correct_1.1.X_XMLField_docs.diff

File correct_1.1.X_XMLField_docs.diff, 749 bytes (added by Paul McMillan, 14 years ago)
  • docs/ref/models/fields.txt

     
    795795
    796796.. class:: XMLField(schema_path=None, [**options])
    797797
    798 A :class:`TextField` that checks that the value is valid XML that matches a
    799 given schema. Takes one required argument:
     798A :class:`TextField` that stores XML data and a path to a schema. Takes one
     799optional argument:
    800800
    801801.. attribute:: schema_path
    802802
    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.
    805804
    806 .. _RelaxNG: http://www.relaxng.org/
    807805
    808806Relationship fields
    809807===================
Back to Top