- From: David Cramer <david@thingbag.net>
- Date: Mon, 05 Aug 2013 16:03:36 -0500
- To: XProc Dev <xproc-dev@w3.org>
Hi there, I'm processing DocBook xml with Calabash and using xinclude with the xpath() scheme to pull in all the children of a section EXCEPT for the title. The following works fine, but is inelegant: <xi:include href="test.xml" xpointer="xpath(//*[@xml:id = 'test']/*[not(local-name(.) = 'title')])"> I was expecting to be able to do: //*[@xml:id = 'test']/*[not(self::title)] or (assuming I'd bound http://docbook.org/ns/docbook to 'db'): //*[@xml:id = 'test']/*[not(self::db:title)] Is the xpath scheme namespace-aware? Regards, David
Received on Monday, 5 August 2013 21:04:05 UTC