RE: Column / character width question

2003-05-08 Thread Scott Moore
On page 2, look at the box labeled Key Facts. This is where I want to create a two column region. Warning: it's a 3 MB PDF, but it is a demo of what FOP can do. Is the text in Key Facts dynamic? Why can't you use a 2 column table in that region? If the text is always the same, you should

Underlining words

2003-03-06 Thread Scott Moore
Is it possible to underline words in a paragraph? I tried using this with no results: you are under fo:inline font-weight=bold border-bottom-style=solid border-color=black border-width=1ptno obligation/fo:inline to do so no obligation is bold, but not underlined. I'm using FOP 0.20.4 Thanks

RE: Underlining words

2003-03-06 Thread Scott Moore
Thanks, that did it. use following attribute text-decoration=underline border-... are not for inline blocks... greez, mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Pdf document is closing if I close another existing pdf.

2002-12-16 Thread Scott Moore
This issue has nothing to do with FOP. It's actually a bug with Acrobat Reader. If you watch your process list, you'll see one instance of AcroRd32.exe (Acrobat Reader), which is doing double-duty for displaying both PDFs. When you close the PDF outside of the browser, AcroRd32.exe dies, which

fo:page-number-citation, right alignment bug in 20.5rc

2002-12-11 Thread Scott Moore
I just tested the latest RC 20.5 and the right alignment bug for fo:page-number-citation still exists. Based on past postings, I was under the impression this was going to be fixed. What gives? Was it too hard to implement or just an oversight? Thanks, Scott

RE: SVG LinearGradient

2002-11-13 Thread Scott Moore
Can you please elaborate that a little? Feel free to provide small example illustrating the problem. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel It sounds a lot like an issue a had a while back that was never solved. What follows is my email from 1/24/02 I'm

page-position=first

2002-11-11 Thread Scott Moore
As mentioned, page-position=last does not work. But does page-position=first? Scott

RE: FOP Helvetica - is it really Arial?

2002-05-23 Thread Scott Moore
Thanks for all the responses. I'm gonna go with the assumption that Helvetica = Arial and not embed the Arial.TTF file, which bloats the PDF. Thanks, Scott -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 1:56 AM To: [EMAIL PROTECTED]

RE: Keeping whites space in blocks

2002-05-23 Thread Scott Moore
-Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTED] Sent: Thursday, May 23, 2002 6:38 AM To: [EMAIL PROTECTED] Subject: Re: Keeping whites space in blocks By default whitespace is collapsed. As often there is a lot of excess whitespace in xml. if you use this

FOP Helvetica - is it really Arial?

2002-05-21 Thread Scott Moore
Font Gurus, There's a debate raging in our company right now about the use of Arial and Helvetica in FOP produced PDF. After careful examination of both fonts, I can see absolutely no difference, even though Helvetica has minor but distinguishable differences from Arial. I'm using the

EPS Images

2002-05-20 Thread Scott Moore
I'm trying to insert an EPS image into my PDF with FOP. Looking thru the archives, I see that EPS is supposed to work, but only displays when the PDF is printed. So far, that seems to ring true. However, I have FOP embedded in a servlet, and the second time I try to create the same PDF

Re: Why is FO(P) a superior model than what most proprietary tool s propose

2002-05-01 Thread Scott Moore
I just keep track of it myself. Declare a member variable of type int and increment it everytime a request comes in and decrement it after the request is serviced (in a finally{} block, watch out for exceptions messing up your counter). Make sure you synchronize access to it and it should work

Adding Fonts - Must I use absolute paths in fopconfig.xml?

2002-05-01 Thread Scott Moore
I've got my own servlet with FOP which reads a fopconfig.xml file that I deploy with the servlet. So far, so good. However, when I added fonts to fopconfig.xml, I had a bunch of problems until I hardcoded the path to the font under my servlet. Obviously, this is a problem because my servlet

RE: table-footer at foot of table problem

2002-04-30 Thread Scott Moore
My guess is table-footer is working exactly as intended. Are you sure you don't want to use a page footer? Something that always gets placed at the bottom of a page? If so, look into using xsl-region-after fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format; fo:layout-master-set

RE: Why is FO(P) a superior model than what most proprietary tool s propose

2002-04-30 Thread Scott Moore
The short answer is you can't expect a large number of users to ask for reports at the same time and not run into memory problems. Believe me, I've stress tested my report server and hit this wall quickly. However, if you write your server to only run X number of reports at once and queue any

RE: Why is FO(P) a superior model than what most proprietary tool s propose

2002-04-30 Thread Scott Moore
Each request comes into the servlet on a separate Java Thread. I keep track of the number of reports currently being generated and Thread.sleep(1000) the queued threads. Every second or so the threads wake up, check to see if they should run (next in line and # reports running MAX) otherwise

What happened to ZapfDingbats?

2002-04-26 Thread Scott Moore
I've been using the following construct to create a bullet in PDF: fo:block font-family=ZapfDingbats font-size=7ptl/fo:block It's worked in 0.20.1, 0.20.2, 0.20.3rc but it doesn't work in FOP 0.20.3. Instead I get a pair of scissors. As a matter of fact, it looks like the whole font (or at

SVG Font Problem

2002-04-17 Thread Scott Moore
I'm having a problem with SVG fonts in FOP. When I use a Times italic font, I get the following error: ERROR 10190 [fop ] (): unknown font Arial,italic,normal so defaulted font to any I'm not even sure it's a Times font that shows up in this case. Bold SVG fonts have the same problem.

RE: SVG Font Problem

2002-04-17 Thread Scott Moore
-Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 17, 2002 7:38 AM To: [EMAIL PROTECTED] Subject: Re: SVG Font Problem Which version are you using? Are the characters being stroked? I'm setting strokeSVGText to false. I just tested it

RE: possible to specify required spaces?

2002-04-01 Thread Scott Moore
I use fo:block white-space-collapse=false which preserves spaces and works great with FOP. Scott -Original Message- From: Buonincontri, Steve (CAP, MMF, ITSS) [mailto:[EMAIL PROTECTED] Sent: Monday, April 01, 2002 5:51 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: possible

RE: Keeping it together

2002-02-19 Thread Scott Moore
You can get the debugging output back by asking for DEBUG output in the logging code. Scott -Original Message- From: Savino, Matt C [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 11:46 AM To: '[EMAIL PROTECTED]' Subject: RE: Keeping it together Supposedly in .20.3,

RE: ClassDefNotFoundError

2002-02-08 Thread Scott Moore
Make sure you use the batik.jar that comes with FOP and not the latest release of Batik. -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: Friday, February 08, 2002 12:01 PM To: [EMAIL PROTECTED] Subject: Re: ClassDefNotFoundError When I try to transfrom a fo

Re: XML, XSL a real problem

2002-02-01 Thread Scott Moore
Yes, at least the XML part. The XSLT is on the server so the client doesn't send it, but I could get it exactly the same way I get the XML. What exactly are you having problems with? Writing the servlet code to retrieve an XML document from a POST? Scott - Original Message - From:

RE: SVG Problem with FOP

2002-01-31 Thread Scott Moore
and the url reference is local to the document. Scott -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Wednesday, January 30, 2002 8:01 PMTo: [EMAIL PROTECTED]Subject: Re: SVG Problem with FOP At 10:43 am -0500 25/1/02, Scott Moore wrote: I'm trying

Whitespace

2002-01-29 Thread Scott Moore
Using 0.20.3rc, is there a way to preserve two spaces in a fo:block? Right now, it seems to be normalizing all my whitespace so my sentences run together with only one space between the punctuation and the next sentence. Scott Moore Senior Developer netDecide - http://www.netdecide.com

RE: Whitespace

2002-01-29 Thread Scott Moore
Okay, figured it out. Sorry about the post. fo:block white-space-collapse=false Glad to see FOP supports that attribute! Scott -Original Message- From: Scott Moore [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2002 4:18 PM To: Fop User (E-mail) Subject: Whitespace Using

Images in region-start

2002-01-25 Thread Scott Moore
I'm trying to place an image (JPEG)on the left side of my page that runs the whole length of the page inside the xsl-region-start. But, for the life of me the best it will ever do is approx. 3/4 of the length of the page (8.5inx11in). I've tried everything, including resizing the image