Re: [PATCH] fix for looping table bug (maintenance branch)

2002-01-08 Thread Keiron Liddle
Hi Christian, Thanks for the patch. It has been applied. On 2002.01.07 18:54 Christian Geisert wrote: Hi, this patch should fix infinite looping on tables if keep_with or row spans are not fitting on a page. This hack just ignores all keeps for a table after the first page-break

cannot not use certain character in xml to make pdf

2002-01-08 Thread Nick Winger
hi ! i cannot use character 0xfc ( an ü ) ( which i need for german language ) and i cannot use 0xa0 ( a non braking space ) can i have fop to use all characters ( can i set the language ? ) where can i find a reference for all classes and methods for fop ? best regards Nick Winger

Re: cannot not use certain character in xml to make pdf

2002-01-08 Thread Alex McLintock
--- Nick Winger [EMAIL PROTECTED] where can i find a reference for all classes and methods for fop ? Er, the javadoc which is generated when you build a source version Alex PS Feel free to tell me any FAQ and answers so I can add them to the FAQ I maintain at

AW: cannot not use certain character in xml to make pdf

2002-01-08 Thread Beer, Christian
There is no problem using 'ü' or 'ß' or something. You must check the header of the xml-file: ?xml version=1.0 encoding=ISO-8859-1? The encoding specifies what characters you may use. If you use the header above, you can use 'ü', etc. without unicode or something! For nbsp; (non-breaking space

AW: cannot not use certain character in xml to make pdf

2002-01-08 Thread Nick Winger
thank you ! it seems to work... but now i get the exception: org.apache.fop.apps.FOPException: The entity sol was references, but not declared. do you know what this means ? greetings Nick Winger -Ursprüngliche Nachricht- Von: Beer, Christian [mailto:[EMAIL PROTECTED]] Gesendet:

AW: How to process wide tables

2002-01-08 Thread Kai Ulrich
How do you render ? with cocoon ? kai -Ursprngliche Nachricht-Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Gesendet: Montag, 7. Januar 2002 22:39An: [EMAIL PROTECTED]Betreff: How to process "wide" tablesI've figured out how to repeat certain table data on top of each

cvs commit: xml-fop/src/org/apache/fop/util - New directory

2002-01-08 Thread keiron
keiron 02/01/08 03:01:47 xml-fop/src/org/apache/fop/util - New directory - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: xml-fop/src/org/apache/fop/util CharUtilities.java

2002-01-08 Thread keiron
keiron 02/01/08 03:03:07 Added: src/org/apache/fop/util CharUtilities.java Log: utils for characters such as getting width and determining if space Revision ChangesPath 1.1 xml-fop/src/org/apache/fop/util/CharUtilities.java Index:

can someone help solving this exception ?

2002-01-08 Thread Nick Winger
hi ! i have a block which looks like this: fo:blockSUPPLYsol;TAKE-UP REEL TABLE/fo:block and i get the exception: org.apache.fop.apps.FOPException: The entity sol was referenced, but not declared. now i don't want to reference anything, the text between the block should just be normal text

Re: AW: FOP-XSL:dynamic external graphics

2002-01-08 Thread Romain Bertucelli
Hi all, Thanks a lot for the example, it will be very useful for me ! I tried to the same thing with xsl:include href={concat($filepathValue,'anXSLFile.xsl')}/ but I get an org.apache.xml.utils.URI$MalformedURIException: Path contains invalid character: { . Whithout the {}, the concat

RE: Fonts

2002-01-08 Thread Raúl Carazo
At the end, I use the fonts, but only if I set them on the weblogic dir. Is it necessary, or I can set in in the server dir? I hope this is the last question...! Thx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

AW: can someone help solving this exception ?

2002-01-08 Thread Beer, Christian
You wanted to use an entity, that isn't declared! You can't use nbsp; or something HTML knows. Get the ascii-value of sol; and replace it with: #asci-code;. -Ursprüngliche Nachricht- Von: Nick Winger [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 8. Januar 2002 13:38 An: Apache

background image

2002-01-08 Thread Gus
Does anyone know if FOP is now supporting the background properties. i.e. background-image, background-position-horizontal, background-repeat, etc? in the nightly builds maybe?! I'm trying to add a gif stamp in my pdf document, so that it would like it is on top of the written document? any

which graphic formats are supported ?

2002-01-08 Thread Nick Winger
hi ! in the fo:external-graphic tag: which graphic formats are supported ? e.g.: jpg ? and ... greetings Nick Winger (Software-Developer) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email:

Re: which graphic formats are supported ?

2002-01-08 Thread Gus
I'm using a gif , so for sure gif! Nick Winger wrote: hi ! in the fo:external-graphic tag: which graphic formats are supported ? e.g.: jpg ? and ... greetings Nick Winger (Software-Developer) - To unsubscribe,

RE: which graphic formats are supported ?

2002-01-08 Thread Dunning, John
tiff works -Original Message- From: Gus [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 08, 2002 10:57 AM To: [EMAIL PROTECTED] Subject: Re: which graphic formats are supported ? I'm using a gif , so for sure gif! Nick Winger wrote: hi ! in the fo:external-graphic tag: which

RE: which graphic formats are supported ?

2002-01-08 Thread Scott Moore
It seems from previous postings that the image will be resized to fit the width, but not the height. Make sure you have enough space to display the image. Try increasing the height until you see it. Scott -Original Message- From: Mitchell, Scott(LIT) [mailto:[EMAIL PROTECTED]] Sent:

please help...PCL renderer not formatting properly

2002-01-08 Thread Dudley . Butt
Has anyone else had any problems with the PCL renderer not formatting tables and borders correctly? In PDF the render works great, but as soon as i take the same .FO doc and try transform to PCL, it messes up the borders on my tables...any ideas?

RE: which graphic formats are supported ?

2002-01-08 Thread Mitchell, Scott(LIT)
the image is quite small so should fit in the area specified. If I have the image in the same directory as the xsl file, is this how it should be referenced? fo:external-graphic height=116mm width=152mm src=file:icase_header2.jpg/ -Original Message- From: Scott

Bug reports and bugs relating to PCL output...

2002-01-08 Thread Dudley . Butt
Doe anyone know now whether there any fixes have been made for the PCL Output bugs with regards to table formatting? ** This email and any files transmitted with it are confidential and intended solely for the use of the

Re: which graphic formats are supported ?

2002-01-08 Thread jthaemlitz
I think it's actually OS dependent. On NT lots of formats work. However on our AS/400's bitmaps seem to be the only thing that work. JohnPT

RE: please help...PCL renderer not formatting properly

2002-01-08 Thread Art Welch
This was a known problem. I believe that a fix has been committed to CVS, but I do not think that it has been incorporated into a distribution. There was talk of another distribution (last I heard it was planned for early in the new year). The fix should be in CVS, so if you can build from CVS

FOP 0.20.2: Segmentation fault

2002-01-08 Thread Keith Sauvant
Hi FOP Users! With SuSe Linux V7.1, FOP 0.20.2 and Java2 SDK, V1.3.1 the system answers my request: /usr/lib/java/bin/java -classpath /usr/lib/java/lib/classes.zip:/usr/local/fop/fop.jar:/usr/local/fop/lib/xerc es.jar:/usr/local/fop/lib/xalan.jar:/usr/local/fop/lib/batik.jar:/usr/local/

FOP 0.20.2: Segmentation fault

2002-01-08 Thread Keith Sauvant
more detailed (java -verbose): [DEBUG]: output file: temp/test.pdf [DEBUG]: OPTIONS [DEBUG]: no user configuration file is used [default] [DEBUG]: debug mode on [DEBUG]: dump configuration [DEBUG]: quiet mode on [Loaded org.xml.sax.SAXException] [Loaded org.apache.fop.apps.Options] [Loaded

RE: FOP 0.20.2: Segmentation fault

2002-01-08 Thread Keith Sauvant
With SuSe Linux V7.1, FOP 0.20.2 and Java2 SDK, V1.3.1 the system answers my request: ... solved in the meantime: with glibc 2.2.4 instead of 2.2 in works expectedly. Keith - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: background image

2002-01-08 Thread Gus
Has any body try to do an overlay image on a pdf document? is there any way to do it without the background-image property? Is background-image one of the properties that will be implemented any time soon? -Thanks Gus Gus wrote: Does anyone know if FOP is now supporting the background

Re: Unicode interpretation

2002-01-08 Thread Mike Akerman
What is the encoding type for your xml document? Michael Akerman - [EMAIL PROTECTED]Information Services (501) 575-5870 University of Arkansas

Footer problem : region-body encroaching on region-after

2002-01-08 Thread Patrick Andries
This is my first message on the list and I do not know whether what seems to me as a problem has already be reported. If one duplicates a few blocks in docs/examples/corresp.fo so as to generate an additional page, the last lines of the block on the new page overwite the footer instead of

DO NOT REPLY [Bug 5754] New: - conditional-page-master-reference works improperly on initial even pages

2002-01-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5754. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.