Re: AWT, background-image

2004-04-27 Thread Chris Bowditch
[EMAIL PROTECTED] wrote: Do you know what is the class I can modify to implement this? If you are using 0.20.5, then that code is frozen and any changes you submit will be unlikely to make it into the code base. Development is focused on CVS Head. Whichever version of the code you are looking

Re: Open source font models

2004-04-27 Thread Chris Bowditch
Pierrick Brihaye wrote: Hi, It's neither a feature nor a bug. It's simply a gap in the implementation IMO. It really depends on your requirements. If you only have these obsolete fonts that FOP doesn't understand, it is surely worth trying to fix this. You may simply have to determine how much

iteration in xsl

2004-04-27 Thread Varadharajan Sethuraman
Hi All, I just want to know the iteration functionality in xsl. for example similar to the following ... for(int i=0;i10;i++){ } or how do i achieve that functionality ... is there any workaround? kindly let me know ... Regards Varadharajan S Do you Yahoo!?Win a $20,000 Career Makeover at

RE: iteration in xsl

2004-04-27 Thread Teator, Michael
There's no direct functionality, but the workaround is to use recursion. xsl:call-template name="iterate" xsl:with-param name="iterations" select="10" /xsl xsl:template name="iterate" xsl:param name="iterations"0/xsl:param xsl:if test="$iterations 0" !-- do your work here --

Re: iteration in xsl

2004-04-27 Thread Chris Bowditch
Varadharajan Sethuraman wrote: Hi All, I just want to know the *iteration functionality* in xsl. for example similar to the following ... *for(int i=0;i10;i++){* ** *}* or how do i achieve that functionality ... *is there any workaround?* kindly let me know ... This is a pure XSL question,

Re: Open source font models

2004-04-27 Thread Pierrick Brihaye
Hi, Pierrick, from my point of view I would be interested in seeing the TTFReader and PFMReader modified to consider several maps, beside just unicode. I think such functionality would be very good for FOP. Thanks for your support : it was my first question ;-) Changes to layout that you

Re: iteration in xsl

2004-04-27 Thread J.Pietschmann
Varadharajan Sethuraman wrote: I just want to know the *iteration functionality* in xsl. for example similar to the following ... *for(int i=0;i10;i++){* You most likely wont need it. Check your XSLT book (you have a book, haven't you?) for the position() and count() XPath functions. If you decide

embedded FOP - logging

2004-04-27 Thread Johannes Stuermer
How do I tell FOP to only log ERROR messages and not messages that fall into the INFO category? Thanks -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 27, 2004 12:04 PM To: [EMAIL PROTECTED] Subject: Re: iteration in xsl Varadharajan Sethuraman

Re: embedded FOP - logging

2004-04-27 Thread Glen Mazza
This section should help you: http://xml.apache.org/fop/embedding.html#basic-logging Glen --- Johannes Stuermer [EMAIL PROTECTED] wrote: How do I tell FOP to only log ERROR messages and not messages that fall into the INFO category? Thanks -Original Message- From: