Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Syndic.W3C
: invoke and parse the result of the W3C validator.
module Error : module type of Syndic_error
The 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.
parse i
takes i
and returns a list of error, result of W3C Feed Validator.