Re: xsl:fo & word

2003-07-16 Thread Bertrand Delacretaz
d majix of which I know little. -- Bertrand Delacretaz independent consultant, Lausanne, Switzerland http://cvs.apache.org/~bdelacretaz/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FOP locks output file under WinXP

2003-06-17 Thread Bertrand Delacretaz
Le Mardi, 17 juin 2003, à 17:11 Europe/Zurich, Torsten Erler a écrit : ... Process p = Runtime.getRuntime().exec(cmd); p.waitFor(); right on - this is heavy duty distributed code review ;-) -Bertrand - To unsubscribe, e-mail: [EMAI

Re: FOP locks output file under WinXP

2003-06-17 Thread Bertrand Delacretaz
Le Mardi, 17 juin 2003, à 16:52 Europe/Zurich, [EMAIL PROTECTED] a écrit : Hi Nicolas hmm... you've forgot to flushing and closing the OutputStream! and you have to do it in a "finally" clause if you want it to be reliable. -- Bertrand Delacretaz independent consu

Re: FOP in production app

2003-03-11 Thread Bertrand Delacretaz
n get good support here (best effort though) assuming you're ready to dig in to analyze possible problems precisely, and you have to limit your XSL-FO documents to what FOP can handle today. If you keep these concerns in mind, using FOP in production is realistic IMHO. -- Bertrand

Re: Common formatting

2003-02-21 Thread Bertrand Delacretaz
;xsl:import" to include common attribute sets definitions in all your XSLT files. An alternative would be to use CSS-like "class names" attributes on your elements, and replace these with the actual attributes in a second XSLT transform. -- Bertrand Delacretaz (codeconsult.c

Re: RTF support in Apache FOP?

2002-12-23 Thread Bertrand Delacretaz
[EMAIL PROTECTED] wrote: Could any one let me know when the RTF support will be implemented in the Apache FOP. No idea unfortunately. Several people were supposed to work on this at various points but nothing concrete (except my very small effort to jumpstart the integration [1]) has happened ye

Re: Call upon FOP within a c++ application

2002-11-29 Thread Bertrand Delacretaz
On Friday 29 November 2002 01:43, Amit Bhatnagar wrote: > Is it possible to call upon FOP with a c++ application? Should be possible using JNI, the Java Native Interface (info at java.sun.com). > If it isn't possible, is my only alternative to make a system call > and execute the FOP.bat? You

Re: Converting FOP to HTML

2002-11-21 Thread Bertrand Delacretaz
On Thursday 21 November 2002 03:14, Anton Hughes wrote: >. . . > Take a look at apache cocoon http://xml.apache.org/cocoon/index.html The Cocoon HTML/PDF howto at http://xml.apache.org/cocoon/howto/howto-html-pdf-publishing.html might be a good starting point to get an overview of how HTML+PDF pub

Re: HTML+CSS -> XSL:FO

2002-11-06 Thread Bertrand Delacretaz
On Wednesday 06 November 2002 18:31, Alex McLintock wrote: > Sorry for asking a question which I know is already in my FAQ but I have a > colleague who needs to render HTML *with* CSS to PDF. I hope this is not the FAQ answer ;-) Assuming client-side is ok (or you want to try to automate these f

Re: keep-with-.. property

2002-06-25 Thread Bertrand Delacretaz
On Tuesday 25 June 2002 08:58, Hahn Kurt (CHA) wrote: >. . . > Is there another reason why my > example here doesn't keep the rows together? I don't know exactly what is supposed to work or not, but here we've been successfully using the following constructs with FOP 0.20.3rc: Note however t

Re: Hi

2002-06-24 Thread Bertrand Delacretaz
On Monday 24 June 2002 07:48, Durai Murugan wrote: > How to set Headers/Footers in FO Layout. You have to use region-before and region-after. This is explained for example at http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html# . -- Bertrand Delacrétaz (codeconsult.ch, jfor.org) buzz

Re: Embedding a table in a table-row

2002-06-12 Thread Bertrand Delacretaz
Hi Kurt, On Wednesday 12 June 2002 10:45, Hahn Kurt (CHA) wrote: > I'm trying to embed a table in a table row. It would be easier if you could post the XSL-FO that results from your transformation, ideally the smallest complete FO document that demonstrates your problem. -Bertrand

Re: How do I learn to understand the W3 XSL Recommendation?

2002-06-10 Thread Bertrand Delacretaz
On Monday 10 June 2002 06:04, David Penton wrote: >. . .leads me to believe that I should > understand the W3 Recommendation in its more technical aspects better. A good starting point is http://www.w3.org/Style/XSL/ , it contains links to a number of resources. I find it important to consider X

Re: Use a relative path do insert a graphics file (Re-post with bett er title)

2002-06-06 Thread Bertrand Delacretaz
Hi Kurt, AFAIK relative image paths do not work when FOP is used within Cocoon, due to FOP (or any Cocoon Serializer for that matter) not getting info about the location of the current XSLT file. Maybe using http URLs would work? http://myserver/images/thisone.gif"/> But I haven't tested it. O

Re: Displaying a table

2002-05-31 Thread Bertrand Delacretaz
Hi Kurt, Did you compare your table construct with the samples from /docs/examples/tables? You can find them under http://xml.apache.org/cvs.html if you didn't download them. > Should be table-column I think, no s. > Should be in the fo:table-body element I think. -Bertrand

Re: Dynamically creating XML data for XSLT -> FOP

2002-05-31 Thread Bertrand Delacretaz
Hi Thorsten, On Friday 31 May 2002 04:30, Thorsten wrote: > I have been using FOP both within Cocoon and as a servlet, using static XML > (data) and XSL files as input. > > Now I need to dynamically generate the XML data portion from within the > servlet (the XSL file would still be static.) What

Re: Who uses MIF-Renderer?

2002-05-30 Thread Bertrand Delacretaz
On Wednesday 29 May 2002 18:15, Robert Wachter wrote: > Is anybody out there, who uses fop to generate MIF-files? Not to downplay FOP, but I think the current MIF rendering suffers from the same problems we encountered when trying to implement an RTF renderer: the current FOP rendering system i

Re: design help for multiple output formats?

2002-05-30 Thread Bertrand Delacretaz
On Wednesday 29 May 2002 22:49, Chuck Paussa wrote: >. . . > What we've done is perform all of the non-output-format transformations > into an intermediate node-set. e.g.: >. . . same here. You can think of the intermediate document as a "logical document" that describes your output content, inde

Re: Using FOP from ASP

2002-02-28 Thread Bertrand Delacretaz
On Thursday 28 February 2002 17:26, [EMAIL PROTECTED] wrote: > Bertrand wrote: > >Another option would be to use FOP over an HTTP interface: configure > >FOP as an HTTP servlet (using Cocoon for example) and call it from > > your ASP code: > > That sounds a much saner way of doing things, although

Re: Using FOP from ASP

2002-02-28 Thread Bertrand Delacretaz
On Thursday 28 February 2002 16:58, [EMAIL PROTECTED] wrote: > > I'm using FOP in a Windows environment and I want if possible to > > be able to process a large batch of .fo files using a script. The > > easiest way for me to do this is to use FOP as a COM object. > > Can I do this? Not out-of-t

Re: BindException

2002-02-25 Thread Bertrand Delacretaz
On Monday 25 February 2002 15:12, Guillaume Laforge wrote: >. . . > Before adding some class creating some PDF with FOP, everything works > perfectly. Tomcat is configured on port 8080, but that's not the > problem, and no other program is using this port. The simple fact of > adding fop.jar in WEB

Re: BindException

2002-02-25 Thread Bertrand Delacretaz
On Monday 25 February 2002 14:29, Guillaume Laforge wrote: >. . . > java.net.BindException: Adresse déjà utilisée LifecycleException: > null.open: java.net.BindException: Adresse déjà utilisée at > org.apache.catalina.connector.http.HttpConnector.initialize >. . . Looks like tomcat is unable to

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Bertrand Delacretaz
On Tuesday 12 February 2002 02:00, Ryan Howe wrote: > I have been looking for a way to pipe the output of my Transformer > into the Input of the FOP Driver object. Cocoon (xml.apache.org/cocoon) does just that and much more - you might want to have a look! -- -- Bertrand Delacrétaz, www.codec

Re: XSL-FO DTD

2002-01-25 Thread Bertrand Delacretaz
On Friday 25 January 2002 14:18, Ludovic Maurillon wrote: > I'm sorry, but I really need an answer: a search on "xsl-fo dtd" at www.google.com will tell you all... - Bertrand