Does anybody know which version of the XPath specification has been implemented in XML::LibMXL?
Or more to the point, where can I find a description of the XPath functions that I can use in LibXML?
For example, I tried something like
$dcDOM->findvalue('//dc:identifier[contains(@xsi:type,"URI")]');
which seems to work fine, but
$dcDOM->findvalue('//dc:identifier[matches(@xsi:type,"URI")]');
does not.
From that one has to assume that it supports at most XPath 1.0 or some subset of 1.0/2.0 .
Is there a neat page where everything is listed and described?