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]

RE: XSLT: Does an element know about its type?


> <xsl:template match="river|lake|sea|island|mountain|desert">
>   < this tag should be the element's tag, i.e, river or lake or ... >
>     <xsl:copy-of select=" ... several properties ..."/>
>     ... some more things ...
>   </ suitable close-tag >
> </xsl:template>

The name() function will tell you the element type, but
for what you want to do, the xsl:copy instruction is more
appropriate. Either of these will do the trick:

<xsl:template match="river|lake|sea|island|mountain|desert">
  <xsl:copy>
    <!-- element attributes and contents go here -->
  </xsl:copy>
</xsl:template>

<xsl:template match="river|lake|sea|island|mountain|desert">
  <xsl:element name="name()">
    <!-- element attributes and contents go here -->
  </xsl:element>
</xsl:template>


 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]