Hello everyone!
Is it possible to use a pipeline as source for a transformer?
like:
<map:pipeline>
<map:match pattern="makefo">
<map:generate type="file" src="resources/dummyfile.xml"/>
<map:transform src="cocoon:protocol/makexsl"/>
<map:transform src="pagelayout_pdf.xsl"/>
<map:transform type="write-source">
<map:parameter name="serializer" value="xml"/>
</map:transform>
<map:serialize/>
</map:match>
</map:pipeline>
<map:pipeline name="makexsl">
<map:generate type="file" src="forms/data-result.xml"/>
<map:transform src="xsl/container-tranform.xsl"/>
<map:serialize type="xml"/>
</map:pipeline>
the "makexsl" pipeline creates a stylesheet, which is used in the "makepdf" pipeline
is that possible? can I do that another way, if it is not?
thanks for your help!
regards dominik