home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / chplus / jak_psat_web / xml / priklady / stranka.xslt < prev   
Extensible Markup Language  |  2002-11-24  |  810b  |  39 lines

  1. <?xml version="1.0" encoding="windows-1250" ?>
  2.  
  3. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  4.  
  5.     <xsl:template match="/">
  6.         <table width="100%" border="1">
  7.             <tr>
  8.                 <td widht="20%">
  9.                     <xsl:apply-templates select="/stranka/sloupec" />
  10.                 </td>
  11.                 <td width="80%" valign="top">
  12.                     <xsl:apply-templates select="/stranka/t∞lo" />
  13.                 </td>
  14.             </tr>
  15.         </table>
  16.     </xsl:template>
  17.     
  18.     <xsl:template match="sloupec">
  19.         <xsl:for-each select="odkaz">
  20.             <a>
  21.                 <xsl:attribute name="href">
  22.                     <xsl:value-of select="./@url" />
  23.                 </xsl:attribute>
  24.                 <xsl:value-of select="." />
  25.             </a>
  26.             <br />
  27.         </xsl:for-each>
  28.     </xsl:template>
  29.     
  30.     <xsl:template match="t∞lo">
  31.         <xsl:value-of select="." />
  32.     </xsl:template>
  33.     
  34.     
  35.     
  36.     
  37.     
  38.     
  39. </xsl:stylesheet>