atom feed12 messages in org.w3.xproc-devcalabash p:delete not working
FromSent OnAttachments
James FullerOct 4, 2008 2:42 am 
mozerOct 4, 2008 2:54 am 
James FullerOct 4, 2008 2:59 am 
Norman WalshOct 4, 2008 12:50 pm 
mozerOct 4, 2008 12:57 pm 
Josh MatthewsOct 4, 2008 7:14 pm 
Josh MatthewsOct 4, 2008 7:29 pm 
Florent GeorgesOct 5, 2008 2:46 am 
Josh MatthewsOct 5, 2008 8:46 am 
Norman WalshOct 5, 2008 9:21 am 
Josh MatthewsOct 5, 2008 3:47 pm 
Josh MatthewsOct 5, 2008 3:49 pm 
Subject:calabash p:delete not working
From:James Fuller (jame@gmail.com)
Date:Oct 4, 2008 2:42:29 am
List:org.w3.xproc-dev

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.