problem with table header

2003-01-07 Thread Mihael Knezevic
hi, i got a little problem with table rendering. my problem: i have a table with a header row. as i dynamically generate the content of the headers i don't know how long the text for the header will be. so i sometimes get a very long header, which breaks into a second header row. now i would lik

RE: problem with table header

2003-01-07 Thread Mihael Knezevic
[mailto:[EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 2:08 PM To: [EMAIL PROTECTED] Subject: Re: problem with table header Mihael Knezevic wrote: > i have a table with a header row. as i dynamically generate the > content of the headers i don't know how long the text for the header >

RE: problem with table header

2003-01-07 Thread Mihael Knezevic
thanx. i'll try it. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 3:11 PM To: [EMAIL PROTECTED] Subject: Re: problem with table header Mihael Knezevic wrote: > but the problem remains: i got different table header height becau

OT: page break problem

2003-01-10 Thread Mihael Knezevic
hi, sorry for posting this on the wrong list but i think everybody (except me) on the list knows enough to help me. this is my xml file in a very short form:

RE: Concatenating pdf's

2003-01-10 Thread Mihael Knezevic
another tool which can easily be used to add several pdfs to one is iText on sourceforge itext.sf.net -Original Message- From: Rakesh Patel [mailto:[EMAIL PROTECTED] Sent: Friday, January 10, 2003 12:07 PM To: [EMAIL PROTECTED] Subject: Concatenating pdf's Hi, not specifically a FOP qu

RE: OT: page break problem

2003-01-13 Thread Mihael Knezevic
thanx to both of you. this really is a great list. very good and very quick support. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Saturday, January 11, 2003 6:40 PM To: [EMAIL PROTECTED] Subject: Re: OT: page break problem Chris Bowditch wrote: Somewhat easier

OT: how to check for following sibling

2003-01-15 Thread Mihael Knezevic
sorry for interupting again with a newbie question. can someone tell me how do i check if my xml document has another sibling node. i know that i can use the xslt function following-sibling to get the next sibling but i don't know how to check if it really got one. thanx in advance. mk

RE: why some talbe cells have thiner border?

2003-01-16 Thread Mihael Knezevic
i can support that statement from experience too. -Original Message- From: Dudley, Mark [mailto:[EMAIL PROTECTED] Sent: Thursday, January 16, 2003 5:04 PM To: [EMAIL PROTECTED] Subject: RE: why some talbe cells have thiner border? Dtang, Does it print out this way or is it an artifact

RE: Generating PDF on the fly using on the fly XML

2003-02-03 Thread Mihael Knezevic
one method of using dynamically create xml content would be to use the StringReader. here some sample code: StringReader input = new StringReader(xmlString); try { FileReader inputxslt = new FileReader(new File(xslfile)); Transformer transformer = Transfo

external-graphic problem

2003-02-04 Thread Mihael Knezevic
hi, i think i got a simple problem and probably everybody will point me to the fop faq but i need an example (hopefully a working one). i want to have one pic on one page. i got the following xml file: ... i got the following xsl line in my xsl fil

RE: external-graphic problem

2003-02-04 Thread Mihael Knezevic
aphic problem Here is our working code: If I remember right, you also have to set the basedir (either in your userconfig.xml or via Java): Configuration.put("baseDir", "file:" + imgSrcDir); -Lou "Mihael Knezevic" <[EMAIL PROTECTED]> on 02/0

RE: external-graphic problem

2003-02-04 Thread Mihael Knezevic
: external-graphic problem Here is our working code: If I remember right, you also have to set the basedir (either in your userconfig.xml or via Java): Configuration.put("baseDir", "file:" + imgSrcDir); -Lou "Mihael Knezevic" <[EMAIL PROTECTED

RE: external-graphic problem

2003-02-05 Thread Mihael Knezevic
thanx again. -Original Message- From: Oleg Tkachenko [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 11:25 AM To: [EMAIL PROTECTED] Subject: Re: external-graphic problem Mihael Knezevic wrote: > thanx for the response. correct me if i'm wrong, but i thought the &g

RE: How: calculate the length of a text

2003-02-05 Thread Mihael Knezevic
if you want to calculate the width of the text on the screen then perhaps the class java.awt.FontMetrics is of some help though i never needed it and don't know exactly how it works. have a look at the javadocs. -Original Message- From: Unger, Joachim [mailto:[EMAIL PROTECTED] Sent: Wed

Re: Error

2002-03-20 Thread Mihael Knezevic
On 2002.03.20 17:07 "Woods, John T." wrote: > I am using FOP 0.20.3 and continue getting this error message when I > "FOP" > from the DOS prompt. > > SEE ATTATCHMENT > > -John <> > try it with the debug parameter. that should shed some light on it.

Off-Topic: german "umlaute"

2002-03-21 Thread Mihael Knezevic
hi, i know that this is off-topic, but perhaps someone knows an answer to my question. how can i render the german "umlaute" (characters like ä or ö) in an pdf-document created with fop. thanx in advance. mk

Re: Off-Topic: german "umlaute"

2002-03-21 Thread Mihael Knezevic
sorry to have bothered you with my little question. after another session of testing i finally got it. i just changed the encoding to ISO-8859-1 thanx mk

Re: Error: null

2002-03-22 Thread Mihael Knezevic
fun fop with the -d parameter and you'll get more debug info On 2002.03.21 15:51 Ian Taylor wrote: > > I constructed my first xsl document to render a pdf  using a single > template. This worked fine. However the form was rather large so I > decided to split certain parts of it into separate temp

Re: Error compiling fop - CodePointMapping.java is empty

2002-03-22 Thread Mihael Knezevic
On 2002.03.22 10:34 Sam Prokop wrote: > OK, thanks for the input, but i deleted the whole thing and unziped into > a "fresh" folder. > I also took all CLASSPATHs out of my global(?) Classpath > (de->Umgebungsvariablen Win2k) > and just added the jimi-1.0.jar to the lib folder. > I start the origina

fop exits after first loop

2002-03-25 Thread Mihael Knezevic
hi, i have a little problem. i have various xml-files and wanted to convert the to pdf. so i have written a loop in which i create and fill the string array and make a new org.apache.fop.apps.Fop object with the string array as parameters. but after the first loop my programm exits. as if it was f

OFF-TOPIC: dtd in xml-file

2002-04-02 Thread Mihael Knezevic
hi, sorry for this off-topic question but i don't know where to post it elsewhere: i want to have the dtd in the xml-file. what do i have to write after doctype please help. thanx mk

set logger on driver

2002-04-02 Thread Mihael Knezevic
hi, i want to embed fop in my application. so far so good. but when i start the application it says: [ERROR]: Logger not set SystemId Unknown; Line 0; Column 0; Couldn't create PDF file. File "file:myfile" not found. what have i done wrong? i copied the stuff from the website. i'm using fop 0

Re: OFF-TOPIC: dtd in xml-file

2002-04-03 Thread Mihael Knezevic
uthorised use of its > contents is prohibited. If you have received this e-mail in error, please > notify the sender immediately via return e-mail and then delete the > original > e-mail. > > -Original Message- > From: Mihael Knezevic [mailto:[EMAIL PROTECTED] > Sen

embedding fop

2002-04-04 Thread Mihael Knezevic
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 org.apache.xerces.parsers.SAXParser SystemId Unknown; Line 0; Column 0; Couldn't create PDF file. File "my

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]

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

Re: Use of FOP in COM Object

2002-04-08 Thread Mihael Knezevic
Did you take a look at the Cocoon project at www.apache.org . perhaps that would solve the problem without any hard coding work. On 2002.04.07 22:36 Ian Stacey wrote: > Hi, > > I'll apologise in advance for potentially being ignorant to the way > Apache > projects work. > > I'm interested in usi

Re: Rotating the generated pdf

2002-04-29 Thread Mihael Knezevic
Is there any other way to achieve a simple 90deg rotation of the whole page? Maybe there is some pdf post-processing software? do you want to rotate the page or do you just want to have your page in landscape format?

AW: Learning needeed

2002-05-27 Thread Mihael Knezevic
There are a lot of article on the developerworks / alphaworks site at ibm. i find them very usefull. -Ursprüngliche Nachricht-Von: Ramon Maria Gallart [mailto:[EMAIL PROTECTED]Gesendet: Montag, 27. Mai 2002 17:03An: [EMAIL PROTECTED]Betreff: Learning needeed     Hi all

AW: Landscape Layout

2002-06-10 Thread Mihael Knezevic
i'm generating pdf in landscape format using this layout-set. -Ursprüngliche Nachricht- Von: Urban, Patrick [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 7. Juni 2002 16:05 An: [EMAIL PRO