Thank you, Stefan. We use ANT to run FOP. Here is the part of build.xml that
executes FOP:


    <target name="transform.fo2pdf.fop" if="use.fop.pdf.formatter">
        <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop">
            <classpath>
                <fileset dir="${fop.home}/lib">
                    
                    <include name="*.jar"/>
                </fileset>
                <fileset dir="${fop.home}/build">
                    <include name="fop.jar"/>
                    
                </fileset>
            </classpath>
        </taskdef>

        <fop format="application/pdf" fofile="${inputFile}"
basedir="${dita.map.output.dir}" outfile="${outputFile}"
messagelevel="verbose"
            userconfig="${fop.home}/conf/fop.xconf"/>
        
    </target>

How would we declare FOP_OPTS in this script? We will generate Arabic text,
so we will need complex scripts. It will be helpful to set -nocs if
project.locale does not contain ar. If anyone has suggestions on doing this,
please let me know.

Thanks,
Matthew Stern 
Sr. Principal Technical Writer 
Kofax, Inc. 



--
View this message in context: 
http://apache-fop.1065347.n5.nabble.com/Suppressing-page-indicators-in-log-file-with-FOP-1-1-tp37295p37327.html
Sent from the FOP - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to