Hello @ all!
My xml-file is build as following:
<form>
<ncr>
<attribute Name="foo">
<value>foo1</value>
</attribute>
...
</ncr>
</form>
in my stylesheet I've created templates like this:
<xsl:template match="ncr">
<fo:table-row>
<xsl:apply-templates/>
</fo: table-row>
</xsl:template>
<xsl:template match="[EMAIL PROTECTED]'foo']">
<fo:table-cell>
<fo:block padding="1pt">
<xsl:value-ofselect="@Name"/>
</fo:block>
<fo:block padding-top="3pt" padding-left="1pt">
<xsl:value-of select="value"/>
</fo:block>
</fo:table-cell>
</xsl:template>
in fo:root I've created a page-master and a sequence with a table (plus
table-column and table-body).
My problem: the template that matches the node ncr gets never called. Has
anybody an idea?
Thanx in advance!
suse
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]