OT: printing on linux

2004-09-27 Thread Roland Neilands
Can anyone provide any pointers for printing FOP output on Linux? I'm struggling to find a general solution for printing FOP output from Linux that works on enough different printers - or is there a minimum hardware requirement? PCL seems to work most of the time, but some files produce

AW: AW: PDF: no border, file name

2004-09-27 Thread Sascha Schmidt
Uups, my mistake. But I wonder why border attributes are defined for fo:region-body but must be 0.? Sascha -Ursprüngliche Nachricht- Von: Jeremias Maerki [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 26. September 2004 22:31 An: [EMAIL PROTECTED] Betreff: Re: AW: PDF: no border, file

Re: Avoid empty pages

2004-09-27 Thread Sven Waibel
My page breaks are right, i had another problem so it generates a emtpy page. Thanks nevertheless. Sven J.Pietschmann wrote: Sven Waibel wrote: Yes, but how can i create a page break only if content follows? It depends on your source XML and/or how you generate the FO document. There

RE: [work] Re: Avery labels

2004-09-27 Thread Pascal Sancho
Hi, A very long time ago, I've tried the following code, witch could give you an answer (this is not very academic): xsl:if test=position() mod 3 =1 !-- new row -- xsl:text disable-output-escaping=yeslt;fo:table-rowgt;/xsl:text /xsl:if xsl:if test=position() mod 3 =1 xsl:text

Re: [work] Re: Avery labels

2004-09-27 Thread Jeremias Maerki
This is not only not very academic, it's plain ugly, error-prone, violates XML concepts and works only if you don't connect XSLT and FOP using SAX. You should NEVER do something like that. Get a good XSLT book. On 27.09.2004 09:14:53 x x x x x x x wrote: Hi, A very long time ago, I've tried the

RE: [work] Re: Avery labels

2004-09-27 Thread Pascal Sancho
Hi Jeremias Maerki wrote: This is not only not very academic, it's plain ugly, error-prone, violates XML concepts and works only if you don't connect XSLT and FOP using SAX. You should NEVER do something like that. I agree. Get a good XSLT book. The best for me is XSLT - Working with XML

Re: XSLT transformation to PDF, Chinese characters lost

2004-09-27 Thread Balaji Loganathan
Mike, This article would help you. http://www.javaranch.com/journal/200409/Journal200409.jsp#a9 = Creating Multiple Language PDF using Apache FOP. Regards Balaji --- Jeremias Maerki [EMAIL PROTECTED] wrote: On 23.09.2004 20:58:08 Mike J Boyersmith wrote: On 23.09.2004 20:24:22 Mike J

RE: ERROR -2

2004-09-27 Thread Mark Donnelly
Thanks, Ive canned the lazy Xalan option and rewriting my xslt/html in xslt/fo so hopefully Ill avoid this error. Thanks for your help everyone. Great user group. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: 24 September 2004 23:21 To: [EMAIL PROTECTED] Subject:

What is the avalon-framework for ?

2004-09-27 Thread Johannes Wolfgang Woger
Hi, In out web application I have to log with log4j. So dont want to log with org.apache.avalon.framework.logger.Logger. Unfortunately Driver driver = new Driver(foFile,null); (PrintServlet.java: 117) seems to need the avalon-framework. java.lang.NoClassDefFoundError:

AW: What is the avalon-framework for ?

2004-09-27 Thread Sascha Schmidt
Hi, See http://avalon.apache.org/ :-). BTW, the Avalon logger abstracts from concrete (implemented) loggers like Log4J, LogKit, JDK 1.4 Logger and so on. Sascha NORTHBIT Sascha Schmidt [EMAIL PROTECTED] www.northbit.de Von: Johannes Wolfgang Woger [mailto:[EMAIL

Table borders

2004-09-27 Thread Mark Donnelly
Has anyone got an example of a table that prints out its borders. Ive used a table example from the Apache website but I dont get any borders shown in the output pdf. In addition I have specified the border-start-color, border-top-width, etc to try and force a border to show but with no result.

RE: Table borders

2004-09-27 Thread Mark Donnelly
Forget my request for information. It was just a matter of playing with some of the table and table-cell properties, namely setting the border-*-style attributes to solid. eg fo:table-cell border-before-style=solid border-after-style=solid border-start-style=solid border-end-style=solid

Re: Table borders

2004-09-27 Thread Paul Vinkenoog
Hi Mark, Has anyone got an example of a table that prints out its borders. This (generated) one works for me: fo:table border-before-width.conditionality=retain border-collapse=collapse border-left-style=solid border-right-style=solid border-top-style=solid

RE: table processing warning

2004-09-27 Thread Eldho George
You can try this also xsl:attribute-set name=table-structure xsl:attribute name=table-layoutfixed/xsl:attribute xsl:attribute name=space-before0pt/xsl:attribute xsl:attribute name=space-after0pt/xsl:attribute xsl:attribute name=border2px/xsl:attribute

table processing warning

2004-09-27 Thread James Steven
Hello When processing xml using FOP 0.20.5rc3a the command keeps returning two warnings. These are: [WARNING] current implementation of tables requires a table-column for each column, indicating column-width [WARNING] Some static content could not fit in the area. A pdf document is returned ok,

Table column widths

2004-09-27 Thread Mark Donnelly
The next chapter in my attempt to get my tables converted. Ive set up some column widths at the front of my table but they do not appear to be reflected in the finished document. The columns are set up as: fo:table table-layout=fixed width=267mm fo:table-column column-width=14mm/fo:table-column