You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
607 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:param name="color"/>
  4. <xsl:template match="/">
  5. <xsl:apply-templates/>
  6. </xsl:template>
  7. <xsl:template match="context">
  8. <image source="sbk:/style/graphics/section.gif">
  9. <xsl:apply-templates/>
  10. </image>
  11. </xsl:template>
  12. <xsl:template match="parameter">
  13. <xsl:if test="@name='label'">
  14. <text font="Arial" size="12" x="4" y="2" halign="left"
  15. valign="top" color="{$color}" style="bold" text="{@value}"/>
  16. </xsl:if>
  17. </xsl:template>
  18. </xsl:stylesheet>