home *** CD-ROM | disk | FTP | other *** search
- <xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xt="http://www.jclark.com/xt">
- <xsl:output method="html"/>
-
- <xsl:template name="hline">
- <xsl:param name="color"/>
- <xsl:param name="width"/>
- <table cellpadding="0" cellspacing="0" border="0" bgcolor="{$color}" height="1" width="{$width}">
- <tr>
- <td>
- <img src="{concat($respath, 'Images/pixel.gif')}"/>
- </td>
- </tr>
- </table>
- </xsl:template>
-
- <xsl:template name="catname">
- <xsl:param name="name"/>
-
-
- <xsl:choose>
- <xsl:when test="string-length ($name) = 0">Die Kategorie ist nicht bestimmt</xsl:when>
- <xsl:otherwise><xsl:value-of select="$name"/></xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- </xsl:stylesheet>