03/vyslov1.xsl


  1  <?xml version="1.0" encoding="UTF-8" ?>
  2  <xsl:stylesheet version="1.0" 
  3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4    <xsl:output method="html"/>
  5    <xsl:template match="/">
  6      <html>
  7        <head>
  8          <title>Vyslov</title>
  9        </head>      
 10        <body bgColor="#ccffcc">
 11          <h2>Výkladový slovník</h2>
 12          <h3>Prehľad pojmov</h3>
 13          <xsl:apply-templates select="//Oblast"/>
 14        </body>
 15      </html>
 16    </xsl:template>
 17     
 18    <xsl:template match="Oblast">
 19      <h4> <xsl:value-of select="@Nazov"/> </h4>
 20      <table>
 21        <xsl:for-each select="Pojem">  <!-- Pre kazdy Pojem -->
 22          <tr>
 23            <td><b><xsl:value-of select="@Co"/></b></td>
 24            <td><xsl:value-of select="@Vyznam"/></td>
 25          </tr>
 26        </xsl:for-each>                <!-- Koniec Pojem    -->
 27      </table>
 28    </xsl:template>
 29  </xsl:stylesheet> 

« Sp