Re: Layout Redesign

2001-08-30 Thread Arved Sandstrom
At 08:34 AM 8/30/01 +0200, Keiron Liddle wrote: >I have written a document describing a possible way that we could implement >the layout process (also has some info about user agent). > >I am hoping for feedback (particularly from those who have looked at the >layout - Arved, Karen, Peter and othe

Help with Driver

2001-08-30 Thread John H. Wyman
Title: Message In July I developed an application based on the then current .19 and used both TransformerFactory (since I have many parameters to pass. I then used ..snip transformer.transform(xmlSource, result); Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); driver.buil

Re: Markers

2001-08-30 Thread Arved Sandstrom
At 06:55 AM 8/30/01 -0700, David Nyakundi wrote: > >Is there a version of FOP that works with markers? Well, there should be quite soon, maybe FOP 0.20.2. I had marker support sketched out in CVS but some other (more important and more mature) code that we put in just prior to the last release

RE: Basic Link

2001-08-30 Thread COFFMAN Steven
I applied the patch, which seemed to solve the problem, but I would like someone to examine it and change a bit. 1. the idValidation vs. idUnvalidated names are very confusing without comments that explain what's what. 2. the createID method needs better commenting. I'm not entirely sure I corre

cvs commit: xml-fop/src/org/apache/fop/pdf PDFDocument.java

2001-08-30 Thread gears
gears 01/08/30 16:21:40 Modified:src/org/apache/fop/datatypes IDReferences.java src/org/apache/fop/pdf PDFDocument.java Log: Applies [EMAIL PROTECTED]'s patch, which would have been very hard to characterize had he not already done so. That he fixed it is just gra

Re: Merging Cells In Tables

2001-08-30 Thread Enrico Schnepel
Hello, number-columns-spanned and number-rows-spanned it should be the same behavior as in html enrico ps: if you have html documents you can convert them using the convertor html2fo available at http://sourceforge.net/projects/html2fo. the fo files are not perfect but you will get a basis wh

Merging Cells In Tables

2001-08-30 Thread Kenneth Trio
Hello, Has anyone been able to merge cells in an fo:table, much like how table cells in HTML are merged via COLSPAN and ROWSPAN? Thanks for any information you can share. Ken - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Merging Cells In Tables

2001-08-30 Thread Kenneth Trio
Hello, Has anyone been able to merge cells in an fo:table, much like how table cells in HTML are merged via COLSPAN and ROWSPAN? Thanks for any info you can share. Ken - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Driver use

2001-08-30 Thread John H. Wyman
In July I developed an application based on the then current .19 and used both TransformerFactory (since I have many parameters to pass. I then used ..snip transformer.transform(xmlSource, result); Driver driver = new Driver(); driver.setRenderer(Driver.RENDER

fop building error

2001-08-30 Thread Guillaume Rousse
I got those two errror message when building fop 0.20.0 (taken from CVS), and using xerces-j 1.4.2 and xalan-j 2.2.D9: javax.xml.transform.TransformerException: -512 at org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.java:1226) at org.apache.xalan.tran

Re: keep-with-next problem on multi column text

2001-08-30 Thread Don Wellington
Hi Bodo- First, I don't think I qualify as better overlooking FOP, since my one and only contribution is getting that list-item thing to do what I wanted. But, here are some things I found out during that process, and answered below: --- "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi Don, A

Re: keep-with-next problem on multi column text

2001-08-30 Thread Don Wellington
Hi Arved- I didn't get any reply that the patch was comitted, and I am stuck behind a firewall that doesn't allow IP tunneling. So, I don't have access to the CVS repository. Don --- Arved Sandstrom <[EMAIL PROTECTED]> wrote: > Sure, absolutely, I'll help out as a resource. > > Did your patch

RE: NullPointerException

2001-08-30 Thread COFFMAN Steven
So you're using FOP 0.20.1, you've got fop.jar, batik.jar, xerces.jar, xalan.jar, and jimi.jar in your classpath, right? One way to do it, is to embed FOP according to website: http://xml.apache.org/fop/embedding.html Which describes this: Driver driver = new Driver(new InputSource (args[0]),

NullPointerException

2001-08-30 Thread Jean-François Selber
can someone help me? thanks > > > > Driver driver = new Driver(); > > > > java.lang.NullPointerException > > at > > org.apache.fop.svg.SVGElementMapping.addToBuilder(SVGElementMapping.java, > > Compiled Code) > > at org.apache.fop.apps.Driver.addElementMapping(Driver.java:373) > > at org.apac

AW: My FO data is in a Document ... how to get it into a String?

2001-08-30 Thread Beer, Christian
Hello Erich! You can use the transformer: TransformerFactory tf = TransformerFactory.newInstance(); Transformer t = tf.newTransformer(); // Without XSL -> 1 to 1 transforming ByteArrayOutputStream out_str = new ByteArrayOutputStream(); t.transform(out, out_s

RE: -> want EURO character instead of #

2001-08-30 Thread COFFMAN Steven
Axel, I don't think he's embedding the font. That would explain why it displays different on Windows 2000 and Linux, regardless of where it was generated. Mark, I think your font in Linux doesn't contain the Euro character. What font is it, and what Linux distribution/version are you using? -Stev

RE: My FO data is in a Document ... how to get it into a String?

2001-08-30 Thread Kilmer, Erich
Just found it: document.getDocumentElement().toString(); -Original Message- From: Kilmer, Erich [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 10:29 AM To: '[EMAIL PROTECTED]' Subject: My FO data is in a Document ... how to get it into a String? Hello again, Hope this ques

Re: How to scale images ?

2001-08-30 Thread Harald Hett
Hi, Etienne! Recently I have faced this problem, as well. To solve this, I wrote an extension class ImageInfo, that provides the following functions: public int height(String anImageUrl); public int width(String anImageUrl); The implementation of these functions use the classes

My FO data is in a Document ... how to get it into a String?

2001-08-30 Thread Kilmer, Erich
Hello again, Hope this question is OK for this group. I think that it is since it is a question on org.apache.fop.tools.xslt.XSLTransform. The problem is that I am trying to do everything in memory. The XML and resulting FO data are never on disk. The call I am trying to make is: org.apache.fop

Re: Embedding fonts

2001-08-30 Thread Drew Hodge
Thanks very much Tore -- embedding the .pfb file solved the problem. Drew -- On Wed, 29 Aug 2001 22:32:58 Tore Engvig wrote: > > >On Wed, 29 Aug 2001, Drew Hodge wrote: > >> I have successfully created new XML font metrics files using the PFMReader utility >in FOP 0.20.1. I run FOP specify

Markers

2001-08-30 Thread david nyakundi
Is there a version of FOP that works with markers? __ Do You Yahoo!? Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger http://im.yahoo.com - To unsubscri

Re: -> want EURO character instead of #

2001-08-30 Thread axel . spohr
as the font is embedded in the PDF, it does not matter if the viewing platform has a correct font file including the euro symbol, only the platfomr that you run FOP on is relevant to the PDF (which would be your linux box). HTH Axel -

Letter Spacing / Condensed Text

2001-08-30 Thread Roarke Gaskill
Three questions:   Can the current version of FOP adjust letter spacing in words?   Can the current version of FOP condense text, that is, adjust the font width by percentage?   If one or both of the above are not possible, what are some ideas on how I could make such adjustments to the FOP

Re: -> want EURO character instead of #

2001-08-30 Thread Marc Mueller
Well, I am only generating the PDF under linux. But i am using windows to display the PDF later. Marc "[EMAIL PROTECTED]" wrote: > are you sure that your font on linux contains the euro character at all? > there are a lot of font descripton files around that are not yet up to > date in this re

Re: -> want EURO character instead of #

2001-08-30 Thread [EMAIL PROTECTED]
are you sure that your font on linux contains the euro character at all? there are a lot of font descripton files around that are not yet up to date in this respect. bodo Marc Mueller wrote: >Hi, > >I've got the following problem: > >My XML input contains the european Euro-Character. After rend

-> want EURO character instead of #

2001-08-30 Thread Marc Mueller
Hi, I've got the following problem: My XML input contains the european Euro-Character. After rendering into PDF there is a # sign at the place, the euro was before. This happens only under Linux, when transorming under Windows 2000 everything seems to be OK.. Any idea how to fix that ??? Ki

RE: Embedding fonts

2001-08-30 Thread Drew Hodge
Thanks Brigette. According to the File/Document/Properties/Fonts dialog, my new fonts are being embedded (they're listed under 'Actual fonts'), but Acrobat Reader warns me that it had difficulty extracting the embedded fonts when I open a page that has the new fonts. The page displays correct

Leader

2001-08-30 Thread Keiron Liddle
The problem with the leader is that the default value for the maximum length (leader-length.maximum) is 100% and the code was reading that value as 0. This resulted in a 0 length leader. - To unsubscribe, e-mail: [EMAIL PROTECTED

cvs commit: xml-fop/src/org/apache/fop/fo/flow Leader.java

2001-08-30 Thread keiron
keiron 01/08/30 04:33:38 Modified:src/org/apache/fop/fo/flow Leader.java Log: will handle max leader length better, default was 0 before Revision ChangesPath 1.11 +9 -3 xml-fop/src/org/apache/fop/fo/flow/Leader.java Index: Leader.java ==

Re: Chinese characters line-breaking

2001-08-30 Thread Frank Chen
- Original Message - From: "Frank Chen" <[EMAIL PROTECTED]> To: "Alex McLintock" <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 5:49 PM Subject: Re: Chinese characters line-breaking > Alex: > > I'll do it. Please wait some time... > > --Frank > - Original Message - > From:

How to scale images ?

2001-08-30 Thread Etienne Baert \(SPSInfoquest nv\)
Dear fop-ers, I have to include a generated picture into a pdf document. I am thus using . However, as my image is the result of a servlet process sent as jpeg, I do not know in advance the image size. Once the size of the image fits the available size, I do not have any problem ... but in othe

Re: Basic Link

2001-08-30 Thread Daniel Knapp
> Basic links that have a destination that will be on a following page are > broken. > The changes involving the stream renderer do not check to make sure that > the links are resolved before rendering the page, or more correctly, the id > references don't care about basic links. Unfortunately th

Re: Basic Link

2001-08-30 Thread Daniel Knapp
> Basic links that have a destination that will be on a following page are > broken. > The changes involving the stream renderer do not check to make sure that > the links are resolved before rendering the page, or more correctly, the id > references don't care about basic links. You have just fo

Basic Link

2001-08-30 Thread Keiron Liddle
Basic links that have a destination that will be on a following page are broken. The changes involving the stream renderer do not check to make sure that the links are resolved before rendering the page, or more correctly, the id references don't care about basic links. To fix this someone will n

Re: keep-with-next problem on multi column text

2001-08-30 Thread [EMAIL PROTECTED]
Hi Don, Arved i would be greatfull to work with someone on a related problem, who better overlooks FOP then i do at the moment . right now i have some questions: 1. i do not fully understand about the numerical and symbolic values for the keep-* stuff. the standard says (in "4.8 Keeps and Brea

TTF font embedding and using the correct Windows directory

2001-08-30 Thread Jens Schaefers
Hi, I've got a question: how is it possible, if at all, to use an environment variable in userconfig.xml as wildcard for the Windows directory location to build a path to the Fonts directory? I.e. when I use Fop on NT and W2K I have something like c:\winnt\fonts. Or another drive letter. And whe

cvs commit: xml-fop/src/org/apache/fop/layout/inline ForeignObjectArea.java

2001-08-30 Thread keiron
keiron 01/08/30 03:09:03 Modified:docs/examples/svg embedding.fo external.fo src/org/apache/fop/svg SVGElement.java src/org/apache/fop/render/pdf PDFRenderer.java src/org/apache/fop/layout/inline ForeignObjectArea.java Added: docs/ex

Re: "Dynamic" leader lengths

2001-08-30 Thread Mick Farmer
Dear Darren & fellow FOPers, I also have mentioned this problem twice, but no response has been forthcoming. Could someone at least accept that there is domething wrong. Regards, Mick /"\ \ / X AS

fop-dev@xml.apache.org

2001-08-30 Thread Jean-François Selber
why column-width cannot be in percentage in a table like this: ? thanks in advance - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

[DO NOT REPLY: Bug 3354] internal link not working [fop 0.20.1]

2001-08-30 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3354

[DO NOT REPLY: Bug 3354] internal link not working

2001-08-30 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3354

[DO NOT REPLY: Bug 3356] New: the FOP extension "bookmark" does not work in FOP 0.20.1

2001-08-30 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3356

Annotations to Bug #3354

2001-08-30 Thread Daniel Knapp
Hi, okay, the example I've given is in this way not correct. I have to explain a little more to see the bug. If you write a FO-document with internal-basic-links the way I specified, there's no error. The error happens in the document attached to this mail. When copying the relevant lines into a

NullPointerException using when using new Driver() fop 0.20.1

2001-08-30 Thread Jean-François Selber
soory it was with fop 0.20.1 - Message d'origine - De : "Jean-François Selber" <[EMAIL PROTECTED]> À : <[EMAIL PROTECTED]> Envoyé : jeudi 30 août 2001 11:01 Objet : help: NullPointerException using when using new Driver() > Driver driver = new Driver(); > > java.lang.NullPointerExceptio

help: NullPointerException using when using new Driver()

2001-08-30 Thread Jean-François Selber
Driver driver = new Driver(); java.lang.NullPointerException at org.apache.fop.svg.SVGElementMapping.addToBuilder(SVGElementMapping.java, Compiled Code) at org.apache.fop.apps.Driver.addElementMapping(Driver.java:373) at org.apache.fop.apps.Driver.addElementMapping(Driver.java:384) at org.apa

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

2001-08-30 Thread keiron
keiron 01/08/30 01:50:00 Modified:src/org/apache/fop/svg PDFGraphics2D.java Log: fixed dasharray units for small values that round to 0 Revision ChangesPath 1.17 +9 -3 xml-fop/src/org/apache/fop/svg/PDFGraphics2D.java Index: PDFGraphics2D.java =

AW: Trying to transform XML to XSL:FO so I can convert it?

2001-08-30 Thread Beer, Christian
Hi Erich! To get a String into a org.w3c.Document you could do the following: String src = "mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 29. August 2001 21:51 An: [EMAIL PROTECTED] Betreff: Trying to transform XML to XSL:FO so I can convert it? OK, finally got the FopServlet to work, thanks f

[DO NOT REPLY: Bug 3354] New: internal link not working

2001-08-30 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3354