- From: James Fuller <james.fuller.2007@gmail.com>
- Date: Sat, 4 Oct 2008 11:42:52 +0200
- To: "Norman Walsh" <ndw@nwalsh.com>
- Cc: "XProc Dev" <xproc-dev@w3.org>
might be a prob with p:delete e.g. using the following pipeline
<p:pipeline name="pipeline"
xmlns:p="http://www.w3.org/ns/xproc">
<p:delete name="step1">
<p:with-option name="match" select="//a"/>
</p:delete>
</p:pipeline>
on std input of
<?xml version="1.0" encoding="UTF-8"?>
<test>
<a>test1</a>
<b/>
</test>
returns
<?xml version="1.0" encoding="UTF-8"?>
<test>
<a>test1</a>
<b/>
</test>
I would expect the <a/> element to be removed.
- Jim Fuller
Received on Saturday, 4 October 2008 09:43:26 UTC