Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Syndic_w3cSyndic.W3C: invoke and parse the result of the W3C validator.
module Error : module type of Syndic_errorThe common signature that all error modules must (at least) satisfy.
type 'a t = {kind : 'a kind;Error or warning.
*)line : int;Within the source code of the validated document, refers to the line where the error was detected.
*)column : int;Within the source code of the validated document, refers to the line where the column was detected.
*)text : string;The actual error message.
*)element : string;Element in the feed where the message was triggered.
*)parent : string;In the feed, parent of the element.
*)value : string;If applicable the value of the element, attribute or content which triggered the message.
*)}Generate url for the W3C Feed Validator API returning a SOAP 12 output. Thus URL is supposed to be used with GET.
val parse : Xmlm.input -> error t list * warning t listparse i takes i and returns a list of error, result of W3C Feed Validator.