two blocks in one table-cell in the same line

2002-04-05 Thread Roland Lechner
Hi there, I got this lines of code: fo:table-cell border-left-color=black border-top-color=black border-top-width=1pt border-bottom-style=solid border-bottom-width=1pt height=20pt border-right-style=solid border-left-width=1pt border-right-width=1pt border-right-color=black

Two columns

2002-04-05 Thread alex
Hi folks, I haven't seen an example for this but is it possible to have one or more blocks in which text flows into the next column, as in a newspaper for example. I am trying to do a two column A4 newsletter and don't want to worry about inserting column breaks Alex Mc

Re: embedding fop

2002-04-05 Thread Mihael Knezevic
On 2002.04.04 22:08 J.Pietschmann wrote: Mihael Knezevic wrote: hi, has someone been successfull on embedding fop in his/her own application. i'm trying but it doesn't work. there are some error messages: [ERROR]: Logger not set [DEBUG]: using SAX parser

problems with creating pdf

2002-04-05 Thread Marianne von den Driesch und Viktor Goebel
We have the following problem using FOP: First we tried to embed FOP into a small java programm: package TestPackage; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import org.xml.sax.InputSource; import org.xml.sax.XMLReader; import org.apache.fop.apps.Driver;

Re: problems with creating pdf

2002-04-05 Thread Fischer Tibor
what version of FOP do you use? try this code. it works perfectly with 0.20.3 FOP public static void execWFop(String xmlFile, String xslFile, String outputFile){ try{ try { javax.xml.transform.stream.StreamSource xmlSource=new javax.xml.transform.stream.StreamSource(new

Re: problems with creating pdf

2002-04-05 Thread Mihael Knezevic
On 2002.04.05 12:18 Marianne von den Driesch und Viktor Goebel wrote: We tried also to start FOP from the command line under dos and linux with the parameters  xslfoRef.xml and xml2pdf.xsl. The error message was :   Master -reference for fo:page -sequence matches no simple -page -master or

RE: two blocks in one table-cell in the same line

2002-04-05 Thread Bill Lunnon
Roland, I am assuming you are placing the text in different blocks to achieve different font sizes or allignments. If this is the case, try fo:inline Hope this helps Bill -Original Message- From: Roland Lechner [mailto:[EMAIL PROTECTED] Sent: Friday, 5 April 2002 6:18 PM To: [EMAIL

to Fisher Tibor

2002-04-05 Thread Marianne von den Driesch und Viktor Goebel
Thanks for your help. We tried your code (using FOP 0.20.3) and got the message: TTURIResolver not found, is that your own class? MAVI. Am Freitag, 5. April 2002 12:36 schrieben Sie: what version of FOP do you use? try this code. it works perfectly with 0.20.3 FOP public static void

Re: to Fisher Tibor

2002-04-05 Thread Fischer Tibor
sorry, just comment out that line it should work without that. if not i send you that class too. i dont think you need that. Br, Fishy Marianne von den Driesch und Viktor Goebel wrote: Thanks for your help. We tried your code (using FOP 0.20.3) and got the message: TTURIResolver not found, is

Re: to Fisher Tibor

2002-04-05 Thread Marianne von den Driesch und Viktor Goebel
when we coment out this line we get the following message: [Error]:logger not set [info]:[1] java.lang.NullPointerException at oracle.xml.jaxp.JXUtil.reportErrors(JXUtil.java:211) at oracle.xml.jaxp.JXtransformerT.transform(JXTransformer.java:446) We are using Oracle9i JDeveloper. Am

Problem with € and Ÿ caracters

2002-04-05 Thread MARTIN Franck
Does anyone know a way to render Ÿ using FOP? I think the fop developpers have forgotten about this caracter because ÿ, Ü, Ö, Ï are implemented and are correctly rendered... I'm having a problem to get the € symbol from an http request and print it in a text file. Oddly enough it prints out ?

SV: Problem with ? and Y caracters

2002-04-05 Thread Klosa Uwe
Are you using unicode for text file? Uwe -Ursprungligt meddelande- Från: MARTIN Franck [mailto:[EMAIL PROTECTED] Skickat: den 5 april 2002 15:45 Till: [EMAIL PROTECTED] Ämne: Problem with € and Ÿ caracters Does anyone know a way to render Ÿ using FOP? I think the fop developpers have

SV: SV: Problem with ? and Y caracters

2002-04-05 Thread Klosa Uwe
If you want to use unicode you have to use a byteoutput stream. I don't know how FileWriter works. Uwe -Ursprungligt meddelande- Från: MARTIN Franck [mailto:[EMAIL PROTECTED] Skickat: den 5 april 2002 16:33 Till: [EMAIL PROTECTED] Ämne: Re: SV: Problem with ? and Y caracters I am using

table error

2002-04-05 Thread Norr, Peter
Doe anybody know what this means? ERROR 10180 [fop ] (): At least one of minimum, optimum, or maximum IPD must be specified on table. -- This message is intended only for the personal and confidential use of the

New Colors in FOP ...

2002-04-05 Thread Jose Hernandez
Hello ... Where I can find all the list color that I can use with FOP ? and Can I create more definition colors ? Thanks //jose.alberto.hernandez.maldonado System Integrator Engineer. Algorithmics Mexico. Tel. 5520-4293 Fax. 5520-4292 e-mail: [EMAIL PROTECTED]

Re: New Colors in FOP ...

2002-04-05 Thread Chuck Paussa
Jose, The colors available to FOP should be the following pre-defined colors plus any color on the RGB format #00 through #FF aliceblue, antiquewhite, aqua, aquamarine, azure, beige, bisque, black, blanchedalmond, blue, blueviolet, brown, burlywood, cadetblue, chartreuse, chocolate,

Re: Problem with and caracters

2002-04-05 Thread Chuck Paussa
Martin, The capital Y with a diacresis is either #x0178; or #0178; The euro is either #20AC; or #x20AC; You will also need to include a font capable of displaying those characters You can find a list of all of the available characters here http://www.unicode.org/charts/ With the list you are

Re: Two columns

2002-04-05 Thread Chuck Paussa
Alex, You need to include a column-count in your fo:region-body like this: fo:root fo:layout-master-set fo:simple-page-master master-name =page-first page-height =8.5in page-width =11in fo:region-body

Re: DocBook tables not appearing in PDF generated by Fop

2002-04-05 Thread J.Pietschmann
Steinar Bang wrote: Tables don't appear in PDF generated by Fop on the following two platforms: Look closely at the error message: ... [INFO]: FOP 0.20.3rc [INFO]: building formatting object tree [ERROR]: Error in column-width property value '20%': org.apache.fop.fo.expr.PropertyException: No

Re: two blocks in one table-cell in the same line

2002-04-05 Thread J.Pietschmann
Roland Lechner wrote: The thing I want to achieve is to have the 2 blocks in the same line (a little separated). You can't have two block on the same line without special arrangements, by definition. A) Redo the table you have so that you have two cells instead of one B) Embed a two-column,

RE: table error

2002-04-05 Thread Arved Sandstrom
IPD is the handy abbreviation for inline-progression-dimension (well, it could also be for inline-progression-direction, but in this case it's the dimension. :-)) It's not mandatory to specify this on tables, as there is a default, so I don't know _why_ you are getting this message. Can you post

How to embed FOP to Java App

2002-04-05 Thread Cai, Jenny (US - Dallas)
Title: How to embed FOP to Java App I have successfully run examples provided in fop-0.20.3-bin.tar.gz from the command prompt and generated pdf files after the fo files have been run. Next step I would like to do is embed it to my own Java application. I like to create a very simple

RE: DocBook tables not appearing in PDF generated by Fop

2002-04-05 Thread David Cramer
David Cramer wrote: I'm pretty sure Dave Pawson has an FAQ about this, I don't remember DocBook specific stuff there, but it's already a few weeks since i last looked. In addition to all the other stuff, Dave maintains a docbook faq for the docbook and docbook-apps lists. Hope it finds a new