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 sh

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 PROTEC

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 no obligation to do so no obligation is bold, but not underlined. I'm using FOP 0.20.4 Thanks for any help, Scott - To unsub

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 b

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

2002-12-11 Thread Scott Moore
> Sorry, hadn't had time to fix this. While the fix is not all > that hard in itself, it may have widespread consequences and > therefore needs some extended testing. > > J.Pietschmann If you could post the changes, I'd like to implement them in my local version of FOP and see what happens. Thank

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/

page-position=first

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

RE: Why changes encoding of Symbol font ?

2002-06-24 Thread Scott Moore
>Could somone tell why does Fop v.0.23 change the encoding of the Symbol Font Apparently there was a bug in previous versions which is fixed in 0.23. The character positions in the font have changed as a result. Your symbol characters are still there, you just need to look up the proper characte

RE: Going nuts centering a table

2002-06-11 Thread Scott Moore
> -Original Message- > From: Neil Cooper [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 11, 2002 12:33 AM > To: [EMAIL PROTECTED] > Subject: Going nuts centering a table > > > Hi, > > After going nuts for a day and a half and also trawling the > archives of > fop-dev and fop-user and

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 th

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 PROTECT

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 informatio

Adding Garamond font to FOP

2002-05-21 Thread Scott Moore
I've tried adding the Garamond font to FOP, and everything works fine except when I need a bold italic font. I never did find a TTF file for Garamond Bold Italic, just bold and italic separate. Is there a way to get garamond in bold and italic? MS-Word seems to be able to do it without a problem

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 w

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

2002-05-02 Thread Scott Moore
> -Original Message- > From: Keiron Liddle [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 02, 2002 4:15 AM > To: [EMAIL PROTECTED] > Subject: Re: Adding Fonts - Must I use absolute paths in > fopconfig.xml? > > > > This is a bug. The base is ignored when reading font information. >

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 (sup

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 ju

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 th

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 oth

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 http://www.w3.org/1999/XSL/Format";>

What happened to ZapfDingbats?

2002-04-26 Thread Scott Moore
I've been using the following construct to create a "bullet" in PDF: l 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 least every character I tested) is a pair of scissors. Wha

Re: SVG/Graphing->PDF

2002-04-18 Thread Scott Moore
I use the NetCharts Beans graphing product from www.visualmining.com Their charts are extremely good and the product is competitively priced (better than most actually). I don't work for them, just use their product. > Any body else using something else that is low cost and provides 2D/3D > cha

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 teste

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: possible to specify required spaces?

2002-04-01 Thread Scott Moore
I use 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 to specify required spaces? This

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, works. I

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 fil

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: "Zah

RE: SVG Problem with FOP

2002-01-31 Thread Scott Moore
t 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

RE: Whitespace

2002-01-29 Thread Scott Moore
Okay, figured it out. Sorry about the post. 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 0.20.3rc, is there a way to preserve

Whitespace

2002-01-29 Thread Scott Moore
Using 0.20.3rc, is there a way to preserve two spaces in a ?  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/ 7600

Re: Images in region-start

2002-01-25 Thread Scott Moore
:   Have you tried the "content-height"  and "content-width" properties?   Carmelo - Original Message ----- From: Scott Moore To: FOP User Sent: Friday, January 25, 2002 4:31 PM Subject: Images in region-start I'm trying to

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 u

SVG Problem with FOP

2002-01-25 Thread Scott Moore
I'm trying to embed the following SVG into my XSL-FO and run it thruFOP (0.20.3rc).  Although the SVG looks fine using Adobe's SVG viewer and Batik's viewer, I get anerror (below) from FOP.  Apparently, it doesn't like the url() referenceto the .  How can I get this to work? Thanks for any