Help me

2001-08-15 Thread xi chen
hi,dear Mr/Mrs, I met a question about registering fonts in FOP 0.17.0 DEV. in the apache website about Fop,it said i can register the fonts wiht FOP like this: ** Edit conf/userconfig.xml and add entries for the font if the fonts

RE: FO Frames

2001-08-16 Thread Jean-Michel Biollaz (pb)
Keiron, Your configuration StrokeSVGText is working. I also change the font in my SVG file from Arial to Helvetica (which is a PDF font), and now my document is 47K instead of 1MB. The generation time is also faster. Great ! Note : I find the block-container is not appropriate to draw single

Using a Style Sheet with FOP

2001-08-20 Thread West, Chris
Title: Using a Style Sheet with FOP I've been using the example files (i.e., xml2pdf.xsl and xslfoRef.xml) provided with the FOP distribution to become acquainted with FOP. Using XSLTInputHandler(), I've generated a pdf with the above files. However, the logic within XSLTInputHandler()

re: Using a Style Sheet with FOP

2001-08-20 Thread West, Chris
Title: re: Using a Style Sheet with FOP Sorry about the post. I finally figured out that the xsl file is being used when XSLTInputHandler.getParser() is called. On to the next hurdle ... Chris W.

Re: FOP, SVG and external-graphic Question

2001-08-22 Thread Keiron Liddle
Fred, The xml markup between the svg:svg and /svg:svg must be valid svg markup. The example you have is not valid. eg. the markup should be able to work standalone as an svg document. If you want to put a graphic inside svg then you need to use the svg:image tag. I am having trouble

help decreasing .fo size

2001-08-22 Thread Colin Savage
I am creating a report-style listing of about 1500 rows with 5 columns per row. The biggest problem I have is the size of the fo doc. My source xml doc is about 700kb, but when I create the xsl fo doc it is more than 5mb. I am using tables to do the listing; looking at the amount of characters to

freeze? really slow rendering

2001-08-27 Thread ronald heller
Hi, i have had some difficulties with fop 0.19 and fop 0.20. first of all I'm processing a 400 page book, and have delt with memory problems etc. I use the following startup command to solve my memory error etc: java -Xms64M -Xmx512M -cp

RE: freeze? really slow rendering

2001-08-27 Thread ronald heller
Ok thank you, I'll try that, but.. isn't it so that when using a new pagesequence, my pagenumbering starts over again? At 09:52 AM 8/27/01 +0200, you wrote: I ran into the same problem, as far as i can see the memory usage goes through the roof when the page sequence extends over too many pages,

RE: freeze? really slow rendering

2001-08-27 Thread Colin Savage
I tested this using the headfoot.fo example from fop 0.20 fo:page-sequence master-name=first fo:static-content flow-name=xsl-region-before fo:block line-height=14pt font-size=10pt text-align=endtable examples/fo:block /fo:static-content fo:static-content

RE: freeze? really slow rendering

2001-08-27 Thread Colin Savage
Also note: created a 2000 page doc using that example without having to increase the memory -Original Message- From: Colin Savage [mailto:[EMAIL PROTECTED] Sent: 27 August 2001 10:50 To: [EMAIL PROTECTED] Subject: RE: freeze? really slow rendering I tested this using the headfoot.fo

Unix - FOP throwing classdef not found error

2001-08-28 Thread Sharan, Dharmendra
Hi, I am getting java runtime errors on Unix, I had copied all the relevant jars ie. fop.jar xalan-2.0.0.jar batik.jar jimi-1.0.jar xalanj1compat.jar, however I am using an older version of xerces (xerces.jar) instead of xerces.jar-1.2.3.jar since the rest of classes that I am using

Test #0

2001-08-03 Thread Arved Sandstrom
Do I need to moderate these damned things? Fairly Senior Software Type e-plicity (http://www.e-plicity.com) Wireless * B2B * J2EE * XML --- Halifax, Nova Scotia

Using FOP in Servlet - *dynamically* generating XSL:FO using XML and XSLT

2001-09-04 Thread Sharan, Dharmendra
Hi, I am trying to have use XSL:FOP through servlet and I was hoping to use XML and XSLT to dynamically generate the XSL:FOP format file to be passed to Driver for rendering as PDF. The example which comes with distribution uses xmlFile and xslFile, however I wanted to generate the XML

Re: Using FOP in Servlet - *dynamically* generating XSL:FO using XML and XSLT

2001-09-04 Thread Jim Hopp
Here's how I do it: ByteArrayOutputStream pdfOutput = new ByteArrayOutputStream(); try { Driver driver = new Driver(new InputSource (new StringReader(transformed)), pdfOutput); driver.setRenderer(Driver.RENDER_PDF);

FOP - UNICODE

2001-09-10 Thread Jean-Michel Biollaz (pb)
How can I ask FOP to use Unicode without loosing the PDF internal font (without using raster font) ? i.e. I want to keep my StrokeSVGText=False working with the Helvetica PDF internal font to keep my conversion fast. Thank's, Jean-Michel -Message d'origine- De : Jean-Michel Biollaz (pb)

alignment of leader/rule ?

2001-09-21 Thread Sharan, Dharmendra
Hi, I am using Fop-0.20.1 and have been trying to have a fo:leader to be aligned in the middle/center, however it defaults to the baseline/bottom. ie. it is currently like the following :- THIS IS A TITLE LINE

Re: Columns

2001-10-12 Thread Arved Sandstrom
At 01:41 PM 10/4/01 +0200, Sam Prokop wrote: Hi folks, I´ve got the following Problem, i want to create a page, that has a different number of columns, for example it starts with 2 columns than only one and than 4. But i can only define columns in region-body and there can be only one region-body

RE: Servlet stops

2001-10-18 Thread Colin Savage
It's the way that fop processes the doc. Basically it keeps grabbing memory... a) until you reach the limit of the JVM (i.e. outofmemoryerror fix by starting java with -Xms64M -Xmx320M) or b) until you reach the limit of physical ram available (then the OS starts paging to virtual memory i.e. it

Columns

2001-10-04 Thread Sam Prokop
Hi folks, I´ve got the following Problem, i want to create a page, that has a different number of columns, for example it starts with 2 columns than only one and than 4. But i can only define columns in region-body and there can be only one region-body in a simple-page-master. I don´t want to

The text renderer errors out when it encounters a positioned block-container

2001-11-02 Thread Chuck Paussa
This isn't a show stopper in any way since I can render text without FOP. I added a positioned block-container to my .FO. Now the text renderer bombs on that page. Is there any way to include a positioned block-container that does not crash the text renderer? Chuck value: FOP 0.20.2 OS Windows

page breaks

2001-11-07 Thread Batiste Casanova
Hi, I'm a new FOP user and i have some problems with page breaks. It seems that the "page-break-inside" property is not yet implemented Does anybody know how to avoid a page break inside a fo:block element?? Will it be implemented ina next release of FOP? Thanks.. Baptiste

interaction between FOP and Xalan

2001-11-08 Thread Laurent Vaills
Hello. I am using FOP 0.20.1 and Xalan-J 2.2.0_D11, and xerces 1.4.3. I have the same errors if I use the xalan-2.0.0.jar distributed with Fop. I am currently parsing an xml document to get a DOM. I put this DOM to xalan and it transforms it, with a correct stylsheet, to a DOMResult which

Tab stop

2001-11-09 Thread Laurent Vaills
Hello. I was looking for an xsl:fo element that does the tab stop. I mean by tab stop the possibility to tell that tabulation has a certain alignment and a leader pattern. I have checked the fo:leader but it does not correpond to my needs. I would like to have something corresponding to the Java

RE: header

2001-11-09 Thread Michail Bikoulis
I think you can have something like this: xsl:for-each select=account fo:page-sequence master-name=main !-- Header content. -- fo:static-content flow-name=xsl-region-before fo:block text-align=start font-size=70%

Re[2]: header

2001-11-09 Thread Ingo Bruell
Hi Michail, MB xsl:for-each select=account MB fo:page-sequence master-name=main MB !-- Header content. -- MB fo:static-content flow-name=xsl-region-before MB fo:block text-align=start font-size=70% MB xsl:value-of

RE: adding a newline in a block

2001-11-01 Thread Michail Bikoulis
Maybe you can use fo:inline in some way, but I'm not sure since I haven't done it myself. Idealy, you should modify your XML do be something like this: Chapter Chapter text goes here and is quite ... a ... few ... lines ... long ...

Re: True Type Fonts in Fop

2001-12-14 Thread Matt Raible
I believe FOP only supports Times and Courier. I discovered last week that if you don't specify any font, you'll get Arial. You might try www.renderx.com for a parser that supports more of the standard. Matt --- Sam Prokop [EMAIL PROTECTED] wrote: Hi, i´ve got the following problem, i did

Re: True Type Fonts in Fop

2001-12-17 Thread jthaemlitz
They were Type 1 PFM fonts. They looked fine when they were viewed with Acrobat on NeoWare Linux. But they would not print (standard Linux lpr poscript was used). JohnPT

Need more diagnostic info from FOP ... how?

2001-12-19 Thread Trevor Jenkins
I'm using fop 0.20.2 with the (1.47 experimental) DocBook XSL stylesheets. Although fop reports Parsing of document complete when I use this setup with my document I receive errors saying: [ERROR]: property 'master-reference' ignored and then after Parsing of document complete: [ERROR]:

Output to PDF using FOPServlet

2001-12-21 Thread Lakshmi Anantharaman
Just got a download of FOP . Nothing has ever worked for me in a dya amazing I got throu the set up all command line fop worked very well . I test the FOP servlet and running it I get the following logged ! ERROR 10089 [fop ] (): ERROR 10089 [fop ] (): ERROR 10089 [fop ]

Re: Output to PDF using FOPServlet

2001-12-21 Thread Jeremias Maerki
See the FAQ! http://www.owal.co.uk:8090/asf/servlet/asf/screen/DisplayQuestionAnswer/action/SetAll/project_id/18/faq_id/276/topic_id/495/question_id/805 On Thu, 20 Dec 2001 18:20:50 -0800 Lakshmi Anantharaman wrote: Just got a download of FOP . Nothing has ever worked for me in a dya amazing I

Cell-spanning bug -- endless loop (BUG 3400)

2001-12-21 Thread Stefan Weber
Hi all, when is a bugfix expected? Is it already fixed in 0.20.2RC ? thanks, Stefan Stefan Weber Tel: +49 (721) 920 918 26 mailto: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] sitewaerts GmbH Hebelstrae 15 D-76133 Karlsruhe Tel: +49 (721) 920 918 0 Fax: +49 (721) 920 918 29

Re: [ERROR]: Logger not set

2001-12-26 Thread jthaemlitz
using org.apache.log, you can do the following, or modify for your needs Hierarchy hierarchy = Hierarchy.getDefaultHierarchy(); PatternFormatter formatter = new PatternFormatter( [%{priority}]:%{message}\n%{throwable} ); LogTarget target = new StreamTarget(System.out, formatter);

Render pdf via Servlet !

2001-12-26 Thread Lakshmi Anantharaman
Got through this ( Driver.setLogger()) , I have a test xml /xsl-fo glossary.xml / glossary.xsl that came as part of Fop distribution . Not able to get my servlet to open up the PDF . It retruns a blank page ! Any help appreciated ! Thanks lakshmi -Original Message- From: Lakshmi

Re: internal linking between separate page-sequences

2002-01-07 Thread Meena
Hi Michael, You have to put as 'generate_id' and not 'generated_id'. I tried with it and it works fine. Regds, Meena. - Original Message - From: Smethurst, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 07, 2002 4:07 PM Subject: internal linking between separate

RE: internal linking between separate page-sequences

2002-01-07 Thread Colin Savage
the id attribute must be unique throughout the entire xml document. When you are using generate-id() in xslt the id generated relates to the node in the source tree, not the result tree. If you are attempting to use generate-id() in xsl:fo, it will not work, remember that xsl:fo is a

RE: internal linking between separate page-sequences

2002-01-07 Thread Smethurst, Michael
for the purposes of this stripped down file i'm not using generate-id() at all. [i was using it to generate ids based on nodes in the source xml tree but i stripped it out (and replaced it with the WORD generated_id to signify that i would in practice generate the id in the xslt) cos i wanted the

There is a FOP's editor??

2002-01-09 Thread Pedro Barco Bernal
I am searching a editor of XSL-FO. Do you know something?

RE: There is a FOP's editor??

2002-01-09 Thread Morten Tuft
XML spy is a application that makes xsl-documents, wherein the XSL-FO components are placed. -Original Message- From: Pedro Barco Bernal [mailto:[EMAIL PROTECTED] Sent: 9. januar 2002 16:58 To: [EMAIL PROTECTED] Subject: There is a FOP's editor?? I am searching a editor of XSL-FO. Do

build fails

2002-01-09 Thread Sebastian Will
Hi, I'm currently trying to compile Fop-0.20.1-src.tar from xml.apache.org unter w2k/sun jdk1.4beta2, but it says the following: [javac] E:\download\Programming\Java API's\Fop-0.20.1-src.tar\Fop-0.20.1\bui ld\src\org\apache\fop\svg\PDFGraphics2D.java:959: nested class org.apache.fop.sv

RE: About fo:basic-link

2002-01-10 Thread Smethurst, Michael
if you're matching the same nodes in different modes use fo:basic-link internal-destination={generate-id(.)}link/fo:basic-link on the link and fo:block id={generate-id(.)}whatever/fo:block on the destination [EMAIL PROTECTED]

Re: Someone has used FOA??

2002-01-10 Thread David Wood
The tutorial that is available on FOA's website should clear most things up. The upper-right window is where you'll be accessing your XML; you use the open button on that window to open your file. If you have not read through the FOA tutorial, I recommend that you do; the program was

Re: CVS version

2002-01-10 Thread Keiron Liddle
see: http://marc.theaimsgroup.com/?l=fop-devm=100374237103385w=2 On 2002.01.10 16:35 Carmelo Montanez wrote: I get the same thing!!, anyone has a clue? Carmelo - Original Message - From: Ludovic Maurillon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 10:29 AM

R: Problems with FOP and internal links

2002-01-11 Thread Stefano Angelici
Michael, thank you for your suggestion, but I can't still make my script working right. Maybe I have to quit with internal links :-) Best regards. Stefano -Messaggio originale- Da: Smethurst, Michael [mailto:[EMAIL PROTECTED] Inviato: venerdì 11 gennaio 2002 11.44 A: '[EMAIL

Vertical alignment question

2002-01-11 Thread Jonathan O'Keeffe
Hello - I have a question about vertical alignment within a block. I have a fixed-height block with a variable number of short lines, and I want the first (n - 1) lines grouped together at the top of the block, and line (n) aligned to the bottom of the block - something like this:

Unsatisfied link error on Unix: using FOP for PDF output with GIFs

2002-01-14 Thread Sharan, Dharmendra
Hi, I was trying to generate PDF file using XSL:FO and when the path to image(gif) is incorrect the PDF does shows up without the GIF. however, when the path is corrrect, it tries to load the GIF it runs into Unsatidfied Link Error. I was wondering if FOP needs any particular X11

Funning FOP in a servlet

2002-01-15 Thread Lakshmi Anantharaman
I have a servlet running FOP that should render with xml and xsl-fo the output to PDF. It did not work . I tried using code that came with the distribution . I am now trying to direct my pdf to be saved in the server . I am able to create a pdf file but no content inside . which reminds me my

Regarding creating a table

2002-01-15 Thread Meena
Hi, I need to have table in my pdf output. My input xml file is something like tis chapter name="test" descriptionxyz/description html body table border="1" width="94%" tr td width="27%" bgcolor="#00" bINPUT AVAILABLE/b /td td width="32%" bgcolor="#00" bIMPLEMENTATION

Re: Regarding creating a table

2002-01-15 Thread Ian Larner
Meena, FO tables have a completely different tag set. Your table needs to be transformed into something like: fo:table table-layout=fixed space-before=10pt space-after=10pt background-color=white start-indent=0pt end-indent=24pt fo:table-column column-number=1 column-width=4cm/ fo:table-column

Latest Download

2002-01-16 Thread Lakshmi Anantharaman
I wish to download a the latest FOP binary.If I need to build it too I would like some details . My servlet fails withnosuchMethod Please help ! Lakshmi

HELP DRIVER!

2002-01-16 Thread dav sem
Hi, I'm building EJB Component that perform a pdf document. The EJB component is correctly installed in Jaguar Server (EJB Container). I have successful set up the classpath inside Jaguar server and when I try to instantiate Driver - Driver driver = new Driver(); I obtain this error result:

Re: HELP DRIVER!

2002-01-16 Thread dav sem
Hi, another info: Jaguar Server 3.6.1 use Sun/jdk1.2 and when I test Fop I use jdk1.3.1 This can be an answer? DS. From: Jeremias Maerki [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: HELP DRIVER! Date: Wed, 16 Jan 2002 13:23:47 +0100 What version do you

Re: HELP DRIVER!

2002-01-16 Thread dav sem
Hi Irina, this is not (for me) a right answer, in my project the EJB wrap a PURE Java class that call Driver() constructor Jaguar Server had a JVM (support Servlet etc ...) Tanks DS. From: Irina Grigorieva [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: HELP

RE: HELP DRIVER!

2002-01-16 Thread Robert C. Leif, Ph.D.
From: Bob Leif, It seems that the Java underlying FOP is a source of a significant number of problems. I would suggest that the developers switch to a much more reliable and efficient object oriented technology, Ada. Since Ada is an ISO standard and has an extensive validation suite, it is much

Re: HELP DRIVER!

2002-01-16 Thread James Richardson
Robert C. Leif, Ph.D. wrote: From: Bob Leif, To: James Richardson I am dead serious. Evidently, you have had no experience with Ada 95. Ada is much better at modeling XML than Java. I realize that Java is a marketing success. Unfortunately, it is based to a great extent on obsolete technology.

embedding fop in php

2002-01-17 Thread Sam Prokop
Hi, i am trying to embed fop in php. i ´ve got an example: fo2pdf.php,v 1.2 2001/11/20 17:28:47 by Christian Stocker [EMAIL PROTECTED] but it is using CommandLine, and i am using fop 0.20.2, and since 0.19 there is no class CommandLine anymore (correct me, if i´m wrong) function run($fo, $pdf

RE: HELP DRIVER!

2002-01-17 Thread David Wood
On Wed, 16 Jan 2002, Robert C. Leif, Ph.D. wrote: I don't think a lengthy Java v. Ada conversation going on in this list would do much for the state of FOP as we know it, either Too late, here we go... :) -David

java.lang.NullPointerException

2002-01-18 Thread Lakshmi Anantharaman
ultWebApp_lukara)] Root cause of ServletException java.lang.NullPointerException at org.apache.fop.fo.FOTreeBuilder.startElement(FOTreeBuilder.java:218) at org.apache.fop.tools.DocumentReader.parse(DocumentReader.java:444) at

VS: java.lang.NullPointerException

2002-01-18 Thread Teemu . Talja
Hi I previously tried using DOM Input with FOP 0.20.1 but it did not work. (I reported a bug to bugzilla) It seemed to me that FOP does not work with DOM input, when I switched to Stream input (using the same FOP code) it started working. - Teemu

Re: Xerces

2002-01-18 Thread Pedro Barco Bernal
Gracias, sobre todo por contestar en español. Thanks! to answer in spanish. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 18, 2002 11:50 AM Subject: Re: Xerces Hola Pedro, at http://xml.apache.org/mail.html you can find a listing of all

Re: FO: German Word Separation?

2002-01-18 Thread Marc Sumner
Hello Victor, You can set the language for hyphenation, for example, in an fo:block like this: fo:block text-align=left language=de_DR hyphenate=true hyphenation-push-character-count=2 hyphenation-remain-character-count=2 If you look in your FOP directory under hyph/ you

RE: Links in Lists do not work

2002-01-18 Thread Stefan Weber
does not work for me, I`m using 0.20.2RC, perhaps its a bug in this release? Stefan -Original Message- From: Ian Larner [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2002 12:01 PM To: [EMAIL PROTECTED] Subject: Re: Links in Lists do not work Stefan, The following version of your

Segmentation fault

2002-01-19 Thread Peter Chant
I have got segmentation faults trying to run fop. I tried to recompile fop to see if this solved the problem, but it segmentation faulted during the build. I'm running linux, Slackware 8.0, JDK 1.3.1. The demo's that come with Jdk run fine. I have noted a comment about segmentation faults in

VS: FOP and DOM Success

2002-01-21 Thread Teemu . Talja
Thank you, I think this code really is useful! I really have reported a bu to bugzilla about the DOM input. the bug number is 5075. Should someone add this code there too as it really has to do with the reported problem? -Teemu -Alkuperäinen viesti- Lähettäjä:Lakshmi

RE: FOP and DOM Success

2002-01-21 Thread Solange Desseignes
Thank you for this example !!! But how can I add an userconfig file in the transformation ??? -Message d'origine- De : Lakshmi Anantharaman [mailto:[EMAIL PROTECTED] Envoyé : vendredi 18 janvier 2002 21:26 À : Fop-User (E-mail) Objet : FOP and DOM Success I tried for long and with the

AW: AW: FO: German Word Separation?

2002-01-21 Thread Skladov, Victor
Hi Marc! Thanx, I've found them. They stand in WEB-INF/lib/fop-0_20_1-dev.jar. Thanks for your help!!! Regards, Viktor -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 18. Januar 2002 16:52 An: [EMAIL PROTECTED] Betreff: Re: AW: FO: German

RE: FOP and DOM Success

2002-01-21 Thread Lakshmi Anantharaman
HI Solange , I do not know much about the userconfig file . I understood it as a way to specify additional command line options . I think changing the userconfig file and building the FOP should be enough . Please looks at Options class in org.apache.fop.apps.Options for more details !

BLOCK PROPERTIES

2002-01-22 Thread svailati
Hi, I'm Stefano I want to fix a block lenght. How can I do? There isn't a property lenght. (?!?) In the next samples I want to have into a block only ABCABCABCABC not the complete string. fo:table fo:table-column column-width=7cm/ fo:table-body fo:table-row

[ANNOUNCEMENT] FOP 0.20.3 Release Candidate available

2002-01-22 Thread Christian Geisert
Hi all, the Release Candidate for 0.20.3 (Maintenance release) is finally available at http://xml.apache.org/dist/fop for downloading and testing. This version has been updated to XSL 1.0 Recommendation syntax and requires (now officially) JDK 1.2 or better. Christian

RE: [ANNOUNCEMENT] FOP 0.20.3 Release Candidate available

2002-01-22 Thread Kapar Tom (ZC)
Hi all, is there any list with changes from 0.20.2? Thanks Tomas -Original Message- From: Christian Geisert [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 22, 2002 1:39 PM To: [EMAIL PROTECTED] Subject: [ANNOUNCEMENT] FOP 0.20.3 Release Candidate available Hi all, the Release

Weird problem with 0.20.3rc

2002-01-22 Thread Carlos Araya
Good morning I'm using 0.20.3rc with docbook stylesheet and the following command fop.sh -xsl xsl/fo/docbook.xsl -xml stories.xml -pdf stories.pdf When I use it from the command line it works flawlessly but when I use it from a Makefile, I get the following: [ERROR]: you can only set one

Re: [ANNOUNCEMENT] FOP 0.20.3 Release Candidate available

2002-01-23 Thread Christian Geisert
Kapar Tom (ZC) wrote: Hi all, is there any list with changes from 0.20.2? Some (but not all) are mentioned in the CHANGES file. I hope to get some time to add the rest. Thanks Tomas Christian

Re: Segmentation fault

2002-01-23 Thread Christian Geisert
Peter Chant wrote: I have got segmentation faults trying to run fop. I tried to recompile fop to see if this solved the problem, but it segmentation faulted during the build. I'm running linux, Slackware 8.0, JDK 1.3.1. The demo's that come with Jdk run fine. I have noted a comment about

RE: FO question.

2002-01-23 Thread Hewitson, Michael
You need the FO flot tag. However, this isn't implemented in 0.20.2 as far as I know. I don't know about the new 0.20.3 release, but, regardless, the float tag is what you require: http://www.w3.org/TR/xsl/slice6.html#fo_float Hope this helps, Mike -- From: Damien

FO: how use javascript with FOP?

2002-01-25 Thread anna . stefani
I used FOP to convert an xml plus xsl in a pdf document. However, I'm not able to use javascript with FOP. I tried to write so: script language=Javascript xsl:comment![CDATA[ origen = ]]xsl:value-of select=valores/valor/@origen/![CDATA[; function rl(){ xxx }

Re[2]: XSL-FO DTD

2002-01-25 Thread Michael R. Hahn
Hi, Ludovic: LM I'm sorry, but I really need an answer: where can i download the LM XSL DTD?? In fact, I would like tu use Xemacs to write my FO LM document. But to be sure that I use the right tags, I would like LM to plot it against the DTD. But I can't find it!!! what can i do? Well, if it

RE: Choice of a XSL-Fo processor

2002-01-25 Thread Matthew L. Avizinis
FWIW IMO, here's a couple things: FOP -- Free XEP -- = ~$5,000 Antenna -- = ~$1,900 PassiveTex -- don't know FOP -- source - you can modify it / contribute to this, imho, excellent project if you want (or have ability) to XEP -- nope Antenna -- nope PassiveTex -- don't know FOP -- support only

RE: PDF - displaying GIF under UNIX

2002-01-25 Thread Andy Heynderickx
hi, yes, we have the same problem at our site. Could have something to do with the lack of a 'canvas' on which to draw the image internally. but I'm not sure though... Had the same problem with .bmp and .jpg images. Andy -Original Message- From: Sharan, Dharmendra [mailto:[EMAIL

FOP 0.15 and Cocoon

2002-01-25 Thread Stefano Angelici
Hi everybody. I've got cocoon 1.8 installed in a server. Cocoon had fop_0.13 as PDF render library; now I put fop_0.15 and w3c.jar(I deleted the previous fop symbolic link and created a new one) in tomcat/lib. I tryed to create a PDF (from xml and xsl files) using XalanCommandLine in command line

Socket write error

2002-01-25 Thread Xie, David (IPCG-NJ)
Hi all, I am trying to generate PDF from xml-xsl using Fop0.20.1. So far, the program works fine with few users requests. However, when I test the application with more than 10 users, many jobs fail. The error message I kept on getting is java.net.socketException Error: connection reset by

Re: FO: If Table Is Too Wide?

2002-01-25 Thread Anil Pinto
Victor, The pdf (assuming that it is the final output) document, do you need to print or just view it through the reader ? If it only for view purposes you could perhaps try increasing the page width (in fo:simple-page-master) to match your requirement. But the width must be reasonable so that

Images in region-start

2002-01-25 Thread Scott Moore
I'm trying to place an image (JPEG)on the left side of my page that runs the whole length of the page inside the xsl-region-start. But, for the life of me the best it will ever do is approx. 3/4 of the length of the page (8.5inx11in). I've tried everything, including resizing the image

Re: Images in region-start

2002-01-25 Thread Carmelo Montanez
Hi Scott: Have you tried the "content-height" and "content-width" properties? Carmelo - Original Message - From: Scott Moore To: FOP User Sent: Friday, January 25, 2002 4:31 PM Subject: Images in region-start I'm trying to place an image (JPEG)on the left

RE: Does fo:basic-link work with 0.20.1 ?

2002-01-28 Thread Sharan, Dharmendra
Hi Anil, use something like... fo:block font-size=8pt font-family=sans-serif text-align=justify fo:inline font-style=italic URL: /fo:inline !-- text-med-blue -- fo:basic-link color=#99

Fix height of rows/cells/etc?

2002-01-28 Thread TJ Smith
Is there a way to fix the height of a table row or cell such that if the text to be placed in that row or cell exceeds that height, it is truncated? To put it another way, I want a fixed height to an area that holds arbitrary text - if the text exceeds that height, it is truncated. TJ

multiple output files

2002-01-28 Thread Matthew L. Avizinis
Anyone want to take a stab at this? thanks much, Hi all, A whole lotta help needed please: I need to write to a file all the 1) page-number-citations page numbers along with their corresponding ref-id's also the 2) last page of the pdf file being currently generated by FOP along with it's

Re: Fix height of rows/cells/etc?

2002-01-28 Thread Anil Pinto
Hi TJ, Did u try using a fo:block-container and fo:block within the fo:table-cell The fo:block-container has the height and width properties that I believe limit the display area. Just try it within a fo:table-cell and see if you can achieve what you desire :-) Anil. --- TJ Smith [EMAIL

RE: Does fo:basic-link work with 0.20.1 ?

2002-01-29 Thread Anil Pinto
Hi Dharmendra, Thanks for taking the time to reply to my query :-) I actually was doing the same thing but the only outstanding thing I noticed was that I was doing it within a fo:block-container and that was causing the effect of the fo:basic-link being masked () So I has to get rid of

Entity references in FOP

2002-01-29 Thread David Wood
In the interests of being typographically correct, I'm attempting to use oriented double and single quotes, ellipses, etc... These are typically referenced in HTML as ldquo; rdquo; (amp;ldquo; amp;rdquo;) and so on... however, FOP is informing me these entities are not declared. I would be

VS: Entity references in FOP

2002-01-29 Thread Teemu . Talja
I think this depends on the encoding of the XML files and have not used those with PDF default fonts. Anyway if you are using unicode (embedded) fonts you can see http://www.unicode.org/charts/ for listings of unicode entity references. these are used like #x; , where should be

FOP BUGZILLA : 0.17 is the last version

2002-01-29 Thread Teemu . Talja
Hi Who is taking care of FOP bugzilla maintaining? 0.17 is the newest FOP version that bugzilla knows. To spare work for the bug fixers it might be good to be able to mention the real version in the bug report. -Teemu

Speed problem

2002-01-29 Thread seb dupont
Hi, i use FOP to transform an xml file into PDF and the problem is the speed of the operation. I take 25seconds for a final pdf file of 6 pages (with 335 row and 7 columns). Is it normal, can i do something to acelerate this ? Thanks ___

Re: Entity references in FOP

2002-01-29 Thread Joerg Pietschmann
David Wood [EMAIL PROTECTED] wrote: I would be curious to find a list of what entities are in and what aren't. Also, I presume I can use a numeric code (#number; - or amp;#number;) to reference the character directly. However, it seems like a list of those numbers and their corresponding

Re: multiple output files

2002-01-29 Thread Joerg Pietschmann
Matthew L. Avizinis [EMAIL PROTECTED] wrote: A whole lotta help needed please: I need to write to a file all the 1) page-number-citations page numbers along with their corresponding ref-id's also the 2) last page of the pdf file being currently generated by FOP along with it's corresponding

RE: Speed problem

2002-01-29 Thread Solange Desseignes
Which version of Xalan do you use ??? I had the same problem or speed whith the version 2.1.0. With the version 2.2D11, it was faster !!! Solange Desseignes -Message d'origine- De : seb dupont [mailto:[EMAIL PROTECTED] Envoyé : mardi 29 janvier 2002 15:07 À : [EMAIL PROTECTED] Objet :

RE: multiple output files

2002-01-29 Thread Matthew L. Avizinis
Thanks for your response, Joerg. Read on if you think you might be able to help me further. -Original Message- From: Joerg Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2002 10:04 AM To: FOP User Subject: Re: multiple output files Matthew L. Avizinis [EMAIL

RE: multiple output files

2002-01-29 Thread Matthew L. Avizinis
Actually, now that I think of it, what I will need is a list of all the object id's that are then (or only might then be) later referenced by the PageNumberCitation ref-id. This way, when I generate a pdf that makes a PageNumberCitation to a ref-id in a pdf that was in a chapter generated in a

RE: multiple output files

2002-01-29 Thread Matthew L. Avizinis
Aha, now I see what you're saying. Thanks. I'll try that. -Original Message- From: Joerg Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2002 11:35 AM To: FOP User Subject: Re: multiple output files Matthew L. Avizinis [EMAIL PROTECTED] wrote: Judging by the

RE: Speed problem

2002-01-29 Thread Solange Desseignes
I use FOP 0.20.1 too. I have fop.jar and xalan.jar (and associated jars) separately... I don't rebuild anything to use another version of Xalan with my Fop version ! I just change the xalan.jar... -Message d'origine- De : seb dupont [mailto:[EMAIL PROTECTED] Envoyé : mardi 29 janvier 2002

RE: Speed problem

2002-01-29 Thread seb dupont
I can't do it because my xalan jar are named xalan2.0.0.jar and xalan2.2.0-D13.jar --- Solange Desseignes [EMAIL PROTECTED] a écrit : I use FOP 0.20.1 too. I have fop.jar and xalan.jar (and associated jars) separately... I don't rebuild anything to use another version of Xalan with my

  1   2   3   4   5   6   7   8   9   10   >