[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XSL-FO & Selecting Attributes

Subject: Re: XSL-FO & Selecting Attributes
From: Jon Gorman <jonathan.gorman@xxxxxxxxx>
Date: Wed, 20 Apr 2005 11:02:11 -0500
attribute block picture template
I believe that Omprakash code looks valid.  It shouldn't have caused
an error.  Perhaps you can share the error message?

To clarify things a bit, I believe David made a mistake in copying and
pasting...I think what he intended to point out was that if you do:

<xsl:template match="Item/*">
<fo:block>
<xsl:value-of select="."/>
</fo:block>
</xsl:template>

You will have that template applied to all the children of Item
instead of having to do
<xsl:template match="Item/name">
<fo:block>
<xsl:value-of select="."/>
</fo:block>
</xsl:template>

<xsl:template match="Item/description">
<fo:block>
<xsl:value-of select="."/>
</fo:block>
</xsl:template>

and so on.

As both David and Omprakash point out, you need that <apply-templates
/> because otherwise it will do no further processing down the tree.
So the more compact templates should like like:

<xsl:template match="Item">
<fo:block>
<xsl:value-of select="@Sector"/>
<xsl:apply-templates />
</fo:block>
</xsl:template>

<xsl:template match="Item/*">
<fo:block>
<xsl:value-of select="."/>
</fo:block>
</xsl:template>

and you might want to do something like David recommends and add:

<xsl:template match="Item/image">
<fo:block>
<fo:external-graphic src="url({.})"/>
</fo:block>
</xsl:template>



And for me produces (didn't use the image template because I'm not
sure what you want to do there) this output:

<fo:block>Agriculture
<fo:block>Poor Farmers Relief Fund</fo:block>
<fo:block>A Consultation on ...</fo:block>
<fo:block>05.01.04</fo:block>
<fo:block>20.02.04</fo:block>
<fo:block>04/1245</fo:block>
<fo:block>image.jpg</fo:block>
</fo:block>

Had I added the image template it would have placed the image in the
document.

Jon Gorman


ps.  I'm not sure that I understand your comment from the original post:
>  Does not seem to work the same wasy as in my XSLT
transformation.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.