xsl-list
[Top] [All Lists]

[xsl] Setting a foreign attribute

2009-10-31 17:15:39
Hi all,
FOP does not like this fragment and calls <xsl:use-attribute-sets> a foreign attribute.

                   <fo:block>
                        <xsl:choose>
                               <xsl:when test="parent::Item">
<xsl:attribute name=" xsl:use-attribute-sets">article0</xsl:attribute>
                               </xsl:when>
                               <xsl:when test="parent::Level1">
<xsl:attribute name=" xsl:use-attribute-sets">article1</xsl:attribute>
                               </xsl:when>
                               <xsl:when test="parent::Level2">
<xsl:attribute name=" xsl:use-attribute-sets">article2</xsl:attribute>
                               </xsl:when>
                               <xsl:when test="parent::Level3">
<xsl:attribute name=" xsl:use-attribute-sets">article3</xsl:attribute>
                               </xsl:when>
                           </xsl:choose>

                                   .....
                       </fo:block>

Is there a way to set <xsl:attribute-sets> similar to my unacceptable construction, or do I have to create all six attributes for each <xsl:when>?

Thanks,
Mark


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--