inline-container

2001-09-25 Thread ºúÖ¾Áú
the fo:inline-container is not implement yet?? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Anything wrong with this code

2001-09-25 Thread Semprini Davide
Hi, PDF file is a binary file!!! Use this code it's work: byte[] content = outPDF.toByteArray(); response.setContentLength(content.length); response.getOutputStream().write(content); response.getOutputStream().flush(); D.Semprini Carmelo Montanez wrote: 02be01c1452d$7953e270$[EMAIL

cvs commit: xml-fop/docs/examples/embedding FopServlet.java fop.war

2001-09-25 Thread keiron
keiron 01/09/25 01:32:58 Modified:docs/examples/embedding FopServlet.java fop.war Log: updated servlet to reflect changes to fop Revision ChangesPath 1.4 +53 -9 xml-fop/docs/examples/embedding/FopServlet.java Index: FopServlet.java

Re: Batik/SVG working in latest FOP builds?

2001-09-25 Thread Keiron Liddle
Either you have an old version of batik or svg classes in you classpath or you need to do a build clean. On Mon, 24 Sep 2001 21:01:03 [EMAIL PROTECTED] wrote: Sorry to be dumb about this, but I just joined the list recently. My customer just added a requirement to use SVG images as

Backgound image and TOC alignment

2001-09-25 Thread Anders W. Tell
Hi, Could anyone help me with these two problems ? Im developing a forms application using PDF, for ebXML http://www.openebxml.org/projects/ptools/txslt/bpws_en.pdf However I have two problems: * How do I get a JPG appear as a backgound of the text on initial page ? Does FOP support this

cvs commit: xml-fop/test/xml/bugtests wrap.fo

2001-09-25 Thread keiron
keiron 01/09/25 04:59:18 Modified:src/org/apache/fop/layout LineArea.java test/xml/bugtests wrap.fo Log: fixed some text wrapping problems and improved the wrapping test Revision ChangesPath 1.51 +32 -25

cvs commit: xml-fop/src/org/apache/fop/image/analyser SVGReader.java

2001-09-25 Thread keiron
keiron 01/09/25 05:32:36 Modified:src/org/apache/fop/svg SVGElement.java src/org/apache/fop/image/analyser SVGReader.java Log: gets the width and height in a better way Revision ChangesPath 1.13 +20 -11

cvs commit: xml-fop/src/org/apache/fop/fo/flow StaticContent.java

2001-09-25 Thread keiron
keiron 01/09/25 05:46:19 Modified:src/org/apache/fop/fo/flow StaticContent.java Log: better debug for warning message Revision ChangesPath 1.17 +2 -2 xml-fop/src/org/apache/fop/fo/flow/StaticContent.java Index: StaticContent.java

cvs commit: xml-fop/src/org/apache/fop/render/awt AWTRenderer.java

2001-09-25 Thread keiron
keiron 01/09/25 06:22:55 Modified:src/org/apache/fop/render/awt AWTRenderer.java Log: fixed viewbox for svg inline images are now correctly placed Revision ChangesPath 1.37 +21 -5 xml-fop/src/org/apache/fop/render/awt/AWTRenderer.java Index:

Re: Running Fop using tomcat

2001-09-25 Thread Amit
Peter, Use a servlet instead of a a jsp page. There should be an example of how to do it in the path-to-fop\docs\examples Thanks Amit Peter Mathew wrote: Dear Friends, I'm in a fix,new to Fop and its termnologies Please help me, Thanks in advance I'm using Fop 0.17.0 DEV I need to

Re: Backgound image and TOC alignment

2001-09-25 Thread MEMMADI Said
Text-align work. You must use text-align=end and not right. Messages d´origine De: Anders W. Tell [EMAIL PROTECTED] Date: mardi 25 septembre 2001 14:29 Objet: Backgound image and TOC alignment Hi, Could anyone help me with these two problems ? Im developing a forms

IE6

2001-09-25 Thread Amit
Hi all, I finally got all my stuff working in netscape but not in IE6. In IE6 there just a blank page. No errors nothing. I am on WInNT and using Acrobat reader5 Here is my code: public void makePDF(String xmlFile, String xslFile, HttpServletResponse response) throws

TR: external graphics

2001-09-25 Thread rhinfo
thanks, i try file:. and other variant but it does not work, perhaps i have to check all my jars versions anyway, thank for this quick feed back Luc -Message d'origine- De : Mark [mailto:[EMAIL PROTECTED]] Envoyé : mardi 25 septembre 2001 15:56 À : [EMAIL PROTECTED] Objet : Re:

Re: Line feed in FOP

2001-09-25 Thread Petr Zeman
Title: Line feed in FOP You can try this: fo:block line-height="16pt" font-size="10pt" xsl:for-each select="SHIP_UNIT/ROW" xsl:value-of select="SHIP_UNIT_COUNT"/ xsl:text /xsl:text /xsl:for-each /fo:block Petr Zeman - Original Message - From: Linda Zammit To:

Re: Line feed in FOP

2001-09-25 Thread David S. Dixon
Linda, If you actually need a linefeed character (#10;) try this: xsl:value-of select="SHIP_UNIT_COUNT"/> fo:inline white-space-collapse="false"> #10; /fo:inline> -dd Linda Zammit wrote: I am trying to insert a line feed after an element value is displayed in a fo:table-cell. I have tried

Re: IE6

2001-09-25 Thread Louis . Masters
Amit: Did you upgrade from Acrobat 4 to 5? There are some issues with upgrading from Acrobat 4 to 5 - apparently the install program does not quite clean up everything correctly. Check out the Adobe website for how to fix this. We had some incidents with IE55 and white screens when a user

RE: IE6

2001-09-25 Thread Jim Wright
We're struggling with EXACTLY the same issue here. White screens on some renders, but not others, and only for IE6/Acrobat 5. I'll keep you posted. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 10:32 AM To: [EMAIL PROTECTED]

RE: IE6

2001-09-25 Thread Louis . Masters
I currently run IE6 with Acro 5 with no problems. If I remember right, the white screens were pretty sporadic. I believe I had the user remove both 4 and 5 and then reinstall 5. You may also have to remove several registry entries t o get it to work. -Lou Jim Wright [EMAIL PROTECTED] on

RE: IE6

2001-09-25 Thread Jim Wright
I just got it to work everywhere! I think the problem has something to do with some buffer in Explorer 6 (or Acrobat?) that doesn't flush properly. Very small .pdf files (5 - 10 K as a guess) show the white screen problem intermittently in IE6 (at least for me). If you get up above about 15K,

Re: Anything wrong with this code

2001-09-25 Thread Carmelo Montanez
When the PDF data is sent back to my client. Am I suppose to tell my client (IE6) that this is a PDF file (or a stream). I do set response.contentType to "application/pdf". Am I suppose to do something else? Carmelo - Original Message - From: Semprini Davide To:

CLASSPATH - was RE: Batik/SVG working in latest FOP builds?

2001-09-25 Thread Rossi, Bernard L. (LNG)
I've also seen a lot of these CLASSPATH problems while trying to use the latest versions of Fop, Xalan and Xerces. The problem is that they each include many of the same classes (like w3c, sax, xml, etc.) in their jar files. The versions and signatures don't match up and you get problems. This

Re: IE6

2001-09-25 Thread Amit
I finally got everything working in IE and Netscape .. thanks to all who helped out. Amit wrote: Hi all, I finally got all my stuff working in netscape but not in IE6. In IE6 there just a blank page. No errors nothing. I am on WInNT and using Acrobat reader5 Here is my code: public

Opening PDF automatically in IE

2001-09-25 Thread Peter Indelicato
Hello Everyone. Im pretty new to FOP, so I apologize if the answer to this question is well known or off-topic. Im creating a .fo file that renders fine using the FOP engine command-line/stand alone, but when the response is sent to the browser, the users is prompted to download a file (with a

RE: colspan-type feature

2001-09-25 Thread Michael Groves
is this what you're after, Amit? fo:table-cell number-columns-spanned=3 i don't think number-rows-spanned is supported though, but i could be wrong. mic. -Original Message- From: Amit [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 26 September 2001 7:37 To: [EMAIL PROTECTED] Subject: