Call upon FOP within a c++ application

2002-11-29 Thread Amit Bhatnagar
Is it possible to call upon FOP with a c++ application? The FAQ mentions how to intrgrate it within a java app, but I am not too sure what to do in this case. If it isn't possible, is my only alternative to make a system call and execute the FOP.bat? thanks for your help. amit.

Widows and Orphans

2002-11-29 Thread Adam . Clarke
Hi, I am a newbie to the FOP so please excuse me if this is a really dumb question but, I have been trying to get Widows and Orphans to operate in the FOP. I have been able to get it to work successfully on the supplied example file (widowsorphans.fo) in fop-0.18.1, but not in fop-0.20.3 or

Best XSL-FO WYSIWYG editor

2002-11-29 Thread Amit Bhatnagar
Can anyone recommend the best WYSIWYG XSL-FO editor / app that saves a XSLT file (which will then process my xml document into an xsl.fo marked up, when then can be processed by FOP) Its necessary for me to be able to create my layout and then save the xslt file. Thanks, amit.

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: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Johan Åbrandt
I dont fully understand the description of the features you need, but if being able to use one IDE to do the full flow from xml through xsl to fop and pdf in an effortless way, including the possibility to debug xsl transformations, then Excelon Stylus Studio is my candidate. It is however not

Dynamic space adjustment between fo:list-tem-label and fo:list-item-body

2002-11-29 Thread Chris Vejrazka
Greetings everbody, i hope that i can get some help on my problem here and that i dont bother you with a newbie question. We have xml-dtd in use that allows the creation of neested, ordered lists in our xml-documents. Here is the code fragment that i use to create the list part of the fo

AW: Call upon FOP within a c++ application

2002-11-29 Thread Mirko Sertic
Hello! I'd prefer CORBA. It's more robust than sending a http request and easier to support. CORBA is also supported in the current jdk. For the C++ side, take a look at the ACE / TAO project. It's an open source orb and available for many platforms. Using CORBA also enables you to have a

Re: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Chris Vejrazka
Hi, have a look at xml-spy under www.xmlspy.com I use it and i'm very satisfied with it but doesn't automatically saves xslt files from xml if that is, what you are looking for. It only allow you to integrate all components to simple do transformation xml-xsl-fo-pdf via a mouseclick. regards

Re: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Robert Morse
Take a look at http://www.xslfast.com Version 1.05 is available now, although a newer version is about to be released relatively soon. The current is okay, but a little clumsy at times. -robert. On Fri, 2002-11-29 at 04:45, Chris Vejrazka wrote: Hi, have a look at xml-spy under

RE: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Varley, Roger
It is however not WYSIWYG - if you by that mean that you would specify a xml file and then do WYSIWYG editing and have the editor generate the xsl stylesheet for you. I like the idea, but would such a tool be possible? Regards Roger

fop svg and cocoon

2002-11-29 Thread xavier gibouin
Hi l tri to use svg in fop-0.20.3 and it works but when i translate my files in cocoon2 (which uses fop-0.20.3) an error message appears : java.lang.NoClassDefFoundError: org/apache/batik/dom/svg/DefaultSVGContext any ideas thanks a lot Xavier GibouinAxonieEspace Mercoeur8, rue

RE: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Atholl Tomlinson
Hi Roger We have an evaluation version of a WYSIWYG editing tool that you can download at http://www.rubico.com/products/reporting.htm Atholl -Original Message- From: Varley, Roger [mailto:[EMAIL PROTECTED] Sent: 29 November 2002 16:11 To: '[EMAIL PROTECTED]' Subject: RE: Best XSL-FO

Réf. : RE: HttpServletResponse.setHeader(Content-Disposition,attachme nt; filename=Report.pdf )

2002-11-29 Thread j-kong
Miguel wrote: If you set content-disposition, attachment. Web Browser will open save as dialog. You must put HttpServletResponse.setHeader(Content-Disposition,inline; filename=Report.pdf ) This works for me. This sends the PDF file in the same page in the navigator. However I would like

Landscape format

2002-11-29 Thread Sylvie Picouet
How is it possible to get some pages of a pdf document in the landscape format ? Thanks for your help. Sylvie. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

AW: Landscape format

2002-11-29 Thread Alexander Koppelhuber
Simply set page-height and page-width to the right values. (or just switch the values) The following part gives you a DIN A4 page in landscape. fo:layout-master-set fo:simple-page-master master-name=basic page page-height=210mm

Visuaal Basic

2002-11-29 Thread Matthew Lancashire
Can I embed the FOP java class in a VB/VB Script program Matthew Lancashire IT Project Manager Initial Electronic Security Ltd Tel.: 01254 688555 FAX:01254 267552 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Visuaal Basic

2002-11-29 Thread chris
Hi Matthew Using the Windows Scripting Host 5.6 and VBScript you are able to call any program through the shell (WScript.Shell). Refer to http://msdn.microsoft.com/scripting especially http://msdn.microsoft.com/library/default.asp?url=/library/en-us/scrip t56/html/wslrfexecmethod.asp for further

AW: Landscape format

2002-11-29 Thread Alexander Koppelhuber
Take a look at this tutorial: http://www.renderx.com/Tests/doc/fo/tutorial.pdf Chapter 6 contains some explanation and examples for page layouts. Should help you with your problem, Alex - To unsubscribe, e-mail: [EMAIL

RE: Landscape format

2002-11-29 Thread chris
Hi Sylvie It is not possible to change format during one single page sequence. So you need to define TWO simple-page-masters with different name and the switched values (as it was written by Alexander Koppelhuber). Then define a new page sequences where you want to change the format:

RE: Best XSL-FO WYSIWYG editor

2002-11-29 Thread Amit Bhatnagar
I dont fully understand the description of the features you need, but if being able to use one IDE to do the full flow from xml through xsl to fop and pdf in an effortless way, including the possibility to debug xsl transformations, then Excelon Stylus Studio is my candidate. It is

Re: Réf. : RE: HttpServletResponse.setHeader(Content-Disposition,attachme nt; filename=Report.pdf )

2002-11-29 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: If you set content-disposition, attachment. Web Browser will open save as dialog. You must put HttpServletResponse.setHeader(Content-Disposition,inline; filename=Report.pdf ) This works for me. This sends the PDF file in the same page in the navigator. However I would

Re: fop svg and cocoon

2002-11-29 Thread Oleg Tkachenko
xavier gibouin wrote: l tri to use svg in fop-0.20.3 and it works but when i translate my files in cocoon2 (which uses fop-0.20.3) an error message appears : java.lang.NoClassDefFoundError: org/apache/batik/dom/svg/DefaultSVGContext Probably batik.jar is not found in classpath. btw, what's

Re: Widows and Orphans

2002-11-29 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: I am a newbie to the FOP so please excuse me if this is a really dumb question but, I have been trying to get Widows and Orphans to operate in the FOP. They are not implemented yet. You can use blind table with keep-* properties specified on table rows to emulate them.

Re: Dynamic space adjustment between fo:list-tem-label and fo:list-item-body

2002-11-29 Thread Oleg Tkachenko
Chris Vejrazka wrote: I count the list items wit xsl:number and depending on the level of neesting i achieve different results (i.e. 1.2 or 1.2.1.) therefore i have different space usage in fo:list-item-label but i have no idea how i can manage it to handle the space between fo:list-item-label