hxt-8.4.1: A collection of tools for processing XML with Haskell.

Portabilityportable
Stabilityexperimental
MaintainerUwe Schmidt (uwe@fh-wedel.de)

Text.XML.HXT.DTDValidation.DocValidation

Description

This module provides functions for validating XML Documents represented as XmlTree.

Unlike other popular XML validation tools the validation process returns a list of errors instead of aborting after the first error was found.

Before the document is validated, a lookup-table is build on the basis of the DTD which maps element names to their validation functions. After this initialization phase the whole document is traversed in preorder and every element is validated by the XmlFilter from the lookup-table.

Synopsis

Documentation

validateDoc :: XmlTree -> XmlArrowSource

Validate a document.

  • 1.parameter dtdPart : the DTD subset (Node DOCTYPE) of the XmlTree
  • 2.parameter doc : the document subset of the XmlTree
  • returns : a list of errors