cvs commit: xml-fop/src/org/apache/fop/image JimiImage.java JpegImage.java

2002-08-20 Thread keiron
keiron 2002/08/19 23:52:37 Modified:src/org/apache/fop/image JimiImage.java JpegImage.java Log: fix for invalid colorspace on jpeg also catches error when jimi not in classpath Revision ChangesPath 1.14 +2 -2 xml-fop/src/org/apache/fop/image/JimiImage.java

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

2002-08-20 Thread keiron
keiron 2002/08/20 00:03:20 Modified:src/org/apache/fop/fo/flow InstreamForeignObject.java ExternalGraphic.java Log: handle errors better Revision ChangesPath 1.33 +10 -7 xml-fop/src/org/apache/fop/fo/flow/InstreamForeignObject.java

Re: Tasks - layout

2002-08-20 Thread Keiron Liddle
On Mon, 2002-08-19 at 22:58, J.Pietschmann wrote: Keiron Liddle wrote: - Add markers to page when areas added Is this really a good idea? Markers may be referenced long after they have been defined, tying them to the Page object would require keeping the pages in memory (see 0.20.5cvs:

Re: cvs commit: xml-fop/src/org/apache/fop/render/pdfPDFRenderer.java

2002-08-20 Thread Keiron Liddle
On Mon, 2002-08-19 at 22:34, J.Pietschmann wrote: [EMAIL PROTECTED] wrote: protected void renderRegion(RegionReference region) { ... +currentFontName = ; Wouldn't it be better to do this each time after writing a BT to the PDF output? (In startVParea(),

Re: Tasks - layout

2002-08-20 Thread Keiron Liddle
On Mon, 2002-08-19 at 23:13, J.Pietschmann wrote: Keiron Liddle wrote: - Implement table layout The table layout will use the same technique as the block layout. It will locate suitable breaks between rows or inside rows until table finished or end of bpd reached. Actually, what

cvs commit: xml-fop/contrib/plan/src/org/apache/fop/plan SimplePlanDrawer.java

2002-08-20 Thread keiron
keiron 2002/08/20 01:09:00 Modified:contrib/mathml build.sh contrib/mathml/src/org/apache/fop/mathml MathMLElement.java contrib/plan build.sh contrib/plan/src/org/apache/fop/plan SimplePlanDrawer.java Log: updated classpath, fixed some

fo:float

2002-08-20 Thread Don Willems
Hi, I am working on a document that includes (large) images. These images should be put at the top or at the bottom of a page. As I understand it the xsl:fo specification tells me to use fo:float, but that is not implemented yet in fop. So my question is. is anybody working on fo:float and

AW: Renderer for RTF AFP

2002-08-20 Thread Kurt Spescha
Hi Betrand, I've tried out jfor (for conversion to rtf out of fo). It's working fine for simple documents, as the examples are. Should it also work for more complicated documents with such things as headers, footers, pagenumbers, indexes and tables of contents with the correct pagenumbers? I've

Re: Line breaks around dashes

2002-08-20 Thread J.Pietschmann
Karen Lease wrote: That's a good question. As far as I've seen there's nothing official in the specification, so it's up to each implementation to handle this. I believe it falls in the category of things which could be defined by the user agent idea in FOP and then used by the

Re: fo:float

2002-08-20 Thread J.Pietschmann
Don Willems wrote: I am working on a document that includes (large) images. These images should be put at the top or at the bottom of a page. As I understand it the xsl:fo specification tells me to use fo:float, but that is not implemented yet in fop. So my question is. is anybody

Re: ArrayIndexOutOfBound Exception while dynamic row generation

2002-08-20 Thread J.Pietschmann
Please don't send HTML mails to the list. Amerin Szulr wrote: I'm trying to generate dynamic rows, i' can able to get results for a row. Once my XML values greater than that of the columns, , i'm getting ArrayIndexOutOfBoundException I hope I guess right that you want to have rows with

Re: layout questions

2002-08-20 Thread J.Pietschmann
olivier wrote: In fact I encounter troubles while rendering BMPs with FOP (PDF output). They seem to be automatically downsampled (their quality is really bad), or something like that. Is there anybody that could give me a way to search ? Unless you specify height and/or width on the

Re: Tasks - layout

2002-08-20 Thread Karen Lease
Arved, That would be good. I haven't looked at it for a month or so, but I had (as usual) some questions about various statements in the XSL-FO spec concerning the interpretation of the various properties. Perhaps we could go over those issues at some point. Karen Arved Sandstrom wrote:

Re: Line breaks around dashes

2002-08-20 Thread Jessica Perry Hekman
On Mon, 19 Aug 2002, J.Pietschmann wrote: HEAD doesn't work, check out fop-0_20_2-maintain. Done. Is fo:page-number/ broken on that branch? It was working fine in 0.20.4. However, in the version I checked out from cvs, calling it in some page-sequences returns the number 0, and then when

Re: Line breaks around dashes

2002-08-20 Thread J.Pietschmann
Jessica Perry Hekman wrote: Is fo:page-number/ broken on that branch? It was working fine in 0.20.4. However, in the version I checked out from cvs, calling it in some page-sequences returns the number 0, and then when eventually it does start working, it starts counting from 1, even

Re: Line breaks around dashes

2002-08-20 Thread Jessica Perry Hekman
On Tue, 20 Aug 2002, J.Pietschmann wrote: I fiddled a bit with page number initialisation. Could you post a small example which demonstrates the effect you noticed? Use fo:block break-after=page/ to generate pages to keep it short. Attached. It looks like every page-sequence starts over

Re: Line breaks around dashes

2002-08-20 Thread Peter B. West
J.Pietschmann wrote: TR14 needs a table for certain character properties be present, which can be derived from the official database. We probably need such a table for other purposes too, for example writing direction and word separation. I fear an implementation which is not too

Re: Style issues.

2002-08-20 Thread Peter B. West
J.Pietschmann wrote: Karen Lease wrote: if ((bp = getNextBreakPoss(childLC, null)) != null) { Probably comes from long years of writing C and C++ and avoiding extra lines of code. Must be taste since I don't find it that bad, but if we all vote it out in the style rules, I'll

RE: Style issues.

2002-08-20 Thread Arved Sandstrom
-Original Message- From: Peter B. West [mailto:[EMAIL PROTECTED]] Sent: August 20, 2002 9:51 PM To: [EMAIL PROTECTED] Subject: Re: Style issues. [ SNIP ] The only encoding rule I'd realy like to have: Don't mix underscores with camelCase. Beside looking *really* ugly, it

Re: Style issues.

2002-08-20 Thread Kevin O'Neill
snip/ if ((bp = getNextBreakPoss(childLC, null)) != null) { Probably comes from long years of writing C and C++ and avoiding extra lines of code. Must be taste since I don't find it that bad, but if we all vote it out in the style rules, I'll agree to banish it! It comes from