Recursive calling

Norm,

I just tried with 0.7.1 version of calabash if recursive calling works

But it doesn't

Here is a small example

<p:pipeline xmlns:p="http://www.w3.org/ns/xproc"
xmlns:ix="http://www.innovimax.fr/xproc/ns">
    <p:declare-step name="recursive" type="ix:step">
        <p:input port="source"/>
        <p:output port="result"/>
        <p:option name="level"/>
        <p:choose>
            <p:when test="number($level) = 0">
                <p:identity/>
            </p:when>
            <p:otherwise>
                <ix:step>
                    <p:with-option name="level" select="number($level) - 1"/>
                </ix:step>
            </p:otherwise>
        </p:choose>
    </p:declare-step>
    <ix:step level="10"/>
</p:pipeline>

And here is Calabash response

Pipeline failed: err:XS0044: Unexpected step name: ix:step
  It is a static error if any element in the XProc namespace or any
step has element children other than those specified for it by this
specification.

Mohamed

-- 
Innovimax SARL
Consulting, Training & XML Development
9, impasse des Orteaux
75020 Paris
Tel : +33 9 52 475787
Fax : +33 1 4356 1746
http://www.innovimax.fr
RCS Paris 488.018.631
SARL au capital de 10.000 €

Received on Saturday, 4 October 2008 10:40:02 UTC