cvs commit: xml-fop/src/org/apache/fop/svg SVGElement.java

2002-02-20 Thread keiron
keiron 02/02/20 01:30:40 Modified:src/org/apache/fop/svg SVGElement.java Log: made svg context independant so that the svg document does not hold onto the fo tree Revision ChangesPath 1.20 +56 -43xml-fop/src/org/apache/fop/svg/SVGElement.java Index: SVGE

Memory problem

2002-02-20 Thread Henrik Holle
Hi, Is there any "dirty hack" to fix the out of memory problem. My Document is very large and has a lot of tables in it. I´m using FOP 0.20.3 Thx holle - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

cvs commit: xml-fop/src/org/apache/fop/viewer PreviewDialog.java

2002-02-20 Thread keiron
keiron 02/02/20 02:29:40 Modified:src/org/apache/fop/apps AWTStarter.java src/org/apache/fop/viewer PreviewDialog.java Log: exit for closing window is only called for the AWTStarter, command line and not on the window Revision ChangesPath 1.12 +8 -

Re: FOP AWT Window Shuts Down Application

2002-02-20 Thread Keiron Liddle
You could comment out the System.exit call in PreviewDialog.java. On 2002.02.19 18:52 Jim Urban wrote: > I am using the FOP AWT viewer (PreviewDialog) to display and print > reports > within my application. The problem is, whenever I close the FOP viewer, > my > application shuts down. How can

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

2002-02-20 Thread keiron
keiron 02/02/20 02:41:45 Modified:src/org/apache/fop/fo PropertyList.java Log: put in inherit keyword Revision ChangesPath 1.17 +3 -4 xml-fop/src/org/apache/fop/fo/PropertyList.java Index: PropertyList.java ==

displaying image with external graphic

2002-02-20 Thread Nick Winger
hi ! when i use: everything works and the image gets loaded, but when i have it in a different directory, for example "pictures" and i write: it doesn't find the file. anybody can help ? beside, do you know which graphic formats are supported by external-graphic ? greetings Nick Winger

problem with fop 20.3

2002-02-20 Thread Nick Winger
hi ! i'm using fop 20.3. i get an error message, saying: 'master-reference' for 'fo:page-sequence' matches no 'simple-page-master' or 'page-sequence-master' ( with fop 20.1 and exactly the same file, i have no error messages ) here's the code: http://www.w3.org/1999/XSL/Format";>

Re: problem with fop 20.3

2002-02-20 Thread Jeremias Maerki
Nick I think it's time you change to the fop-user mailing list for these kind of questions. And as a reminder there are wonderful mailing list archives around to get your answers. See: http://xml.apache.org/fop/resources.html Anyway, you need to change "master-name" to "master-reference". This h

i think this is a bug

2002-02-20 Thread Nick Winger
Hi ! i think this is a bug (following problem ): I have the text "Transport Inkubator 5400" in a table cell, but the table cell is to small to display the whole text, so it wraps, but it doesn't wrap correctly... the text "5400" is in the next line, but the "r" of "Inkubator" goes into the next

Graphics

2002-02-20 Thread claes . bergsten
Hi all, I have problem embedding small graphic-files. Dont know the exact size but image files <1kb generates the following error: Error in XObject : Error while loading image http://localhost:8080/BuisnessCard/images/px.tif : class org.apache.fop.image.FopImageException - Image grabbing interru

i think this is a bug

2002-02-20 Thread Nick Winger
Hi ! i think this is a bug (following problem ): I have the text "Transport Inkubator 5400" in a table cell, but the table cell is to small to display the whole text, so it wraps, but it doesn't wrap correctly... the text "5400" is in the next line, but the "r" of "Inkubator" goes into the next

RE: FOP AWT Window Shuts Down Application

2002-02-20 Thread Jim Urban
I thought about that, but then we would have a custom version of FOP. This would mean that every time we upgrade to a new version of FOP someone would have to know to go into the source and make this change and rebuild FOP. I would rather see a more permanent solution implemented such as adding

Escape sequence characters

2002-02-20 Thread Henrik Holle
Hi, Is it possible to put the characters '<' and '>' in my Fo-document? I does not know how to escape them correctly! It this possible and how? Thx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [

AW: i think this is a bug

2002-02-20 Thread Pretterhofer, Guenter (ext.)
Hi Nick, as far as I understand it this is not an FOP error: If you specify "Transport Inkubator 5400" the word "Inkubator" doesn't fit in the first line anymore and is therefore put into the second line. If you specify "Transport-Inkubator 5400" only 5400 is put on the second line. Transport-I

Re: FOP AWT Window Shuts Down Application

2002-02-20 Thread Keiron Liddle
If it makes you feel better it has already been done. http://marc.theaimsgroup.com/?l=fop-cvs&m=101420095016596&w=2 Someone might even commit this to the maintanence branch. On 2002.02.20 14:22 Jim Urban wrote: > I thought about that, but then we would have a custom version of FOP. > This > wou

Custom fonts (again)

2002-02-20 Thread claes . bergsten
Following lines from the Embedding FOP web page: userConfigFile = new File(userConfig); options = new Options(userConfigFile); Ok fine I got that, but what to do with the options variable after this? cheers --- Claes Bergsten Software Develop

RE: Escape sequence characters

2002-02-20 Thread Phillips Tony
> < > -Original Message- > From: Henrik Holle [mailto:[EMAIL PROTECTED]] > Sent: 20 February 2002 13:57 > To: [EMAIL PROTECTED] > Subject: Escape sequence characters > > > Hi, > > Is it possible to put the characters '<' and '>' in my Fo-document? > I does not know how to escape them

Re: Custom fonts (again)

2002-02-20 Thread Jeremias Maerki
> Following lines from the Embedding FOP web page: > > userConfigFile = new File(userConfig); > options = new Options(userConfigFile); > > Ok fine I got that, but what to do with the options variable after this? Nothing! :-) It's something static and registers itself in FOP. Not so beautiful, b

How to center table or image in .fo ?

2002-02-20 Thread Yann BONNAILLIE
Hi,I got a problem to center a table in my pdf documentHere is the code :                                        Cell 1                                        Cell 2                          I've already tried to put it in a block and to set margin or text-align but

Re: Custom fonts (again)

2002-02-20 Thread claes . bergsten
>> Following lines from the Embedding FOP web page: >> >> userConfigFile = new File(userConfig); >> options = new Options(userConfigFile); >> >> Ok fine I got that, but what to do with the options variable after this? >Nothing! :-) It's something static and registers itself in FOP. Not so >beaut

cvs commit: xml-fop/src/codegen extproperties.xml

2002-02-20 Thread keiron
keiron 02/02/20 06:00:00 Removed: src/codegen extproperties.xml Log: no longer used - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Preview and Memory

2002-02-20 Thread Henrik Holle
Hi, I am starting the AWT-Preview like this: String[] opt = {foFile.toString(), "-awt"}; CommandLineOptions options = new CommandLineOptions(opt); Starter starter = options.getStarter(); starter.run(); I commented out the S

Re: FOP AWT Window Shuts Down Application

2002-02-20 Thread Christian Geisert
Keiron Liddle wrote: > > If it makes you feel better it has already been done. > http://marc.theaimsgroup.com/?l=fop-cvs&m=101420095016596&w=2 > > Someone might even commit this to the maintanence branch. Ok, I'll do it .. but it's to late for 0.20.3rc2 (which is already on icarus, waiting fo

cvs commit: xml-fop build.xml

2002-02-20 Thread chrisg
chrisg 02/02/20 09:37:06 Modified:.Tag: fop-0_20_2-maintain build.xml Log: fixed permissions for runtest.sh Revision ChangesPath No revision No revision 1.44.2.5 +2 -0 xml-fop/build.xml Index: build.

RE: problem with fop 20.3

2002-02-20 Thread Sami, Abdul (Netprosys)
Change the attribute name of master-name to master-reference Old:mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 5:08 AM To: Apache Mailinglist (E-Mail) Subject: problem with fop 20.3 hi ! i'm using fop 20.3. i get an error message, saying: 'master-reference' f

Re: FOP AWT Window Shuts Down Application

2002-02-20 Thread Peter B. West
Christian Geisert wrote: > > Ok, I'll do it .. but it's to late for 0.20.3rc2 (which is already > on icarus, waiting for Arved to move it to daedalus) > Oops! I hope icarus is not on Solaris. It will go down any time now. Peter

RE: FOP AWT Window Shuts Down Application

2002-02-20 Thread Arved Sandstrom
-Original Message- From: Christian Geisert [mailto:[EMAIL PROTECTED]] Sent: February 20, 2002 1:28 PM To: [EMAIL PROTECTED] Subject: Re: FOP AWT Window Shuts Down Application Keiron Liddle wrote: > > If it makes you feel better it has already been done. > http://marc.theaimsgroup.com/?l

extension element properties

2002-02-20 Thread Matthew L. Avizinis
Hello all, I have read the extension element writing document and examined the and extension elements code, but I don't see precisely how element properties are mapped. I have followed the pattern of the examples in the code and mapped the element correctly but the properties are "ignored" wh