home *** CD-ROM | disk | FTP | other *** search
/ 11 Top Anwendungen / CD_ROM_MAGAZIN.iso / MoneyMethod-Demo / MoneyMethod / Templates / green.xbt / XML / lib.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2000-05-10  |  728 b   |  29 lines

  1. <xsl:stylesheet
  2.   version="1.0"
  3.   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4.   xmlns:xt="http://www.jclark.com/xt">
  5. <xsl:output method="html"/>
  6.  
  7. <xsl:template name="hline">
  8. <xsl:param name="color"/>
  9. <xsl:param name="width"/>
  10. <table cellpadding="0" cellspacing="0" border="0" bgcolor="{$color}" height="1" width="{$width}">
  11. <tr>
  12. <td>
  13. <img src="{concat($respath, 'Images/pixel.gif')}"/>
  14. </td>
  15. </tr>
  16. </table>
  17. </xsl:template>
  18.  
  19. <xsl:template name="catname">
  20. <xsl:param name="name"/>
  21.  
  22.  
  23. <xsl:choose>
  24.   <xsl:when test="string-length ($name) = 0">Die Kategorie ist nicht bestimmt</xsl:when>
  25.   <xsl:otherwise><xsl:value-of select="$name"/></xsl:otherwise>
  26. </xsl:choose>
  27. </xsl:template>
  28.  
  29. </xsl:stylesheet>