[DO NOT REPLY: Bug 3214] Segfault when trying to build Fop sources

2001-09-07 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=3214

RE: Xalan causing issue in FOP?

2001-09-07 Thread COFFMAN Steven
Break this down more atomically to see where the break down occurs, if you will. First, run Xalan using the commandline with sample files to insure that there's not an error in just doing that (instructions on xml.apache.org). Second run FOP using commandline to insure there's no version proble

RE: ClassDefNotFound for FOP for VAJ

2001-09-07 Thread avespa
Actually, I still need answers to them - I seem to be having intermitten issues -Original Message- From: COFFMAN Steven [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 6:24 PM To: '[EMAIL PROTECTED]' Subject: RE: ClassDefNotFound for FOP for VAJ So ignore your earlier qu

RE: ClassDefNotFound for FOP for VAJ

2001-09-07 Thread COFFMAN Steven
So ignore your earlier questions, or do you still need answers to those? -Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 4:48 PM To: [EMAIL PROTECTED] Subject: ClassDefNotFound for FOP for VAJ Importance: High Hello again...

RE: Adding Properties to the FOP driver

2001-09-07 Thread avespa
I actually tried that and still get the error - only now I can't view the source since I used the classes vs the java. Any other suggestions? I'm kinda stuck... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 6:04 PM To: [EMAIL PROT

Re: Adding Properties to the FOP driver

2001-09-07 Thread jthaemlitz
I'm also using .18 in VAJ and the org.apache.fop.fo.properties package did not import for me. I got similar errors to what you are describing. Try exporting these class files from fop.jar and importing them into VAJ. There were a few other class files that were not in the source, I used the sa

Adding Properties to the FOP driver

2001-09-07 Thread avespa
Hello, In my code to render a PCL/PDF from XML, I set the following properties: driver.addElementMapping("org.apache.fop.fo.StandardElementMapping"); driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); driver.addPropertyList("org.apache.fop.fo.StandardPropertyList

ClassDefNotFound for FOP for VAJ

2001-09-07 Thread avespa
Hello again... I seem to be working through my issues but this one has me stuck - when I try to create a new driver, my program crashes on Uncaught exception (java.lang.NoClassDefFoundError: org.apache.fop.fo.LengthProperty$Maker) - I have this class in my repository and have re-imprted the sourc

Xalan causing issue in FOP?

2001-09-07 Thread avespa
Hello, I am still trying to get my java to work with FOP - I'm using Xalan to parse and I have an error when I hit the: processor.process(responseSource, stylesheetSource, target); line. I get: Input XSL; Line 1; Column 45518 XSL Error: Could not parse Input XML document! XSL E

how to keep together

2001-09-07 Thread Suhail Rashid
Hi, As keep-together is not supported in FOP as of now how can i ensure that a table and a preceding block appear together on the same page.. Please pass on any ideas u have.. Thanks in advance, Suhail -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednes

Looking for Simple FOP Rendering Example

2001-09-07 Thread avespa
Hello, I'm trying to test a piece of FOP code that someone else wrote within an application as a standalone. I basically need to have three inputs: An XML file An XSL (the fo file) PCL.PDF or TXT flag. I am trying to write something leveraging the code we have but I feel I am getting 'lost in

[DO NOT REPLY: Bug 3497] id already exists error when using span="all" attribute

2001-09-07 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=3497

[DO NOT REPLY: Bug 3497] New: id already exists error when using span="all" attribute

2001-09-07 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=3497

RE: block-container with block

2001-09-07 Thread Colin Savage
The other option I have tried is using a table within the block, creating rows and columns that intersect at the points where I want to place the "block-container". That works, and by using number-columns-spanned and number-rows-spanned I can get the cells to overlap each other if there are multip

BUG: absoulte-position="auto" in nested blocks

2001-09-07 Thread Giannetti, Fabio
Hi Colin, in your example you forget to write the http://www.w3.org/1999/XSL/Format";> This is the first unpositioned block inside the flow inside This is the second unpositioned block inside the flow

RE: block-container with block

2001-09-07 Thread Colin Savage
Here is the fo I am working with http://www.w3.org/1999/XSL/Format";> inside Q1. Is this valid? and should it produce the result i am looking for? block inside region-body -- |\ | | \5mm x 5mm | | \___ | | |inside | |

RE: block-container with block

2001-09-07 Thread Giannetti, Fabio
Hi Colin, yes, you can have a block-container that is not absolute positioned if you specify absolute-positioning="auto" it will automatically considered like to be relative-positioned. There is a substantial difference between a block with relative position and a block-container with

RE: block-container with block

2001-09-07 Thread Colin Savage
Hi Fabio, Ok, that makes sense. So an absolute positioned block can only be positioned relative to an Area Container. I am trying to understand this spec... what does this mean? "In addition an fo:block-container that does not generate an absolutely positioned area may have a sequence of zero or

RE: block-container with block

2001-09-07 Thread Giannetti, Fabio
Hi Colin, the XSL-FO specs says that the Absolute Positioned blocks must be considered outside the Flow. So in your case depends on which is the current Area Container. Let's make some examples to make it more clear (I'll try some ASCII art ...) 1) The parent area container to the block i

RE: block-container with block

2001-09-07 Thread Colin Savage
block-container appears to work if it is used inside a static-content or flow element. v0.20.1 according to this interpretation of the w3c spec (w3c specs give me a headache), block-container can appear as a child of block http://zvon.org/xxl/xslfoReference/Output/index.html -Original Messa

Re: block-container with block

2001-09-07 Thread Petr Zeman
>From text on http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html ... Caution As of version 0.18.1, FOP does not support fo:block-container or fo:table-and-caption. ... Petr Z. - Original Message - From: "Colin Savage" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday

[DO NOT REPLY: Bug 2408] Incorrect URL format

2001-09-07 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=2408

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

2001-09-07 Thread keiron
keiron 01/09/07 07:10:07 Modified:src/org/apache/fop/image FopImageFactory.java Log: forgot about quotes Revision ChangesPath 1.23 +6 -1 xml-fop/src/org/apache/fop/image/FopImageFactory.java Index: FopImageFactory.java ==

RE: block-container with block

2001-09-07 Thread Colin Savage
sorry, I typed it wrong below, should be: inside the block -Original Message- From: Petr Zeman [mailto:[EMAIL PROTECTED]] Sent: 07 September 2001 03:58 To: [EMAIL PROTECTED] Subject: Re: block-container with block I think, the error i

Re: block-container with block

2001-09-07 Thread Petr Zeman
I think, the error is in the missing units (measures). Some stuff Petr Zeman - Original Message - From: "Colin Savage" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 07, 2001 4:00 PM Subject: RE: block-container with block > sigh...can't get this right...can

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

2001-09-07 Thread keiron
keiron 01/09/07 06:56:23 Modified:src/org/apache/fop/image FopImageFactory.java Log: handles uri's with "url(" + URI + ")" spec is ambigous about what a is Revision ChangesPath 1.22 +16 -2 xml-fop/src/org/apache/fop/image/FopImageFactory.java Index: Fop

RE: block-container with block

2001-09-07 Thread Colin Savage
sigh...can't get this right...can get the block-container to draw in the block but top and left are ignored and the contents of the block-container don't appear anywhere. Maybe one of the experts could help me out here? -Original Message- From: Colin Savage [mailto:[EMAIL PROTECTED]] Sen

Re: producing OMR marks (Optical Mark Reading)

2001-09-07 Thread jthaemlitz
For the last page I'm planning on putting in a block with a id attribute then use the page-number-citation with ref-id attribute. put a block like this on last page (I have a summary record that goes on the end of the document so I'll tack it on there) Then for the page number on top of the pa

Re: [DO NOT REPLY: Bug 3007] broken basic-link when referencing a following page

2001-09-07 Thread Enrico Schnepel
It is commited into the current CVS-tree but not in the recent release 0.20.1. Enrico > 01:50 --- + Am also experiencing similar difficulties. > + I see there is a work around supplied but not added to the product. When > is it + likely that the fix will be applied to the core product? > Unf

[DO NOT REPLY: Bug 3487] New: jdk 1.4 beta2 compatibility

2001-09-07 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=3487

RE: ERROR LOADING EXTERNAL SVG

2001-09-07 Thread Brigette Muller
thanks Keiron, I will re-post on the batik list. keep smiling Brigette -Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 5:47 AM To: [EMAIL PROTECTED] Subject: Re: ERROR LOADING EXTERNAL SVG On Thu, 06 Sep 2001 20

Problem with fo:leader into fo:table.

2001-09-07 Thread "Castañer Mármol, Roger"
We are interested in a bug of the fop 0.20.1 version relative to using leader inside tables. We have seen that when we try to draw a line using fo:leader into a table cell this line is not drawn. We would like to know when will you solve this problem or if it has been solved in a recent version.

cvs commit: xml-fop/docs/design README areas.xml build.sh build.xml float.svg fop.xml intro.xml layout.xml optimise.xml page.svg useragent.xml apps.gif datatypes.gif flow.gif fo.gif fop.gif image.gif layout.gif messaging.gif pagination.gif pdf.gif render_pdf.gif

2001-09-07 Thread keiron
keiron 01/09/07 04:33:48 Added: docs/design README areas.xml build.sh build.xml float.svg fop.xml intro.xml layout.xml optimise.xml page.svg useragent.xml Removed: docs/design apps.gif datatypes.gif flow.gif fo.gif fop.gif

Re: producing OMR marks (Optical Mark Reading)

2001-09-07 Thread Keiron Liddle
Hi John, I think that for this type of thing using sax events is at the wrong end of the processing. For your situation it still may be a complementary part of the process to insert the necessary information. A while back I posted a simple example of how you can include custom tags in a separate

Re: ERROR LOADING EXTERNAL SVG

2001-09-07 Thread Keiron Liddle
On Thu, 06 Sep 2001 20:32:11 Brigette Muller wrote: > Hi, > > I am getting the following error when trying to load an SVG image. What > am I missing? > I have checked that the batik.jar from the fop.0.20.1/lib dir that comes > with fop is in the classpath. > The SVG was created by Adobe Illustra

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

2001-09-07 Thread keiron
keiron 01/09/07 02:26:17 Modified:src/org/apache/fop/pdf PDFDocument.java PDFGoTo.java src/org/apache/fop/svg PDFANode.java PDFGraphics2D.java Log: this handles viewBox links in svg better the target position and scaling are wrong Revision ChangesPath 1