home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / samples / debugger / Combining stylesheets / sample3.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-21  |  669 b   |  18 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--    Category:    Combining Stylesheets
  3.     Sample from Zvon XSLT tutorial (www.zvon.org)  
  4.     Description:    Imported in other stylesheet. -->
  5. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  6.     <xsl:template match="/">
  7.         <xsl:apply-templates select="//CCC"/>
  8.     </xsl:template>
  9.     <xsl:template match="CCC" priority="10">
  10.         <H3 style="color:blue">
  11.             <xsl:value-of select="name()"/>
  12.             <xsl:text> (id=</xsl:text>
  13.             <xsl:value-of select="@id"/>
  14.             <xsl:text>)</xsl:text>
  15.         </H3>
  16.     </xsl:template>
  17. </xsl:stylesheet>
  18.