list-block

2002-03-19 Thread Atef Lahouel
Hi everybody ! I am using list-block and if i use this part of code with no text in the second list-item-body fo:list-block fo:list-item fo:list-item-label end-indent=label-end() fo:blockfo:inline font-family=Symbol#183;/fo:inline/fo:block /fo:list-item-label fo:list-item-body

AW: SV: PNG Images

2002-03-19 Thread Sam Prokop
I get an error creating FopImage object (file:to/image.png): org.apache.fop.image.JimiImage I use fop 0.20.3 standalone (on win2k and java 1.4.0), with the old jimi-1.0.jar, which came with an older version of fop. and got no idea, what to do, except using jpeg instead. -Ursprüngliche

Re: AW: SV: PNG Images

2002-03-19 Thread Jeremias Maerki
I get an error creating FopImage object (file:to/image.png): org.apache.fop.image.JimiImage That's not the full error message, is it? Did you compile FOP while jimi.jar was available? The FOP build must tell you: Jimi library is present. Fop installs jimi support. I use fop 0.20.3 standalone

AW: AW: SV: PNG Images

2002-03-19 Thread Sam Prokop
The Full Message is: [ERROR]: Error while creating area : Error creating FopImage object(Error creating FopImage object(file:to/image.png):org.apache.fop.image.JimiImage But i´ll try to compile FOP again. thanx -Ursprüngliche Nachricht- Von: Jeremias Maerki [mailto:[EMAIL PROTECTED]

Some Border Issues

2002-03-19 Thread Dutta, Sumanta
Hi, I am trying to design a page with some tables. I need to separate content by borders. If I try to apply after/before border on block contents inside table-cell, the borders go out of the table-cell start and end edges. The same thing happens with padding-start/end, though indent-start/end is

NoClassDefFoundError

2002-03-19 Thread Levy, Alane
When I tried running the following sample .fo file (from Ch 18 of E.R. Harold's XML Bible) using FOP version 0.2.0.3: ?xml version=1.0 ? fo:root xmlns:fo= http://www.w3.org/1999/XSL/Format http://www.w3.org/1999/XSL/Format; fo:layout-master-set fo:simple-page-master master-name=only

RE: FopServlet

2002-03-19 Thread Shaikh, Mehmood
Look in the log. Maybe your classpath is incorrect, maybe something is missing. You never know. -Original Message- From: Samimi, Ashkan (Contractor) [mailto:[EMAIL PROTECTED] Sent: March 19, 2002 6:22 AM To: '[EMAIL PROTECTED]' Subject: FopServlet Hi, Running this command on command

RE: FOP API

2002-03-19 Thread Dutta, Sumanta
Hi Jay, I downloaded Fop-0.20.1-bin.tar.gz, and you are right, it has a docs directory. But I don't see any javadoc anywhere under it. It has html-docs, which is same as the website. Thanks, Sumanta. -Original Message- From: S. Jayaraman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March

Re: FopServlet

2002-03-19 Thread TJ Smith
What you're doing wrong is most likely using IE as your browser. IE depends on filename extensions to determine the sort of file it is to display - in this case, it looks for '.pdf' You need to add the magic string a=b.pdf to the end of the URL that invokes the FopServlet, viz:

Re: insert a PDF file into another PDF

2002-03-19 Thread Mathy V Arumugam
Yes, iText does look promising. I am looking into that.. will let you know when I succeed :) Mathy Buonincontri, Steve (CAP, MMF, ITSS) wrote: I think you can do this with iText 3.0 -Original Message- From: Mathy V Arumugam [mailto:[EMAIL PROTECTED] Sent: Thursday, March 14, 2002

AW: FOP API

2002-03-19 Thread S. Jayaraman
Hi Sumanta Sorry. You find javadocs in the Fop-0.20.1-bin.tar.gz. I can see it in my version. Cheers Jay -Ursprüngliche Nachricht- Von: Dutta, Sumanta [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 19. März 2002 17:19 An: '[EMAIL PROTECTED]'; Swaminathan Jayaraman Betreff: RE: FOP API

Re: XML string input

2002-03-19 Thread Trevor_Campbell
Create a stream over your XML, InputStream xmlStream = new StringBufferInputStream(strXML); then create an Input Source new InputSource(xmlStream); Olivier Buisard