RE: Fonts don't line up in table

2002-06-11 Thread Matthew L. Avizinis
That would be fo:table-cell padding=2pt display-align=bottom ^^^ -Original Message- From: Urban, Patrick [mailto:[EMAIL PROTECTED] Sent: Monday, June 10, 2002 3:33 PM To: '[EMAIL PROTECTED]' Subject: RE: Fonts don't line up in table

RE: Fonts don't line up in table

2002-06-11 Thread Matthew L. Avizinis
Sorry, now I've got it straight That would be fo:table-cell padding=2pt display-align=after ^^^^ -Original Message- From: Urban, Patrick [mailto:[EMAIL PROTECTED] Sent: Monday, June 10, 2002 3:33 PM To: '[EMAIL PROTECTED]'

RE: Fonts don't line up in table

2002-06-11 Thread Darrel Riekhof
Thanks, that did it. Darrel -Original Message- From: Matthew L. Avizinis [mailto:[EMAIL PROTECTED] Sent: Monday, June 10, 2002 4:37 PM To: [EMAIL PROTECTED] Subject: RE: Fonts don't line up in table Sorry, now I've got it straight That would be fo:table-cell padding=2pt

Going nuts centering a table

2002-06-11 Thread Neil Cooper
Hi, After going nuts for a day and a half and also trawling the archives of fop-dev and fop-user and the FAQs, can anyone please enlighten me to a) why the following code doesn't center the table and b) how to do it !. I've tried the FAQ from http://www.dpawson.co.uk/xsl/sect3/N8922.html#d65e78

Doubt regarding XSLProcessor.process

2002-06-11 Thread vinod . nayak
Hi all, I am using fop-0.20.3rc version of FOP to generate PDF files. These are few lines of code I used to generate the PDF reports. xslProcessor = XSLTProcessorFactory.getProcessor(); --1 xslProcessor.process(new XSLTInputSource(new FileReader(XSLFile)),new XSLTInputSource(new

RE: row fragmentation problem..

2002-06-11 Thread vinod . nayak
Thanks Florence.. but the process has become little slow. Is that attribute ' keep-together='always' " becoming a overhead? -Original Message-From: Florence Deforge [mailto:[EMAIL PROTECTED]Sent: Monday, June 10, 2002 1:04 PMTo: [EMAIL PROTECTED]Subject: Re: row

Re: What else than PCL?

2002-06-11 Thread Jeremias Maerki
I'm not no familiar with the PCL renderer, so I can't help here immediately. But you've got the possibility to use the AWT renderer and print directly to a printer. Have a look at the documentation and the FOPPrintServlet in docs/examples/embedding. Another possibility is to create a PDF or a PS

Re: Doubt regarding XSLProcessor.process

2002-06-11 Thread Keiron Liddle
look at this page: http://xml.apache.org/xalan-j/usagepatterns.html in particular the section titled Multithreading On Tue, 2002-06-11 at 07:47, [EMAIL PROTECTED] wrote: Hi all, I am using fop-0.20.3rc version of FOP to generate PDF files. These are few lines of code I used to generate the

Re: What else than PCL?

2002-06-11 Thread Darya Said-Akbari
Thanks for your hint. In all I have 1 second to get an Bean Object into my FO file and then on paper. This has to happen automatically. So, PDF or PS with Ghostscript or getting the print through a call from the commandline do not help me. But your hint to use the AWT renderer sounds

RE: Problem with not stroking SVG text (AND BUG IN FOP 0.20.3)

2002-06-11 Thread Keiron Liddle
I stand corrected. It does need to be a BooleanKey to work properly. Once I fixed that it doesn't work anymore anyway. I think various changes in batik mean that it needs to be handled differently. On Tue, 2002-06-11 at 00:15, Vollmer, Thomas - CannonSA wrote: Actually, that's not the case.

Re: Problem with image resolution in FOP = It works!

2002-06-11 Thread pascal.munerot
Hi, I have just tried your hint and it happens to work. I have checked that the printed image was okay with a barcode reader. Thanks for your help. Pascal It works [EMAIL PROTECTED] wrote: Hi, Do you know if it is possible to generate SVG from a bitmapped graphic (GIF or JPEG. The API i

stykesheet attribute version

2002-06-11 Thread Jochen . Maes
hi guyz/gurlz i'm back :D i have an error, i've been searchin the marc.theaimsgroup.com archive for the solution, but can't really find it... i know it can be solved... anyway, i get the error: java.xml.transform.TransformerConfigurationException: stylesheet requires attribute: version... of

how to output WML???

2002-06-11 Thread shadows
can someone tell me how to output wml?? shadows [EMAIL PROTECTED]

RE: Block and page changing

2002-06-11 Thread Hahn Kurt (CHA)
I tried to use the keep-together property on a table row, but I'm not sure if it's really working. Can somebody tell me the right syntax? What I tried is this: fo:table-row font-size=9pt keep-together=true I couldn't figure what value I have to give it... Kurt -Message d'origine- De :

Re: What else than PCL?

2002-06-11 Thread Darya Said-Akbari
When I try the direct printing by Fop foo.fo -print the Windows 2000 Fax wizard pops up. My first try for direct printing was to use the Java Communications API with a PCL ByteArrayOutputStream. I set my port to LPT1 and all was fine except the PCL Rendering. So PCL rendering couldn't help me.

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
Do you mean that there is no way around it? weird, i can run it from my workstation (same os etc only diff processor and less memory) can't be... if someone knows how to resolve it i would really appreciate it... Jochen Maes ICT Development KBC Securities (kbcsecurities.com) Havenlaan 12

Re: stykesheet attribute version

2002-06-11 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: Do you mean that there is no way around it? weird, i can run it from my workstation (same os etc only diff processor and less memory) can't be... if someone knows how to resolve it i would really appreciate it... The exception means that xslt processor couldn't see version

Re: stykesheet attribute version

2002-06-11 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: java -cp kbcs_fop.jar;batik.jar;avalonframework.jar;fop.jar;xalan.jar;iText.jar;logkit1b4.jar;jaxp.jar;xerces.jar;. com.kbcsecurities.test.Startup You didn't show us how you build initprops Map, please. public void process(Map props) throws ProcessException {

RE: stykesheet attribute version

2002-06-11 Thread Torsten Erler
I think you should try this: ?xml version=1.0? xsl:stylesheet xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xmlns:fo=http://www.w3.org/1999/XSL/Format; version=1.0 !-- optional -- xsl:output method=xml indent=yes encoding=ISO-8859-1/ note at the version attribute inside the xsl:stylesheet tag

Re: stykesheet attribute version

2002-06-11 Thread Peter Jacobs
[EMAIL PROTECTED] wrote: Do you mean that there is no way around it? weird, i can run it from my workstation (same os etc only diff processor and less memory) can't be... The fact that it is logged in bugzilla does not imply it is a bug, in fact that one was tagged as invalid (see comment at

Re: What else than PCL? - Performanceproblem with AWT rendering

2002-06-11 Thread Darya Said-Akbari
Now it works. The problem was that my printer was not the default printer. When I compare the AWT rendering with my former PCL rendering, I am far away from my 1 second in all. While I had times between 2 and 3 seconds with PCL , I have now times between 11 and 18 seconds with AWT. How can I

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
ok don't complain if it is a lot of code: the Sequence.xml is also pasted inside public Processor(){ ResourceBundle sequence = ResourceBundle.getBundle(Sequence); inFile = new File(sequence.getString(Sequence)); LoggerFactory.getLogger().log(this.getClass

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
hi Peter, I tried without it, but doesn't change a thing... still get the same error... and no worries, every help is help... and sometimes other peeps see more then you do after looking @ it for ages :-) greets Jochen Maes ICT Development KBC Securities (kbcsecurities.com) Havenlaan 12

Re: stykesheet attribute version

2002-06-11 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: ok don't complain if it is a lot of code: Well, that was really not much, but too hard to grasp, so lets begin from another side: public void process(Map props) throws ProcessException { DOMResult res = null; TransformerFactory transFactory;

unsubscribe me

2002-06-11 Thread Sanzone, Vincenzo (Exchange)
please unsubscribe me from the email list. Thank You. *** Bear Stearns is not responsible for any recommendation, solicitation, offer or agreement or any information about any transaction, customer account or account activity

-unsubscribe

2002-06-11 Thread Gabriele Gigliotti
-unsubscribe

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
Oleg, i get my whole xsl file bact printed out... (as good as i can see it...) if you want it i'll write the output to file... let me know Jochen Maes ICT Development KBC Securities (kbcsecurities.com) Havenlaan 12 Avenue du Port SIF 8683 B-1080 Brussels Belgium

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
Oleg, here is the file (copy and pasted it...) thank you for your help ?xml version=1.0 encoding=UTF-8? xsl:stylesheet version=1.0 xmlns:fo=http://www.w3.org/1999/XSL/Format; xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xsl:output method=html/ xsl:strip-space elements=*/

Re: stykesheet attribute version

2002-06-11 Thread Peter Jacobs
ok, i'll try one more time, but this really has little to do with FOP. Did you check the xalan-dev archive? http://marc.theaimsgroup.com/?l=xalan-dev Maybe the problem is in setNamespaceAware while(li.hasNext()){ try { String key = (String)li.next();

Re: stykesheet attribute version

2002-06-11 Thread Jochen . Maes
i tried it again with both ways still get the exeption... but thanks anyway, and i'm sorry that i brought it up here, but you guyz are the only ones that really care and really help greets Jochen Maes ICT Development KBC Securities (kbcsecurities.com) Havenlaan 12 Avenue du Port SIF 8683

font half sizes

2002-06-11 Thread Bill Collins
I'm working on a project that requires duplicating a form exacty with FOP. The problem is the original PDF was created using Word and they used half point sizes (e.g., 7.5pt) and then converted to PDF through Acrobat. It appears that FOP only supports full point sizes (e.g., either 7pt or 8pt). Is

Re: stykesheet attribute version

2002-06-11 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: Oleg, here is the file (copy and pasted it...) Looks good :( Debug your code and if the exception occurs in transForm = transFactory.newTransformer(new DOMSource ... try to ask on your xslt processor mail-list. -- Oleg Tkachenko Multiconn International Ltd, Israel

RE: Problem with not stroking SVG text (AND BUG IN FOP 0.20.3)

2002-06-11 Thread Vollmer, Thomas - CannonSA
Keiron wrote: I stand corrected. It does need to be a BooleanKey to work properly. [...] Once I fixed that it doesn't work anymore anyway. I think various changes in batik mean that it needs to be handled differently. Not sure what you mean by that. Why won't making it a BooleanKey fix

Re: External Graphic

2002-06-11 Thread J.Pietschmann
Urban, Patrick wrote: Can anyone help me debug this. I am looking to simply pull a logo onto my report with this code... fo:external-graphic src=http://epndev0006/Logo_Plain.gif/ this error is being output from FOP... [ERROR]: Error while creating area : Error with image URL:

Re: stykesheet attribute version

2002-06-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: kbcs_fop.jar;batik.jar;avalonframework.jar;fop.jar;xalan.jar; iText.jar;logkit1b4.jar;jaxp.jar;xerces.jar;. ^ Bad idea, remove it. Usually this jar contains ancient and outdated JAXP stuff which interferes with the correct code in

RE: External Graphic

2002-06-11 Thread Urban, Patrick
Thanks for the reply...It appears to be an issue with the URL referencing a local machine within our network. It was probably some kind of proxy issue. I have worked around it. Thanks again -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 11, 2002

Re: External Graphic

2002-06-11 Thread Jeff_Mitchell
Patrick- The server portion of the URL you're using looks like an NT name, or at least a name in your default domain (TCP/IP, not NT) If you're doing this all on one machine (if you're running FOP on epndev0006), why not use a relative path through the file structure (i.e.

Re: font half sizes

2002-06-11 Thread J.Pietschmann
Bill Collins wrote: I'm working on a project that requires duplicating a form exacty with FOP. The problem is the original PDF was created using Word and they used half point sizes (e.g., 7.5pt) and then converted to PDF through Acrobat. It appears that FOP only supports full point sizes (e.g.,

Re: External Graphic

2002-06-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: If you're running FOP on a different machine than IIS, perhaps the FOP box can't resolve the name epndev006. This would give [ERROR]: Error while creating area : Error with image URL: epndev0006 and no base directory is specified. (small, but importsnt diffference)

Re: External Graphic

2002-06-11 Thread Jeff_Mitchell
Ah, thanks for the clarification. I've only been using relative paths, so I have no experience with FOP and remote URLs.

Possibility of converting from XML to PDF without the intermedia te stage of FO format

2002-06-11 Thread Jie Wang
Title: Possibility of converting from XML to PDF without the intermediate stage of FO format How to decrease the responding time of converting from XML to PDF ? Currently it took me about 2 Mins to generate my 56 page PDF from XML files. Is that possible to convert from XML to PDF without

RE: Possibility of converting from XML to PDF without the interme dia te stage of FO format

2002-06-11 Thread Savino, Matt C
If performance is everything, you might look into some of the proprietary PDF engines like faceless.org. But either way I believe you're still going to have to convert your raw xml into something marked up for display, then feed it to the PDF generator. Does anyone have any experieince with

Control of long words inside a table cell

2002-06-11 Thread pkrishnaswami
We are using FOP to publish our documents in PDF. Some of the contents in the table cell contain long words; eg: full name of java classes where the length of the package is wider than the cell\column width; The contents of these long words spills beyond the table cell. Is there a way to wrap the

Re: Control of long words inside a table cell

2002-06-11 Thread Chuck Paussa
Use fo:table-cell wrap-option=wrap Chuck pkrishnaswami wrote: We are using FOP to publish our documents in PDF. Some of the contents in the table cell contain long words; eg: full name of java classes where the length of the package is wider than the cell\column width; The contents of these long

RE: Possibility of converting from XML to PDF without theinterme dia te stage of FO format

2002-06-11 Thread Buonincontri, Steve (CAP, MMF, ITSS)
You might want to check out the adobe sight I think they might have somehting in the works. -Original Message- From: Savino, Matt C [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 11, 2002 5:40 PM To: '[EMAIL PROTECTED]' Subject: RE: Possibility of converting from XML to PDF without

RE: Possibility of converting from XML to PDF without the intermediate stage of FO format

2002-06-11 Thread Buonincontri, Steve (CAP, MMF, ITSS)
Title: Possibility of converting from XML to PDF without the intermediate stage of FO format Just curious - what are the sizes of the XML, FO and PDF files? -Original Message-From: Jie Wang [mailto:[EMAIL PROTECTED]Sent: Tuesday, June 11, 2002 5:31 PMTo: '[EMAIL

RE: Possibility of converting from XML to PDF without the intermediate stage of FO format

2002-06-11 Thread Buonincontri, Steve (CAP, MMF, ITSS)
Title: Possibility of converting from XML to PDF without the intermediate stage of FO format I have also noticed that doing the XML to FO to PDF in memory as opposed to writing to disk reduces time by about 80% in the samples that I tried. I was using iTEXT, XEP, FOP, RTF2FO etc. Below

RE: Control of long words inside a table cell

2002-06-11 Thread Roland Neilands
Use fo:table-cell wrap-option=wrap Thanks for the response; I tried this option but I did not see a difference; the text continues to over-flow the table cell width. I saw this when testing too. Any whitespace would cause the cell contents to wrap though. You could search the examples and/or