- From: James Fuller <james.fuller.2007@gmail.com>
- Date: Wed, 14 Apr 2010 11:33:12 +0200
- To: Wendell Piez <wapiez@mulberrytech.com>
- Cc: xproc-dev@w3.org
On Wed, Apr 14, 2010 at 10:49 AM, James Fuller <james.fuller.2007@gmail.com> wrote: > Hello Wendell, > > On Mon, Apr 12, 2010 at 9:46 PM, Wendell Piez <wapiez@mulberrytech.com> wrote: > >> 1. Can I (how would I) call out to another pipeline (maybe in another XProc >> instance?) whose input would be my source document and whose results would >> be input to a new transformation? it struck me that you may also be asking about something else here: u can use p:import to bring in pipelines from another file ... another thing to realize is that p:pipeline is syntax convention for a p:declare-step e.g. <p:pipeline> ... steps ... </p:pipeline> is roughly equiv to: <p:declare-step> <p:input port='source' primary='true'/> <p:input port='parameters' kind='parameter' primary='true'/> <p:output port='result' primary='true'/> .... steps ... </p:declare-step> hth, J
Received on Wednesday, 14 April 2010 09:33:47 UTC