Re: colspan-type feature

2001-09-26 Thread Enrico Schnepel
number-rows-spanned is supported. I am already using it. Enrico Am Mittwoch, 26. September 2001 01:46 schrieben Sie: is this what you're after, Amit? fo:table-cell number-columns-spanned=3 i don't think number-rows-spanned is supported though, but i could be wrong. mic. -Original

Re: Anything wrong with this code

2001-09-26 Thread Semprini Davide
Hi, 01c701c145fd$006f6f70$[EMAIL PROTECTED]"> When the PDF data is sent back to my client. Am I suppose to tell my client (IE6) that this is a PDF file (or a stream). I do set response.contentType to "application/pdf". This is an information that you send correctly to the

Re: FOP Xerces 1.4.3

2001-09-26 Thread Alex McLintock
--- Michail Bikoulis [EMAIL PROTECTED] wrote: Hello, As far as I can see from the name of the Xerces jar file in FOP, version 1.2.3 is used. I am having the problem where Xerces hangs when an error is encountered in the XML file. I found out by reading the xerces-dev mailing list archives

Subscript in fop0_19_0 overlaps following line!

2001-09-26 Thread Klosa Uwe
Hi, I'm using FOP0_19_0 and I've got a problem with fo:inline vertical-align=subtext/fo:inline. the text overlapps the following line. Is this a known issue or is there a patch? Regards Uwe - To unsubscribe, e-mail: [EMAIL

Re: Subscript in fop0_19_0 overlaps following line!

2001-09-26 Thread Alex McLintock
--- Klosa Uwe [EMAIL PROTECTED] wrote: Hi, I'm using FOP0_19_0 and I've got a problem with fo:inline vertical-align=subtext/fo:inline. the text overlapps the following line. Is this a known issue or is there a patch? Merely a misunderstanding I think. You have essentially said to

fo:inline-container

2001-09-26 Thread ºúÖ¾Áú
hi all! if anyone implement the fo:inline-container ,please help me! thanks a lot! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: colspan-type feature

2001-09-26 Thread Corinna Hischke
Hi, if you really mean spanning COLUMNS, this it what you might be looking for: fo:table-cell number-columns-spanned=2 (an example can be found in the fop distribution in docs/examples/tables/headfoot.fo). - Corinna - Original Message - From: Amit [EMAIL PROTECTED] To: [EMAIL

RE: Opening PDF automatically in IE

2001-09-26 Thread Suhail Rashid
Hi, The problem is almost certainly with your setHeader or setContentType statements.. make sure u r not setting in setHeader Content-Type to application or octet-stream or Content-Disposition to attachment which will force a download... suhail -Original Message-From: Peter

cvs commit: xml-fop/src/org/apache/fop/svg SVGElement.java

2001-09-26 Thread keiron
keiron 01/09/26 05:00:43 Modified:src/org/apache/fop/render/awt AWTRenderer.java src/org/apache/fop/render/pdf PDFRenderer.java src/org/apache/fop/render/ps PSRenderer.java src/org/apache/fop/svg SVGElement.java Log: catches exception

RE: Opening PDF automatically in IE

2001-09-26 Thread Alistair Hopkins
IE doesn't seem to pay any attention to that. Try naming the download *.pdf: eg, instead of http://mysite.com/servlet/myservlet?downloadFile=doc.pdf try http://mysite.com/servlet/myservlet/doc.pdf?downloadFile=doc.pdf This sorted it for me! Alistair -Original Message-From:

FO and Sockets.

2001-09-26 Thread Hinrich.Boog
Hi there, I have a problem with using FOP over Sockets, maybe someone out there knows a workaround. I just wanted to implement a small formatting Server, that listens to a port and in case a request comes in, takes the xml:fo document from that request, transforms it and sends the response

Re: FO and Sockets.

2001-09-26 Thread Weiqi Gao
On Wed, 2001-09-26 at 07:50, Hinrich.Boog wrote: [...] The communication works fine, the sending of the document and the transforming as well, I just have to put it together, which does not work: My client sends the stuff, the server starts transforming, but before the server is finished,

Re: FO and Sockets. (

2001-09-26 Thread Hinrich.Boog
I would post it to some other mailing list, if it wasn't about the Fop-Renderer. How can I check how and if the Renderer flushes the result to my output Stream ? I was wondering if anyone has used it in those combinations

Anything wrong with this code (please look at attachements)

2001-09-26 Thread Carmelo Montanez
Hello all Thanks Sempri for all your comments. For anyone interested, I am attaching a very slimed down copy of my Servlet. I am hardwiring the file name (FO file) inside the servlet (for convenience of running). I am also attaching a "dummy" HTML file to call the servlet (no parameters are

Re: colspan-type feature

2001-09-26 Thread Amit
Thank you all for helping out. I have both the number-columns-spanned and number-rows-spanned working Amit Amit wrote: hi all In my xsl file I want to basically have a feature like html's colspan. Anybody know the syntax ..I have tried looking a few places and haven't been able to

RE: FOP WARNING - Please Help!

2001-09-26 Thread Savino, Matt C
I downloaded and built the latest CVS. When I tried to use the XSLTInputHandler, my error switched from the weird one I was getting to yet another null pointer exception. That got me thinking maybe I should just try doing the simplest transform of all time and see if it isn't something with my

FOP Digester is messing up

2001-09-26 Thread Paul Furbacher
Two digests in a row have come in quite severely malformed. The header seems to be completely missing. No subject line, no table of contents (or whatever it is called. Can someone take a look at what's going on with it, and maybe attempt to fix it? Thanks. Paul Furbacher

image on every pdf page

2001-09-26 Thread Amit
I have images working .. fo:block fo:external-graphic src=http://localhost:8100/somepic.gif content-height=3cm content-width=8cm/ /fo:block Is there a way so that this image is always on a page when a page break occurs in the pdf file.(kindda like page numbers..)

Re: image on every pdf page

2001-09-26 Thread Eric Dalquist
You might be able to put the image in the footer section of the page. -Eric Dalquist - Original Message - From: Amit [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 26, 2001 2:05 PM Subject: image on every pdf page I have images working .. fo:block

Re: image on every pdf page

2001-09-26 Thread jthaemlitz
You need to set up the static content areas (you probably already have region-before and region-after in your simple-page-master). You'll want to put in one of the following in your page-sequence depending on where you want it to show up. static-content flow-name=xsl-region-before (for

Re: image on every pdf page

2001-09-26 Thread Amit
My code is listed below...the image does not show up in the pdf fo:static-content flow-name=xsl-region-before fo:block fo:external-graphic src=http://localhost:8100/somepic.gif; content-height=3cm content-width=8cm/ /fo:block /fo:static-content If i

Re: image on every pdf page

2001-09-26 Thread jthaemlitz
I think you want height' and width NOT content-height and content-width on your external-graphic. Make your static-content region-before real big for testing (extent=2in), then trim it down. If the image doesn't fit in the static region it will be blank. I bet the static region is working

Centering a table horizontally

2001-09-26 Thread Trevor_Campbell
Can anyone tell me how to center a fo:table horizontally with in the page body. I Know I can add padding to the left of the table, but is there a simple centering tag for a whole table (not the text within it). Trevor - To

DO NOT REPLY [Bug 3846] New: - Segmentation fault on build. RedHat 6.2 with Sun JDK 1.3.1_01

2001-09-26 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=3846. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.