RE: Making a native win32 binary out of FOP

2001-10-15 Thread Trevor_Campbell
Have a look at Jet http://www.excelsior-usa.com/jet.html it seems to fit the bill - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Fop crashes when using too many id's ??????

2001-10-15 Thread Keiron Liddle
The problem is the messy way that id's are handled. An id is on a table row. The id is first configured for a particular page then the table row (along with the id) is removed from the page. Then the table row is added to the next page and the id is placed without configuring the id, this then

How to get information about overflow...

2001-10-15 Thread Beer, Christian
Hi list! I have fop-code to create a postcard (page-height=105mm page-width=148mm) where on the first page there is an image and on the second page there should be text on the left and space on the right (for the address). This snippet should create the text on the left:

Antwort: RE: Antwort: Making a native win32 binary out of FOP

2001-10-15 Thread joerg . pietschmann
[EMAIL PROTECTED] wrote There appears to be a way to package the MS JVM together with some Java classes into an .exe. Does Saxon actually package MS JMV, I've understood that saxon.exe still required MS JMV to be installed into your system? Oops, you are right, the MS JVM has already to be

Why XSL FO

2001-10-15 Thread Mailer Mailer
Hi there, Can anyone help me in knowing that why XSL cannot be written to translate the xml to PDF. Why XSL FO is the approach to create the PDF. Lets forget about the generic solution to create multiple format document. Now anyone kindly tell me Can I write xsl's to create my xmls directly

Antwort: Why XSL FO

2001-10-15 Thread joerg . pietschmann
Someone wrote: Can anyone help me in knowing that why XSL cannot be written to translate the xml to PDF. Why XSL FO is the approach to create the PDF. Golly, you *are* persistent. XSLFO processors have the task to layout your text structure as described by XSL FOs onto pages. That's a much more

AW: Why XSL FO

2001-10-15 Thread Beer, Christian
I think I didn't understand your question?? What do you want to do?? Is it XML - PDF conversion? If yes, then think about: XML --XSLT-- XSL FO --FOP-- PDF that means: - Use xalan (or another XSLT-processor) to convert XML to XSL FO - Feed the output of xalan to FOP to produce PDF (or PCL or

RE: [ANN] XSLfast: Authoring tool for XSL-FO .. isn't the first !

2001-10-15 Thread Giannetti, Fabio
-Original Message- From: Stephan Albers [mailto:[EMAIL PROTECTED]] Sent: 12 October 2001 22:15 To: [EMAIL PROTECTED] Subject: [ANN] XSLfast: Authoring tool for XSL-FO Dear subscribers, after a long development period, we have finaly released the very first version of

Re: Embedding fop in IE..Help!!!

2001-10-15 Thread Carmelo Montanez
I take it you are using an application. Are you sending both text and binary data at the same time?, are you using the printWriter? or the getOutputStream method class?, for binary data you will need the getOutputStream. I had the same problem some time ago and sending JUST the binary data

RE: Embedding fop in IE..Help!!!

2001-10-15 Thread Stefan Weber
Did you set the proper content type? response.setContentType(application/pdf); Stefan -Original Message- From: Rajagopal. V [mailto:[EMAIL PROTECTED]] Sent: Monday, October 15, 2001 4:45 PM To: [EMAIL PROTECTED] Subject: Embedding fop in IE..Help!!! Hi All I have an XML file which i

RE: Table Headings

2001-10-15 Thread Scott Moore
Thanks Karen. That was exactly the problem. I had just realized that before I read your email. Scott -Original Message- From: Karen Lease [mailto:[EMAIL PROTECTED]] Sent: Sunday, October 14, 2001 11:46 AM To: [EMAIL PROTECTED] Subject: Re: Table Headings Hi Scott, It sounds like

DO NOT REPLY [Bug 4171] New: - white-space-collapse=false does not work

2001-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4171. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: Table Headings

2001-10-15 Thread Scott Moore
Karen, I have another table related question. I'm trying to add gridlines into the table body by specifying: border-width=1px border-color=black border-bottom-style=solid on the fo:block/ underneath each cell. This only works if each cell is the same height. Although the text is all rows

Re: Embedding fop in IE..Help!!!

2001-10-15 Thread Rajagopal. V
Hi Im using a JSP to generate this PDF. I am able to open other Static pdfs. This is what i do, i create a bytearrayoutputstream which will hold the output of the render and then use a pageContext.getOut().print(bytearrayoutputstreamobject); and this results in printing binary content on the

RE: Table Headings

2001-10-15 Thread Scott Moore
Have one of the cells wrap text so it grows taller than the other cells. Then you'll see the problem. Scott -Original Message- From: Shkuro, Yuri [mailto:[EMAIL PROTECTED]] Sent: Monday, October 15, 2001 2:47 PM To: '[EMAIL PROTECTED]' Subject: RE: Table Headings I put the borders

RE: Table Headings

2001-10-15 Thread Shkuro, Yuri
I do have cells like that - some have only one line of text, some have two or more. Since the border is for the cell, not the fo:block inside the cell, it works fine. YS -Original Message- From: Scott Moore [mailto:[EMAIL PROTECTED]] Sent: Monday, October 15, 2001 2:49 PM To: '[EMAIL

RE: Embedding fop in IE..Help!!!

2001-10-15 Thread Shkuro, Yuri
I used JSP to stream out PDF files successfully. What may be happenning in your case is that the whitespace between %!% %% is written to the output stream before you start writing the PDF content. Try calling clearBuffer() on the output stream first. YS -Original Message- From:

RE: Embedding fop in IE..Help!!!

2001-10-15 Thread Rajagopal. V
Hi Infact, i use a taglib to do the PDF Rendition, I have a library written for generating PDFs and it takes the Format as an attribute like xml:render format=PDF file=%=xslFile%/ or xml:render format=HTML file=%=xslFile%/ And in the taglib, i use it like

Re: Table Headings

2001-10-15 Thread Karen Lease
Try using points (pt). 1pt is 1/72 inch. You can use 0.5 pt for example. -Karen Scott Moore wrote: You're right. I misunderstood your message. Even with a border-width=1px, the border seem kinda large. Is there a way to specify a smaller width for the gridline? Scott -Original

Re: fo:block

2001-10-15 Thread Carmelo Montanez
I had not try this, but how about using a table?, then you can put each block in the same table. Greetings Carmelo - Original Message - From: Pablo Iaria [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 15, 2001 3:03 PM Subject: fo:block Hi all, How can I do to have

Re: fo:block

2001-10-15 Thread Karen Lease
Hi Pablo, I'm not sure what you mean by row. If you mean a line of text, the answer is no, at least not like that. You can try using a leader between the text, replacing the leader-length value with what you want. fo:blockFirst textfo:leader leader-pattern=space leader-length=6cm/Second

RE: block

2001-10-15 Thread Scott Moore
Try using fo:inline instead of fo:block. You can have several fo:inline in the same fo:block parent, which could be on the same line. fo:block fo:inlineFirst text/fo:inline fo:inlineSecond text/fo:inline /fo:block This way you could define different properties for each fo:inline Scott

Re: fo:block

2001-10-15 Thread jthaemlitz
I'm not sure what you mean by row either, but you could use inline instead of block. fo:blockfo:inlineFirst text/fo:inlinefo:inlineSecond text/fo:inline/fo:block this way you don't start Second text on a new line (if new line is what you meant by row). JohnPT

dpi

2001-10-15 Thread panos
Is it possible to change the default dpi from 72 to 600 (say)? Thanks, --Panos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: dpi

2001-10-15 Thread Jim Wright
Change it with what? I assume you mean graphics... A pdf will display to the resolution of your printer. Gifs, pngs and the like often default to 72 dpi, but you can work around this by making the graphic bigger than it needs to be, then scaling it down within the appropriate block (just make

RE: dpi

2001-10-15 Thread panos
Thanks. What about background colours which do not use svg? So if you do fo:block font-size=18pt font-family=sans-serif line-height=24pt space-after.optimum=15pt background-color=blue color=white text-align=center

RE: dpi

2001-10-15 Thread Jim Wright
If you're printing a background color (not graphic), the resolution of your printer is irrelevant. By the way, most printers will lay down flat color areas by mixing CMYK (or in some cases, just CMY) as dictated by your color, and interpreted through the OS and your printer software. So, no

How to embed FOP-0.18 in Cocoon 1.8?

2001-10-15 Thread sudhakar s sankar
Hai, i am new to FOP. now, i am using the Cocoon 1.8 build to use the FOP. here, the version of FOP is 0.13. How can i upgrade my FOP 0.13 to FOP 0.18. Please help me Thanks in Advance With Regards Sudhakar Sankar

RE: How to embed FOP-0.18 in Cocoon 1.8?

2001-10-15 Thread Dianliang Zhu
Hi, you need to modify both Engine (org.apache.cocoon.Engine) and FO2PDFFormatter (org.apache.cocoon.formatter.FO2PDFFormatter) classes. I have already modified them (see the source code attached), hope it can be a little contribution to some cocoon developers. I'm also wondering if someone

RE: How to embed FOP-0.18 in Cocoon 1.8?

2001-10-15 Thread Dianliang Zhu
Sorry, you should also modify Formatter interface (org.apache.cocoon.formatter.Formatter). source code attached. Regards, Dianliang -Original Message- From: Dianliang Zhu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 16, 2001 2:30 PM To: '[EMAIL PROTECTED]' Subject: RE: How to

Calling FOP with strings rather than filenames

2001-10-15 Thread Robert Kaufman
In the embedding example at xml.apache.org: 1) Driver driver = new Driver(); 2) driver.setRenderer(Driver.RENDER_PDF); 3) InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile); 4) XMLReader parser = inputHandler.getParser(); 5) driver.setOutputStream(new FileOutputStream(outFile));

XML parser question

2001-10-15 Thread Willie Vu
Is it possible to configure FOP to use a XML parser other than Xerces? In my existing app, I'm already using Crimson, which I want to reuse for FOP. Thanks. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: [Bug 4171] New: - white-space-collapse=false does not work

2001-10-15 Thread Christopher R. Maden
At 10:25 15-10-2001, [EMAIL PROTECTED] wrote: When I create a FO document with fo:inline white-space-collapse=false /fo:inline I see that in my final document I can get two spaces to separate certain items. But when I change the document to a xsl stylesheet with FO I stops working. No - it's