XProc and XSL-FO
Posted: Sun Mar 21, 2010 3:50 pm
I have been looking for examples on the web and trying to find the correct way to run my FO stylesheets using XProc in Oxygen 11.2...so far, unsuccessfully.
Could someone please help me locate the problem:
Thanks, Sean
Could someone please help me locate the problem:
Code: Select all
<p:declare-step version="1.0" xmlns:p="http://www.w3.org/ns/xproc" xmlns:c="http://www.w3.org/ns/xproc-step" name="main">
<p:input port="source">
<p:document href="MT_Columbus.xml"/>
</p:input>
<p:input port="parameters" kind="parameter"/>
<p:output port="result">
<p:pipe step="step_2" port="result"/>
</p:output>
<p:xslt name="step_1">
<p:input port="stylesheet">
<p:document href="FO_InspectionReport_Followup.xsl"/>
</p:input>
<p:input port="parameters">
<p:empty/>
</p:input>
</p:xslt>
<p:xsl-formatter href="report.pdf" name="step_2"/>
</p:declare-step>