home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 February
/
Chip_2004-02_cd1.bin
/
chplus
/
jak_psat_web
/
xml
/
priklady
/
stranka.xslt
< prev
Wrap
Extensible Markup Language
|
2002-11-24
|
810b
|
39 lines
<?xml version="1.0" encoding="windows-1250" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<table width="100%" border="1">
<tr>
<td widht="20%">
<xsl:apply-templates select="/stranka/sloupec" />
</td>
<td width="80%" valign="top">
<xsl:apply-templates select="/stranka/t∞lo" />
</td>
</tr>
</table>
</xsl:template>
<xsl:template match="sloupec">
<xsl:for-each select="odkaz">
<a>
<xsl:attribute name="href">
<xsl:value-of select="./@url" />
</xsl:attribute>
<xsl:value-of select="." />
</a>
<br />
</xsl:for-each>
</xsl:template>
<xsl:template match="t∞lo">
<xsl:value-of select="." />
</xsl:template>
</xsl:stylesheet>