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
614 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="image"/>
  4. <xsl:param name="color"/>
  5. <xsl:template match="/">
  6. <xsl:apply-templates/>
  7. </xsl:template>
  8. <xsl:template match="context">
  9. <image source="{$image}">
  10. <xsl:apply-templates/>
  11. </image>
  12. </xsl:template>
  13. <xsl:template match="parameter">
  14. <xsl:if test="@name='label'">
  15. <text font="Arial" size="12" x="14" y="1" halign="left"
  16. valign="top" color="{$color}" style="italic" text="{@value}"/>
  17. </xsl:if>
  18. </xsl:template>
  19. </xsl:stylesheet>