Performance improvement suggestions

2013-01-13 Thread nels
065347.n5.nabble.com/Performance-improvement-suggestions-tp37754.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,

Re: Performance improvement suggestions

2013-01-14 Thread Pascal Sancho
Hi, tables are good for data grids, but you can use alternate solution in many cases. Example 1: Border can apply to many FOs, so you don't need to use table here. Example 2: title starting with graphic symbol: table solution needs a complete table structure: fo:table/fo:table-body/fo:table-row

Re: Performance improvement suggestions

2013-01-14 Thread Alexios Giotis
On 14 Jan 2013, at 09:25, nels wrote: > My first FOP project ... I am trying to provide near instantaneous conversion > of XML to PDF for our users and have written a custom XSL-FO. Welcome to FOP. > Having read a > number of threads here I have seen the suggestion to replace PNG images wit

Re: Performance improvement suggestions

2013-01-14 Thread nels
omplex script support (e.g. Arabic, Hebrew scripts), > then use > userAgent.setComplexScriptFeaturesEnabled(false); > > * This is obvious, but use the latest FOP release. I'll try these. I'm using 1.1 RC1 and JRE 1.6 on AIX 5.3. - just starting out with FOP - don't hurt me! -- View

Re: Performance improvement suggestions

2013-01-14 Thread nels
s this would seem to require less reworking of my XSL-FO. - just starting out with FOP - don't hurt me! -- View this message in context: http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37758.html Sent from the FOP - Users mailing l

Re: Performance improvement suggestions

2013-01-14 Thread Alexios Giotis
s using fopFactory.setStrictValidation(false); Alexis Giotis > > > > - > just starting out with FOP - don't hurt me! > -- > View this message in context: > http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37757.html >

Re: Performance improvement suggestions

2013-01-16 Thread nels
ttp://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37769.html Sent from the FOP - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org For ad

RE: Performance improvement suggestions

2013-01-16 Thread John Brown
Nels wrote: > > > I have updated to 1.1 now. > Adding fopFactory.setStrictValidation(false); directly into the fop script > gives me this error: > fop[263]: 0403-057 Syntax error at line 1 : `(' is not expected. > > The actual line added is: > FOP_OPTS="fopFactory.setStrictValidation(false);" > > A

RE: Performance improvement suggestions

2013-01-16 Thread nels
message in context: http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37772.html Sent from the FOP - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: fop-user

RE: Performance improvement suggestions

2013-01-16 Thread John Brown
Nels wrote: > > Thanks John, doing that I now get this error: > > Exception in thread "main" java.lang.NoClassDefFoundError: > Could not find the main class: fopFactory.setStrictValidation(false). > Program will exit. > I was not really paying atention to what you were trying to do. The previous

RE: Performance improvement suggestions

2013-01-16 Thread John Brown
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 s

RE: Performance improvement suggestions

2013-01-17 Thread nels
47.n5.nabble.com/Performance-improvement-suggestions-tp37754p37775.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

Re: Performance improvement suggestions

2013-01-17 Thread Glenn Adams
If you want to use strict mode using the command line interface, then you need to use the FOP configuration file to specify strict validation mode. See http://xmlgraphics.apache.org/fop/1.1/configuration.html. In other words, insert true into your fop.xconf file at the appropriate level. On Thu,

Re: Performance improvement suggestions

2013-01-17 Thread nels
first? - just starting out with FOP - don't hurt me! -- View this message in context: http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37781.html Sent from the FOP - Users mailing list archive at Nabble.com. --

Re: Performance improvement suggestions

2013-01-18 Thread Pascal Sancho
Hi, can you attach your file, rather than copy/paste it? that will allow one to test it easily. 2013/1/18 nels : > Glenn Adams-2 wrote >> If you want to use strict mode using the command line interface, then you >> need to use the FOP configuration file to specify strict validation mode. >> See h

Re: Performance improvement suggestions

2013-01-18 Thread nels
don't hurt me! -- View this message in context: http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754p37786.html Sent from the FOP - Users mailing list archive at Nabble.com. - To unsubscribe, e

Re: Performance improvement suggestions

2013-01-20 Thread nels
ot; ] ; then . "$HOME/.foprc" fi I have removed the offending period and it now runs. Thanks for all the help. - just starting out with FOP - don't hurt me! -- View this message in context: http://apache-fop.1065347.n5.nabble.com/Performance-improvement-suggestions-tp37754

Re: Performance improvement suggestions

2013-01-20 Thread Glenn Adams
t; ] ; then > . $HOME/.fop/fop.conf > fi > if [ -f "$HOME/.foprc" ] ; then > . "$HOME/.foprc" > fi > > I have removed the offending period and it now runs. Thanks for all the > help. > > > > - > just starting out with FO