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.

28 lines
1019 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:template match="/">
  4. <xsl:apply-templates/>
  5. </xsl:template>
  6. <xsl:template match="context">
  7. <image source="sbk:/style/graphics/footer.gif">
  8. <xsl:apply-templates/>
  9. </image>
  10. </xsl:template>
  11. <xsl:template match="parameter">
  12. <xsl:if test="@name='copyright'">
  13. <text font="Arial Bold" size="11" x="124" y="6" style="plain"
  14. halign="left" valign="top" color="666699"
  15. text="Copyright &#169; {@value}. All Rights Reserved."/>
  16. <text font="Arial Bold" size="11" x="123" y="5" style="plain"
  17. halign="left" valign="top" color="333366"
  18. text="Copyright &#169; {@value}. All Rights Reserved."/>
  19. <text font="Arial Bold" size="11" x="122" y="4" style="plain"
  20. halign="left" valign="top" color="ffffff"
  21. text="Copyright &#169; {@value}. All Rights Reserved."/>
  22. </xsl:if>
  23. </xsl:template>
  24. </xsl:stylesheet>