Re: DTD name retrieving

2002-05-07 Thread Marie Steinberg
First question: what is the DTD name: the system identifier (usually a file name or URL), the optional public identifer, or the name of the document element? The DTD name is the name of the DTD file, for example: 'foo.dtd'. is it the system identifier ? There is no standardized mechanism to

AW: Java 1.1.x

2002-05-07 Thread Chaumette, Patrick
Hello, I had also problems compiling FOP-0.20.3 with JDK 1.2. For example some changes in AWTFontMetrics concerning Fonts are not portable on JDK1.2. The release notes should be changed to reflect this. They still say JDK 1.2(or later) is required. Since I didnt want i18n support I could take

Re: Basic-link problem in JSPs

2002-05-07 Thread Ralf Steppacher
First of all: Thank you very much for your help! fo:basic-link internal-destination=addressListHeading fo:page-number-citation color=blue ref-id=addressListHeading/ /fo:basic-link This is the real problem. You probably noticed that the link area is not the whole page number, in particular

MissingResourceException

2002-05-07 Thread Ryan.Asleson
I'm trying to upgrade from FOP 0.20.1 to 0.20.3. I do my development within the VisualAge 3.5.3 IDE. When trying to create a PDF using FOP 0.20.3, I get the following error: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base name

MissingResourceException

2002-05-07 Thread Ryan.Asleson
I'm trying to upgrade from FOP 0.20.1 to 0.20.3. I'm developing within the VisualAge for Java 3.5.3 IDE. When trying to create a PDF using FOP 0.20.3, I get the following error message: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base

Tables in Inline Object

2002-05-07 Thread joseph berdat
Hello, I would like to have 2 tables side by side on a single page. +---+---+ +---+---+ | | | | | | | T1 | | T2 | | | | | | | +---+---+ +---+---+ I try to do this by using fo:inline but it doesn't work? Is there another solution? Thank!

X-Y Text positioning

2002-05-07 Thread John Bourke
Guys, Do you know if FOP explicitly supports absolute X-Y placement of data on a page, i.e. put this text right here, 6 cm down from the top left corner and 4 cm in from the left edge? John *** This email and any files

AW: X-Y Text positioning

2002-05-07 Thread Chaumette, Patrick
Hello John I use with FOP 0.20.3 the following: fo:static-content flow-name=xsl-region-before fo:block-container position=absolute top=4.5cm left=13cm width=7.2cm height=0.8cm fo:block border-style=solid border-color=redI am here/fo:block

step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread Argyn Kuketayev
I have to print documents with Chinese (and other languages). I couldn't find a clear instruction how to do it. Can anybody help? \fop-0.20.3\docs\examples\advanced folder didn't help me much. thanx, Argyn

sup with fo

2002-05-07 Thread Mathy V Arumugam
Hello, I have 5*10sup5/sup in my xml file and trying to do a superscript using the following xsl lines. Unfortunately, this does nothing. Any clue??? xsl:template match=//sup fo:inline baseline-shift=sup font-size=3px xsl:apply-templates/ /fo:inline /xsl:template Thanks Mathy

Re: MissingResourceException

2002-05-07 Thread Ryan.Asleson
I also get this error: java.lang.NoClassDefFoundError: XMLResourceDescriptor java.lang.Throwable(java.lang.String) java.lang.Error(java.lang.String) java.lang.LinkageError(java.lang.String) java.lang.NoClassDefFoundError(java.lang.String) void org.apache.fop.svg.SVGElementMapping.setupSVG()

Re: Basic-link problem in JSPs

2002-05-07 Thread J.Pietschmann
Ralf Steppacher wrote: If this comes directly from your original style sheet, you should better use matching precise templates instead of piping everything into a match-all and then use a choose in it. Is this just a matter of style or do exact templates perform better? A matter of

Re: DTD name retrieving

2002-05-07 Thread J.Pietschmann
Marie Steinberg wrote: The DTD name is the name of the DTD file, for example: 'foo.dtd'. is it the system identifier ? This is the system identifier. I used the following solution but it isn't run with fop: ** foo.xsl * ?xml version=1.0 ? xsl:stylesheet

Re: MissingResourceException

2002-05-07 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: When trying to create a PDF using FOP 0.20.3, I get the following error: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base name org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US The PDF is simple.

Re: Tables in Inline Object

2002-05-07 Thread J.Pietschmann
joseph berdat wrote: I would like to have 2 tables side by side on a single page. +---+---+ +---+---+ | | | | | | | T1 | | T2 | | | | | | | +---+---+ +---+---+ I try to do this by using fo:inline but it doesn't work? It shouldn't. You would have to use

Re: step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread J.Pietschmann
Argyn Kuketayev wrote: I have to print documents with Chinese (and other languages). I couldn't find a clear instruction how to do it. Find a font containing glyphs for your script. Configure it for use by FOP as describet in docs/html-docs/fonts.html Use an XML capable editor which allows you

Re: sup with fo

2002-05-07 Thread Mathy V Arumugam
Hmmm.. I have tried baselin-shift to super. I think the problem is with my xml file :). Instead of having supertag in xml, I have the entity representation of the tag.. meaning I have lt;supergt;. So, by doing the search for the tag super does not help. Any advice Thanks J.Pietschmann