RE: Manipulating page-width / page-height

2002-04-24 Thread Torsten Erler
ThanX that is exactly what I need. I will check it out. I've tried to overwrite AWTRenderer etc. [ for a lot of hours :( ], but no usable result arose, because I had only the chance to scale the rendered image into my format (thats not the right way for different page geometries), for printing and

Re: background-image patch v0.03 in CVS

2002-04-24 Thread mjg
> Would it be possible to implement background-image as one image > containing the small image X times stacked side by side and top to > bottom. The problem is if the image is very small it took a very long > time to display it in acrobat reader. It should be possible, but I'm not sure how fea

RE: Interesting Aside

2002-04-24 Thread Rhett Aultman
Hear hear! XSLT and XSL-FO have been, in my line of work, the "killer apps" of XML. Both have been invaluable to me in the management of document formats, and at two separate jobs now, each of them has eventually given me a "niche"- XSLT in maintaining documents in different "flat text" forma

Interesting Aside

2002-04-24 Thread Arved Sandstrom
I thought this was rather interesting. There is an article on XML.COM entitled "Government and Finance Industry Urge Caution on XML" (http://www.xml.com/pub/a/2002/04/24/gaonacha.html). Lest we start thinking of XSL as a second-best W3C Recommendation that is viewed slightly askance by many in the

Re: Tags in CVS

2002-04-24 Thread Peter B. West
Well, Peter, I have another suggestion. To allow for a few more options in the pretty-printing of the version, extend the convention a little. The proposal is that digit-digit stand for digit.digit. Let digit--digit stand for digit-digit. The proposal is that underscore always stands for s

Re: Exception message text not bubbling up

2002-04-24 Thread David B. Bitton
Would that cause the entire exception message to be null though?This all stemmed from a change I had made to the underlying XML which caused the XSLT not to match the root element, and therefore not outputing a in the resultant transformation, so to answer your question, yes the parent was nu

Re: Exception message text not bubbling up

2002-04-24 Thread David B. Bitton
No, I know what stack traces info is. You asked me if I was sure whether FOP threw the exception, and yes, based on the stack trace, it was FOP that threw the exception. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "J.Pietschm

cvs commit: xml-fop/docs/xml-docs/fop news.xml resources.xml

2002-04-24 Thread chrisg
chrisg 02/04/24 16:27:22 Modified:docs/xml-docs fop.xml docs/xml-docs/fop resources.xml Added: docs/xml-docs/fop news.xml Log: added news section to documentation added info about mailing list digest Revision ChangesPath 1.15 +1 -0 xml

Re: what does IPD refer to? ie how to fix table error re IPD

2002-04-24 Thread J.Pietschmann
Randall J. Parr wrote: > [ERROR]: At least one of minimum, optimum, or maximum IPD must be > specified on table. > > What does IPD refer to? It means "inline progression dimension", or "width" for the average western european ("height" for guys who write in columns instead of lines). > That is

Re: best approach for "labels" use-case

2002-04-24 Thread J.Pietschmann
Randall J. Parr wrote: > My current need is to output "chunks" which are, > more-or-less, formatted like from/to/postage blocks > on an envelope. The "chunks" are full page width > and slightly less than 1/3 page long (thus fitting 3 per page). ... > Should I treat each envelope as a table? Each p

Re: Manipulating page-width / page-height

2002-04-24 Thread J.Pietschmann
Torsten Erler wrote: > Is there any way to invoke the width and height property of the PageMaster > instance, to set this page properties from within the java code??? In my xsl > template no width and height is set, but the rendered page comes with > 576000x792000 mpixels. Can I manipulate the pro

RE: pluggable on-the-fly image generation

2002-04-24 Thread Katiyar, Bhawana
hi, you could try including the svg document as a stream from a servlet and refering this servlet in the src attribute. Something like this: This works for me. Thanks Bhawana -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 4:09 PM

Re: Exception message text not bubbling up

2002-04-24 Thread J.Pietschmann
David B. Bitton wrote: > It;s just that the stack trace shows the exception being thrown from line > 149 of ...PageSequence. Oh well. Stack traces of exceptions mention Java source file names and line numbers where they are thrown. Actually, what do you expect? Name+line of the FO source where t

Re: Using Options With Enbedding

2002-04-24 Thread Jeremias Maerki
You don't have to. It does some magic in the background. "static" is the keyword. :-) On 24.04.2002 19:21:54 Jim Urban wrote: > I understand (I think, I hope) how to add fonts to FOP. I understand the > concept of using an Options object to load the userconfig.xml file. Where I > get lost is, w

Re: pluggable on-the-fly image generation

2002-04-24 Thread Jeremias Maerki
Keiron Liddle checked in a MathML extension yesterday that does almost the same you're doing. He uses a tool that converst MathML to SVG. Have a look at the current CVS (in the contrib directory). On 24.04.2002 20:33:47 Paul Reavis wrote: > I've got a mapping application where I'm generating a re

Re: Using Options With Enbedding

2002-04-24 Thread Arnd Beißner
> I understand (I think, I hope) how to add fonts to FOP. I understand the > concept of using an Options object to load the userconfig.xml file. Where I > get lost is, where in FopServlet does the Options object come in to play? > In other words, how do I pass my Options object to FOP so my fon

Re: background-image patch v0.03 in CVS

2002-04-24 Thread Enrico Schnepel
Would it be possible to implement background-image as one image containing the small image X times stacked side by side and top to bottom. The problem is if the image is very small it took a very long time to display it in acrobat reader. On a second file I am getting the message: [ERROR] Body

pluggable on-the-fly image generation

2002-04-24 Thread Paul Reavis
I've got a mapping application where I'm generating a report with a plot of the map. Currently I'm using Batik's SVGGraphics2D to do the plotting, which is certainly easy enough, and then saving that to an SVG file, writing an FO file that references it as an external graphic and then run FOP to g

what does IPD refer to? ie how to fix table error re IPD

2002-04-24 Thread Randall J. Parr
I am getting an error using FOP 0.20.3 [ERROR]: At least one of minimum, optimum, or maximum IPD must be specified on table. What does IPD refer to? That is, how best to fix this? R.Parr Temporal Arts - To unsubscribe, e-

Using Options With Enbedding

2002-04-24 Thread Jim Urban
I understand (I think, I hope) how to add fonts to FOP. I understand the concept of using an Options object to load the userconfig.xml file. Where I get lost is, where in FopServlet does the Options object come in to play? In other words, how do I pass my Options object to FOP so my fonts can be

Re: Manipulating page-width / page-height

2002-04-24 Thread Jeremias Maerki
If you need to set the page properties dynamically I suggest you use XSLT parameters that you will then use in your stylesheet. Your idea is probably a bit difficult. On 24.04.2002 15:07:44 Torsten Erler wrote: > Hi all > > Is there any way to invoke the width and height property of the PageMast

best approach for "labels" use-case

2002-04-24 Thread Randall J. Parr
My current need is to output "chunks" which are, more-or-less, formatted like from/to/postage blocks on an envelope. The "chunks" are full page width and slightly less than 1/3 page long (thus fitting 3 per page). One of the blocks is an image of a logo. This is essentially the problem of printin

RE: PCL renderer limitations

2002-04-24 Thread Art Welch
Hi Yvonne,   I am the person who is mostly to blame for the PCLRenderer. Unfortunately I have not been able to work on it for a while - and I do not know when I will be able to do so. Of course anyone else is free to work on it - but I have not seen many others doing much on it.   If there

RE: Aids to distributed design

2002-04-24 Thread Jon Allen
Check out Placeware - www.placeware.com - it combines a browser-based way of sharing a view of or even control of your desktop with others, with a phone line for the "chat" portion of your meeting. It's the best collaborative tool I've seen. Jon -Original Message- From: Adrian Edwards [ma

Manipulating page-width / page-height

2002-04-24 Thread Torsten Erler
Hi all Is there any way to invoke the width and height property of the PageMaster instance, to set this page properties from within the java code??? In my xsl template no width and height is set, but the rendered page comes with 576000x792000 mpixels. Can I manipulate the properties with my data

background-image patch v0.03 in CVS

2002-04-24 Thread Arved Sandstrom
What it says. It builds, and I ran a few simple tests. I'll be standing by to do any further fixup work or to add more related features. Regards, AHS __ Arved Sandstrom Sr Software Developer Platform Products Group Halifax R&D Office Hummingbird Ltd

DO NOT REPLY [Bug 8463] New: - SVG clipping in external.fo example doc when rendered to PDF

2002-04-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

[GUMP] Build Failure - xml-fop

2002-04-24 Thread Sam Ruby
This email is autogenerated from the output from: Buildfile: build.xml init-avail: init-filters-xalan2: [copy] Copying 1

RE: Image clipping with svg

2002-04-24 Thread Paul . Hussein
/dvl/sw/fop-0.20.3/docs/examples/svg/external.fo SunOS 5.6 Generic_105181-11 sun4u sparc SUNW,Ultra-30 java version "1.2.2" Solaris VM (build Solaris_JDK_1.2.2_09, native threads, sunwjit) Cheers Paul. "Rhett Aultman" <[EMAIL PROTECTED]> on 23/04/2002 18:05:17 Please respond to