Re: Use Case 5.29: Large Document Subtree Iteration

Alex Milowski wrote:
> The use case is here:
> 
> http://www.w3.org/TR/xproc-requirements/#use-case-large-document-transform

I've updated this example to remove the use of the 'pipe' element.

The schema is the same.

<p:pipeline xmlns:p='http://www.w3.org/2006/XProc'
         xmlns:c='http://www.w3.org/2006/XProc/Components'
         xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
         xsi:schemaLocation='http://www.w3.org/2006/XProc pipeline.xsd'
         xmlns:xhtml='http://www.w3.org/1999/xhtml'
 
xmlns:t="http://www.smallx.com/Vocabulary/Services/Tideinfo/2005/1/0"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <p:input name="large-doc"/>
    <p:output name="result" from="final"/>

    <p:for-each select="section" over="large-doc" to="iteration">
       <!-- input isn't needed here because this "for-each" has
            to iterate over elements.  The input is identified by
            the 'over' attribute and the binding for each result
            element is specified by the 'to' attribute. -->
       <p:output name="final" from="transformed"/>
       <p:step kind="p:xmlbase">
          <p:input name="input" from="iteration"/>
          <p:output name="based"/>
       </p:step>
       <p:step kind="p:xinclude">
          <p:input name="input" from="based"/>
          <p:output name="included"/>
       </p:step>
       <p:step kind="p:xslt">
          <p:input name="input" from="included"/>
          <p:input name="stylesheet" href="section2xhtml.xsl"/>
          <p:output name="transformed"/>
       </p:step>
    </p:for-each>

</p:pipeline>

--Alex Milowski

Received on Monday, 10 July 2006 19:14:23 UTC