1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
ANNOUNCEMENT: XML::Validator::Schema version 1.09
CHANGES
- Added support for line and column numbers in errors in the schema
file using XML::Filter::ExceptionLocator and XML::SAX::ExpatXS.
- Added support for unions. (John Hollingum)
- Fixed a bug which broke date type checking in Perl v5.10.
- Fixed decimal type to allow values without integer parts like
".45". (Michael Fox)
- Fixed bug where attributes couldn't have anonymous simple-type
definitions. (reported by Jeremy Osborn)
DESCRIPTION
This module allows you to validate XML documents against a W3C XML
Schema. This module does not implement the full W3C XML Schema
recommendation (http://www.w3.org/XML/Schema), but a useful subset. See
the SCHEMA SUPPORT section in the module documention.
IMPORTANT NOTE: To get line and column numbers in the error
messages generated by this module you must install
XML::Filter::ExceptionLocator and use XML::SAX::ExpatXS as your
SAX parser. This module is much more useful if you can tell where
your errors are, so using these modules is highly recommeded!
DOWNLOAD
You can install XML::Validator::Schema from CPAN, or download it
from SourceForge:
http://sourceforge.net/project/showfiles.php?group_id=89764
FULL DOCUMENTATION
Available online:
http://search.cpan.org/~samtregar/XML-Validator-Schema/Schema.pm
|