Re: UniCode - ? - CLOSED

2002-06-10 Thread Ali_Binus
Thanks J, it's work and i want to share about encoding hope it help for others. try this free site : http://www.w3schools.com/xml/xml_encoding.asp Terima kasih, Ali - Original Message - From: J.Pietschmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 02, 2002 3:00 PM

How do I learn to understand the W3 XSL Recommendation?

2002-06-10 Thread David Penton
Hello all. I have looked at various sources to understand xsl-fo, and have had quite a lot of success in actually getting FOP to produce usable results. However, I am now embarking on evaluation of various engines (including FOP) that leads me to believe that I should understand the W3

RE: row fragmentation problem..

2002-06-10 Thread vinod . nayak
No, Please tell me the usage. Though I used it, it wasn't working.. -Original Message-From: Florence Deforge [mailto:[EMAIL PROTECTED]Sent: Friday, June 07, 2002 5:16 PMTo: [EMAIL PROTECTED]Subject: Re: row fragmentation problem.. Have you tried the keep-together

Re: How do I learn to understand the W3 XSL Recommendation?

2002-06-10 Thread Bertrand Delacretaz
On Monday 10 June 2002 06:04, David Penton wrote: . . .leads me to believe that I should understand the W3 Recommendation in its more technical aspects better. A good starting point is http://www.w3.org/Style/XSL/ , it contains links to a number of resources. I find it important to consider

Re: row fragmentation problem..

2002-06-10 Thread Florence Deforge
Example : fo:table border="none" text-align="left" fo:table-column column-width="90mm"/ fo:table-column column-width="90mm"/ fo:table-body fo:table-row border="none" keep-together="always" fo:table-cell border="0" !-- cell content -- /fo:table-cell fo:table-cell border="0" !--

Re: Problem with not stroking SVG text (AND BUG IN FOP 0.20.3)

2002-06-10 Thread Keiron Liddle
try using: addTranscodingHint you are removing transocding hints with the setTranscodingHints. The hint has a StringKey as the key and a Boolean as the value. On Sat, 2002-06-08 at 03:03, Vollmer, Thomas - CannonSA wrote: Map hints = new HashMap(); hints.put(PDFTranscoder.KEY_STROKE_TEXT,

AW: Landscape Layout

2002-06-10 Thread Mihael Knezevic
i'm generating pdf in landscape format using this layout-set. fo:layout-master-set fo:simple-page-master master-reference=Body page-height=21cm page-width=29.7cm margin-top=2mm margin-left=5mm margin-bottom=2mm margin-right=5mm fo:region-body

RE: Which Batik version in FOP 0.20.3

2002-06-10 Thread Keiron Liddle
Most likely if it works then they are compatible. I can't remember if there where any changes between those versions that would cause problems. On Fri, 2002-06-07 at 19:47, Vollmer, Thomas - CannonSA wrote: Thanks, Keiron. And here's a follow-up question... I'm trying to convert an SVG to

Re: Problem with image resolution in FOP

2002-06-10 Thread pascal.munerot
Hi, This is my fault. I did not make it clear that I was generating barcodes via an API (IDAutomation actually) that generates images. I already tried to give fixed values to content-width and content-height but the printed results looks awkward. It seems that the scaling algorithm downgrades the

External Graphic

2002-06-10 Thread Urban, Patrick
Can anyone help me debug this. I am looking to simply pull a logo onto my report with this code... fo:external-graphic src=http://epndev0006/Logo_Plain.gif/ this error is being output from FOP... [ERROR]: Error while creating area : Error with image URL: http://epndev0006/Logo_Plain.gif and no

XSLT for HTML to XSLT for XSL:FO

2002-06-10 Thread jmao
Hi, I have large number of xsl style sheet used to generate HTML pages from original XMLs. Now there is a requirement to generate PDF for each of these HTML pages. One thought is to use a seperate XSL to transform the XSLs used for HTML generation to XSLs can be used to generate XSL:FO from

Re: embedded fop...show progress?

2002-06-10 Thread Oleg Tkachenko
Carter, Will wrote: thanks for the idea. I will check out getLogger(). Your first suggestion looks like the best bet. my fop servlet sends the pdf outputstream to a file, not the browser, so all I have to do is redirect the log output to the browser somehow...instructing it to reload every time

Fonts don't line up in table

2002-06-10 Thread Darrel Riekhof
I'm having trouble getting different sized fonts to line up in a table. Below is my xsl code. The smaller font is too high compared to the larger font. How do I get these different sized fonts to line up by their base? fo:table fo:table-column column-width=100pt/

RE: Problem with not stroking SVG text (AND BUG IN FOP 0.20.3)

2002-06-10 Thread Vollmer, Thomas - CannonSA
Keiron wrote: try using: addTranscodingHint you are removing transocding hints with the setTranscodingHints. Actually, that's not the case. Notice that I'm calling public void setTranscodingHints(Map hints) and NOT public void setTranscodingHints(TranscodingHints hints). The first does