This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: call-template and execute xsl command


David C. wrote:
> or you could use attribute-set feature (which is probably what you
> want here, although personally I never use it)

Attribute sets won't help here because the attributes were optional:

<xsl:template name= "attributes">
  <xsl:choose>
    <xsl:when test="@font-size">
      <xsl:attribute name="font-size">
        <xsl:value-of select="@font-size"/>
      </xsl:attribute>
    </xsl:when>
    <xsl:when test="@text-align">
      <xsl:attribute name="text-align">
        <xsl:value-of select="@text-align"/>
      </xsl:attribute>
    </xsl:when>
 </xsl:choose>
</xsl:template>

Although having said that, in this example the 'font-size' and
'text-align' attributes are just being copied so the whole thing could
be done with:

  <xsl:copy-of select="@font-size | @text-align" />

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]