Re: A "processing model" proposal

| And another
|
|   <p:pipeline>
|     <p:stage name="validate"/>
|     <p:stage name="xinclude"/>
|     <p:stage name="validate">
|       <p:output href="someOtherURI"/>
|     <p:stage>
|     <p:stage name="xslt">
|       <p:input href="someOtherURI"/>
|       <p:param name="stylesheet" href="style.xsl"/>
|     </p:stage>
|   </p:pipeline>

Alex's observations made me realize I just wrote the wrong thing.
I meant to say:

   <p:pipeline>
     <p:stage name="validate"/>
     <p:stage name="xinclude"/>
     <p:stage name="validate">
       <p:output href="someOtherURI-One"/>
     <p:stage>
     <p:stage name="xslt">
       <p:input href="someOtherURI-Two"/>
       <p:param name="stylesheet" href="style.xsl"/>
     </p:stage>
   </p:pipeline>

| This pipeline performs validation, xinclude, and validation then
| transforms the result. A clever processor could do the last two steps
| in parallel but it doesn't have to.

In fact, in this pipeline, a really clever processor might just
skip the first four stages altogether :-)

                                        Be seeing you,
                                          norm

-- 
Norman.Walsh@Sun.COM / XML Standards Architect / Sun Microsystems, Inc.
NOTICE: This email message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution is prohibited.
If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.

Received on Thursday, 16 February 2006 17:11:04 UTC