Re: Blank half-cell on page1; text showing on page 2

2008-01-03 Thread Vincent Hennebert
Hi Akagi, Akagi Kobayashi wrote: Hi Chris and Vincent I don't seem to be able to run the fop command on my system, so am sending the build file to Vincent. (Actually by cc-ing to fop-users you sent it to the whole list.) The problem appears to occur only when there is a single line space

Error

2008-01-03 Thread irene23
Hello, I have this error: C:\fop-0.93fop -xml solucion2/prueba.xml -xsl solucion2/prueba.xsl -pdf solucio n2/prueba.pdf java 03-ene-2008 13:07:01 org.apache.fop.fo.FOTreeBuilder$MainFOHandler endElement ADVERTENCIA: Mismatch: page-sequence (http://www.w3.org/1999/XSL/Format) vs. roo t

Re: attributes of block

2008-01-03 Thread irene23
Hello, I have this error: C:\fop-0.93fop -xml solucion2/prueba.xml -xsl solucion2/prueba.xsl -pdf solucio n2/prueba.pdf java 03-ene-2008 13:07:01 org.apache.fop.fo.FOTreeBuilder$MainFOHandler endElement ADVERTENCIA: Mismatch: page-sequence (http://www.w3.org/1999/XSL/Format) vs. roo t

Re: attributes of fo:table

2008-01-03 Thread irene23
Hello, I have this error: C:\fop-0.93fop -xml solucion2/prueba.xml -xsl solucion2/prueba.xsl -pdf solucio n2/prueba.pdf java 03-ene-2008 13:07:01 org.apache.fop.fo.FOTreeBuilder$MainFOHandler endElement ADVERTENCIA: Mismatch: page-sequence (http://www.w3.org/1999/XSL/Format) vs. roo t

Noisy output when formatting DocBook despite -q

2008-01-03 Thread Warren Young
I'm trying to fix or suppress the warnings I'm getting from FOP 0.94 in formatting MySQL++'s (http://tangentsoft.net/mysql++/) user manual. (To try it yourself, download MySQL++, then go in to doc/userman and say make pdf.) I get 1800+ lines of errors, but there are just a few types: -

How to put batch process into background on Mac OS

2008-01-03 Thread Terry Ofner
This is not a huge matter. More on the line of an annoyance. And I may need to take this question to a java list rather than this list. If so, just point me in the right direction. At any rate, I have an XSLT stylesheet that produces 50+ separate fo documents. I then run the shell script

Re: How to put batch process into background on Mac OS

2008-01-03 Thread Steve Quirk
Use 'nice' to run it. Alter the script so that the fop execution looks like: nice /Applications/fop-0.94/fop -fo $foo -pdf ../pdf_files/$state.pdf You can check the man page for nice for more info. Steve On Thu, 3 Jan 2008, Terry Ofner wrote: This is not a huge matter. More on the line

Re: How to put batch process into background on Mac OS

2008-01-03 Thread Terry Ofner
nice does not seem to change the outcome. It only changes the priority of the process. When it runs, it still places fop in the foreground. Here is what I have tried: nice /Applications/fop-0.94/fop -fo $foo -pdf ../pdf_files/$state.pdf nice -n 20 /Applications/fop-0.94/fop -fo $foo -pdf

Re: How to put batch process into background on Mac OS

2008-01-03 Thread James Howard
Actually that probably won't do what you want. Adding - Djava.awt.headless=true to the vm arguments in the fop script probably will work. On Jan 3, 2008, at 8:36 AM, Steve Quirk [EMAIL PROTECTED] wrote: Use 'nice' to run it. Alter the script so that the fop execution looks like: nice

Re: How to put batch process into background on Mac OS

2008-01-03 Thread Terry Ofner
James, Your suggestion works. I have no idea where the vm arguments are in the fop script. So I changed my script to invoke the jar directly, adding the headless argument. I had to move all the jar files in fop/ lib to the build directory to get this to work: java -Djava.awt.headless=true

Re: How to put batch process into background on Mac OS

2008-01-03 Thread Steve Quirk
I had looked at the fop script I had and saw it there. I wasn't sure that I had made the change or not. In any case, if it's helpful, it should look like: fop_exec_command=exec \$JAVACMD\ ${ENDORSED} -Djava.awt.headless=true $LOGCHOICE $LOGLEVEL -classpath \$LOCALCLASSPATH\ $FOP_OPTS

Re: How to put batch process into background on Mac OS

2008-01-03 Thread Terry Ofner
Steve, Yep. That works too. On 0.94 the fop_exec_command is near the bottom of the fop script and looks like this: fop_exec_command=exec \$JAVACMD\ -Djava.awt.headless=true $LOGCHOICE $LOGLEVEL -classpath \$LOCALCLASSPATH\ $FOP_OPTS org.apache.fop.cli.Main $fop_exec_args Note: The

Re: Noisy output when formatting DocBook despite -q

2008-01-03 Thread J.Pietschmann
Warren Young wrote: I'm trying to fix or suppress the warnings I'm getting from FOP 0.94 in formatting MySQL++'s (http://tangentsoft.net/mysql++/) user manual. I'm afraid you wont have much luck... ... - fo:table, table-layout=auto is currently not supported by FOP I've tried disabling this

Re: Error

2008-01-03 Thread J.Pietschmann
irene23 wrote: I have this error: ... Caused by: java.lang.IndexOutOfBoundsException: Index: 90, Size: 90 at java.util.ArrayList.RangeCheck(Unknown Source) at java.util.ArrayList.get(Unknown Source) at

How to put batch process into background on Mac OS

2008-01-03 Thread Eric Vought
If you are doing that much formatting, you may really want to check out using ant for your build process, especially if doing multiple output formats. I use this on Mac OS X and have no problem with background running or anything else. My rule for PDF formatting is just: target

How to supress page breaks between bullet and text?

2008-01-03 Thread siegfried
I have some bulleted items that consist solely of a gif file. Fop is inserting page breaks between the bullet and the gif file. How may I suppress this in my XSLT? In the case that I have a paragraph of text, I would want it to break after the first line of text. Thanks, Siegfried

Re: How to supress page breaks between bullet and text?

2008-01-03 Thread Jay Bryant
I have some bulleted items that consist solely of a gif file. Fop is inserting page breaks between the bullet and the gif file. How may I suppress this in my XSLT? In the case that I have a paragraph of text, I would want it to break after the first line of text. Hi, Siegfried, Try putting the