Re: How to change the Deprecated methods

2003-05-19 Thread Jeremias Maerki
Please see the URL below for pointers to examples how it could/should be done today. The examples there are using JAXP instead of InputHandlers. Especially look at ExampleXML2PDF.java which does what you do now. The examples are available if 0.20.5 release candidates or from CVS.

Re: FOP servlet is called multiple times!!

2003-05-19 Thread J.Pietschmann
Savino, Matt C wrote: I'm sure this has nothing to do with any pi**ing contests with Adobe or Sun. IIRC this has something to do with the COM/ActiveX architecture and that it's not easy to pass open streams around, and with the habit of MS components to second-guess: If you use an URL like

Defining a font and referencing

2003-05-19 Thread Jeremy Nix
Title: Defining a font and referencing I want to know if it is possible to define a set of fonts...i.e.: fo:font size=... weight=... famil=... ... and then assign id's to them and reference them in fo:block font=REFERENCE tags throughout an xsl document? _ Jeremy Nix

PDF properties?

2003-05-19 Thread Daniela Würthinger
Hi, how can I find out whether a PDF generated with FOP has the following properties? - embedded ICC-Profiles - lossless compression - comments about overprinting and filling daniela - To unsubscribe, e-mail: [EMAIL

Re: Defining a font and referencing

2003-05-19 Thread J.Pietschmann
Jeremy Nix wrote: I want to know if it is possible to define a set of fonts...i.e.: fo:font size=... weight=... famil=... ... and then assign id's to them and reference them in fo:block font=REFERENCE tags throughout an xsl document? I don't think so. There is a font shorthand though where you can

Re: multiple fo:tables within a single fo:flow flow-name=xsl-region -body

2003-05-19 Thread J.Pietschmann
Holk, David A wrote: When I attempt to put two tables in line (one after the other) in a single page, only the second of the two rendered by FOP. What am I missing? You are missing that you provided an illegal FO document: fo:table fo:table-body fo:table-column This should

Re: multiple fo:tables within a single fo:flow flow-name=xsl-region -body

2003-05-19 Thread Rob Stote
David J.Pietschmann is quite correct you stylesheet is all messed up. Rob Try this: sorry about the indenting. fo:flow flow-name=xsl-region-body fo:blockshucks/fo:block fo:table fo:table-column column-width=73mm/ fo:table-column column-width=20mm/ fo:table-column

Re: Defining a font and referencing

2003-05-19 Thread Clay Leeds
Sure! it's called xsl:attribute-set... Below I've got my xsl:attribute-set attNormal as well as some other variables I set for the page. Then in the page-sequence section (below, after the =), xsl:use-attribute-sets=attNormal and we're on! Hope this helps! On 5/19/2003 11:45 AM, Jeremy Nix

RE: Defining a font and referencing

2003-05-19 Thread Jeremy Nix
Thanks, I appreciate everyones help with this. _ Jeremy Nix Senior Application Developer Southwest Financial Ltd. [EMAIL PROTECTED] (513) 621-6699 ext 1158 -Original Message- From: Clay Leeds [mailto:[EMAIL PROTECTED] Sent: Monday, May 19, 2003 3:44 PM To: [EMAIL

Re: multiple fo:tables within a single fo:flow flow-name=xsl-region -body

2003-05-19 Thread Clay Leeds
I don't know if this is why, but fo:table should be fo:table table-layout=fixed (it probably gives an error, but you might not see it if you don't use the -d argument (if using Command Line Interface). HTH! On 5/19/2003 12:18 PM, Holk, David A wrote: When I attempt to put two tables in line