- From: <Toman_Vojtech@emc.com>
- Date: Fri, 25 Sep 2009 03:19:51 -0400
- To: <xproc-dev@w3.org>
Manfred, Many thanks for reporting this. These are clearly bugs in the URI handling in Calumet. I will need to look into this. Thanks, Vojtech -- Vojtech Toman Principal Software Engineer EMC Corporation toman_vojtech@emc.com http://developer.emc.com/xmltech > -----Original Message----- > From: xproc-dev-request@w3.org > [mailto:xproc-dev-request@w3.org] On Behalf Of Manfred Staudinger > Sent: Thursday, September 24, 2009 12:11 PM > To: xproc-dev > Subject: Notes on Calumet and resolve-uri > > When I execute the pipeline [1] with Calumet 1.0.9 from the command > line, I get the following messages: > 1. > p:base-uri(.):***file:/J:/any/*** > p:base-uri(.):****** > While the base uri is correct _before_ the p:for-each step, it is lost > inside. But even the step iterates over the child elements (which have > no explicit xml:base attribute), they should have inherited it (see > http://www.w3.org/TR/xmlbase/ ) > 2. > p:resolve-uri(*/@name):***test%20yyy*** > p:resolve-uri(*/@name, file:/J:/any/):***file:/J:/any/test%20yyy*** > When given an (for anyURI) invalid name p:resolve-uri % encodes it, > but has also no base uri to use. A solution to this problem should be > seen in connection with the same problem for the p:make-absolute-uris > step. > > Regards, > Manfred > > [1] > <?xml version="1.0" encoding="UTF-8"?> > <p:declare-step name="myPipeline" > xmlns:x="http://www.emc.com/documentum/xml/xproc" > xmlns:c="http://www.w3.org/ns/xproc-step" > xmlns:p="http://www.w3.org/ns/xproc"> > <p:input port='parameters' kind='parameter' primary='true'/> > <p:output port="result" primary="true"/> > <p:declare-step type="x:message"> > <p:option name="message" required="true"/> > <p:option name="stderr" select="'true'"/> > <p:option name="stdout" select="'false'"/> > <p:input port="source" sequence="true"/> > <p:output port="result" sequence="true"/> > </p:declare-step> > <p:identity> > <p:input port="source"> > <p:inline> > <c:directory xml:base="file:/J:/any/"> > <c:directory name="test yyy"/> > </c:directory> > </p:inline> > </p:input> > </p:identity> > <x:message><p:with-option name="message" > select="concat('p:base-uri(.):***', p:base-uri(.), > '***')"/></x:message> > <p:for-each name="level-1"> > <p:iteration-source select="/c:directory/c:directory"/> > <p:output port="result"/> > <x:message><p:with-option name="message" > select="concat('p:base-uri(.):***', p:base-uri(.), > '***')"/></x:message> > <x:message><p:with-option name="message" > select="concat('p:resolve-uri(*/@name):***', p:resolve-uri(*/@name), > '***')"/></x:message> > <x:message><p:with-option name="message" > select="concat('p:resolve-uri(*/@name, file:/J:/any/):***', > p:resolve-uri(*/@name, 'file:/J:/any/'), '***')"/></x:message> > <p:identity/> > </p:for-each> > </p:declare-step> > > >
Received on Friday, 25 September 2009 07:23:14 UTC