Nels wrote: > > I can't get the fop option -q for quiet mode to work. Running from the > command line I tried: > fop -q -xml xml_file.xml -xsl xsl_file.xsl -pdf pdf_file.pdf > > But I still receive warnings. Can I suppress these this way? > >
The warnings that you are seeing are displayed on the standard error output. You can redirect it like this on Linux: $ fop -q ... 2> /dev/null or like this on Windows: C:\>fop -q 2> nul Are you sure that you want to suppress those warnings? Consider a DocBook document that I am working on now. When not suppressing warnings, I get among the output: ... Font "ZapfDingbats,normal,700" not found. Substituting with "ZapfDingbats,normal ,400". Couldn't find hyphenation pattern for lang="en". ... With -q, the font warning goes away, but the hyphenation warning remains. If I suppress the hyphenation warning, I will not know that there is a problem. Regards, John Brown. --------------------------------------------------------------------- To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org