Ticket #3094: correct_1.2.X_XMLField_docs.diff

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

     
    838838
    839839.. class:: XMLField(schema_path=None, [**options])
    840840
    841 A :class:`TextField` that checks that the value is valid XML that matches a
    842 given schema. Takes one required argument:
     841A :class:`TextField` that stores XML data and a path to a schema. Takes one
     842optional argument:
    843843
    844844.. attribute:: schema_path
    845845
    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.
    848847
    849 .. _RelaxNG: http://www.relaxng.org/
    850848
    851849Relationship fields
    852850===================
Back to Top