RE: foregroundColor

2002-05-14 Thread trevor_campbell
A note about using XML-SPY for fop development. I used it quite a bit lately and while I found it good, the DTD it uses for XSL:FO is far from complete and sometimes incorrect. That's not to say it isn't very useful, just be careful and have the spec (http://www.w3.org/TR/xsl/) handy as well.

page-masters for different 1st page

2002-05-14 Thread PATEL, DINESH (ISD)
I now have a requirement for a document to have different content in the region-after for the first page. I've thought about using different fo:simple-page-master elements for this and also using something like: fo:page-sequence-master master-name=seq fo:repeatable-page-master-alternatives

Re: page-masters for different 1st page

2002-05-14 Thread Ralf Steppacher
From what I can gleam from the examples all this allows me to do is have different margins for the first page. My first page needs to have different content in the region-after only for the first page. Is there a way of doing this? You are nearly there... You can name your region-after within the

Re: page-masters for different 1st page

2002-05-14 Thread Jeremias Maerki
You're almost there. All you have to do now is apply a non-default region-name to the region-after of one of the simple-page-masters. Then you create a new fo:static-content and set the flow-name to this other name. Example (uninteresting stuff is left out): fo:simple-page-master

Attribute's effect in nested fo:inline

2002-05-14 Thread Ramesh Suribhatla
Hi, I am using FOP 0.20.2. I am having a problem while applying 'text-decoration' and 'vertical-align' attributes to a nested fo:inline. I have some text content in the inner fo:inline where the effect of the above attributes is not being seen, when they are specified in the outer fo:inline. If

Re: Attribute's effect in nested fo:inline

2002-05-14 Thread Ralf Steppacher
I am using FOP 0.20.2. I am having a problem while applying 'text-decoration' and 'vertical-align' attributes to a nested fo:inline. I have some text content in the inner fo:inline where the effect of the above attributes is not being seen, when they are specified in the outer fo:inline. If

Image Size and Rotation

2002-05-14 Thread Darya Said-Akbari
Hello, is there anyone who can tell me how to resize and rotate an image (SVG and/or JPG). For resize an image I know the trick through the content-width attribute in an table-cell element. However there I lose the posssibility to set a ratio. More important is on how I can rotate an SVG

Re: Attribute's effect in nested fo:inline

2002-05-14 Thread Ramesh Suribhatla
Hi Mr. Ralf, Thanks a lot for your prompt reply. I will have to take care that those attributes are carried on to inner fo:inline to get the desired effect. Regards, Ramesh --- Ralf Steppacher [EMAIL PROTECTED] wrote: The XSL spec says that both text-decoration and vertical-align are not

Newbie Problem: FOP over SOAP - org.apache.fop.apps.FOPException

2002-05-14 Thread Tobias Mueller
Hi! I'm trying to get FOP over SOAP (invoking a bean) up and running, but I always receive the org.apache.fop.apps.FOPException error message. Though I'm a beginner in this matter, hopefully someone can give me a hint. My code: import java.io.*; import java.util.*; import

RE: page-masters for different 1st page

2002-05-14 Thread PATEL, DINESH (ISD)
Thank you - This is exactly what I needed. -Original Message- From: Ralf Steppacher [SMTP:[EMAIL PROTECTED] Sent: Tue 14 May 2002 09:53 To: [EMAIL PROTECTED] Subject: Re: page-masters for different 1st page From what I can gleam from the examples all this allows me to do

Acrobat pictograms and document summary

2002-05-14 Thread jens
Hello folks, I am working currently on transforming XML-documents into pdf documents. When I open the rendered document with the Acrobat Reader 5.0 the small pictograms look fine, showing a little picture of the page itself. However, when I open the same pdf document with Internet Explorer 6.0

AWT renderer

2002-05-14 Thread MARTIN Franck
Hi all, I can't find any example that shows how to use the AWT renderer. I assume it is different from the other renderers since the target is not a file. If someone could provide me with a sample code, i would appreciate that very much. Thank you Franck MARTIN

Re: Image Size and Rotation

2002-05-14 Thread Jeremias Maerki
At the moment it's probably best to embedd the image in SVG where you can easily scale and rotate. I've done this with SVG a lot but not with JPEG, but this should work, too. Here's an excerpt from one of my stylesheets that does this kind of stuff. fo:instream-foreign-object svg

Problem with SVG only Black White

2002-05-14 Thread Sam Prokop
Hi all, i´ve got some svg made by jfree-chart, they look nice in the batik-browser, but if i render them with fop 0.20.3 to pdf they are just black and white. anyone any ideas? thanks in anticipation -- Sam

Re: New FOP release?

2002-05-14 Thread L Rutker
I have asked the question more than once in the past. No one on this list seems to know anything about the development / rewrite of fop. I wish you luck with your search but I doubt you will find an answer on this list. Lou From: joseph berdat [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To:

Schema to XSL:FO

2002-05-14 Thread Alex McLintock
Has anyone produced a stylesheet which takes an XML schema and converts it into XSL:FO for pretty printing perhaps via SVG? Rather than use Visio to document my xml fragment examples I think it would be best if I could produce a diagram from the schema itself. Alex Openweb Analysts Ltd,

Awt for print preview

2002-05-14 Thread MARTIN Franck
I'm trying to use the awt rendering in order to provide the user with a print preview but i can't figure out how fop works with awt. I have stumble upon a sample code but i don't understand what is translator: driver.setRenderer(new org.apache.fop.render.awt.AWTRenderer(translator));

AW: Awt for print preview

2002-05-14 Thread Chaumette, Patrick
Hello Franck, seems to me this translator does the translation in different languages for the GUI texts.(English, German, etc...) Greetings, Patrick Dipl. Inform. Patrick Chaumette T-Systems ITS GmbH Service Prozesse Retail Hausanschrift: Fasanenweg 9, 70771 Leinfelden-Echterdingen

Cell reference in Table.

2002-05-14 Thread joseph berdat
Hi, Is that possible to reference directly a cell in a table when I'm building a row. Or to avoid to fill certain cell depending of certains criteria. @+

Re: New FOP release?

2002-05-14 Thread Patrick Andries
Jeremias Maerki wrote: The problem is rather that the questions gets posted a lot and the response is always the same. Maybe people are getting tired of responding to them. The mailing list archives contain a lot of similar answers. Why not post the latest status on the Web ? It comes down to

Re: Acrobat pictograms and document summary

2002-05-14 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: Another problem is the document summary of the Acrobat Reader. How can I fill in these fields? You can postprocess the PDF generated by FOP with another tool, like iText http://www.lowagie.com/iText/ J.Pietschmann

Re: Newbie Problem: FOP over SOAP - org.apache.fop.apps.FOPException

2002-05-14 Thread J.Pietschmann
Tobias Mueller wrote: I'm trying to get FOP over SOAP (invoking a bean) up and running, but I always receive the org.apache.fop.apps.FOPException error message. Though Do your XML/XSL files work with the command line FOP application? They may contain errors. It is alos possible that the files

Re: AWT renderer

2002-05-14 Thread J.Pietschmann
MARTIN Franck wrote: I can't find any example that shows how to use the AWT renderer. I assume it is different from the other renderers since the target is not a file. If someone could provide me with a sample code, i would appreciate that very much. Get the FOP source distribution and look into

Re: Problem with SVG only Black White

2002-05-14 Thread J.Pietschmann
Sam Prokop wrote: i´ve got some svg made by jfree-chart, they look nice in the batik-browser, but if i render them with fop 0.20.3 to pdf they are just black and white. This hasn't come up before. As a wild guess check whether your SVG contains transparent stuff or certain other shading effects,

Marketing material : conving your manager

2002-05-14 Thread Patrick Andries
We spoke earlier on this list of needing marketing material to convince managers about the virtues of XSLFO. I have found this description of a Gartner Note which is positive (I may not disclose content). Cost of full note $95.