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.

42 lines
926 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="changes">
  7. <s1 title="{@title}">
  8. <xsl:apply-templates/>
  9. </s1>
  10. </xsl:template>
  11. <xsl:template match="release">
  12. <s2 title="Release {@version} {@date}">
  13. <br/><xsl:apply-templates/>
  14. </s2>
  15. </xsl:template>
  16. <xsl:template match="features">
  17. <s3 title="Features">
  18. <ul><xsl:apply-templates/></ul>
  19. </s3>
  20. </xsl:template>
  21. <xsl:template match="fixes">
  22. <s3 title="Bugs fixed">
  23. <ul><xsl:apply-templates/></ul>
  24. </s3>
  25. </xsl:template>
  26. <xsl:template match="feat|fix">
  27. <li><xsl:apply-templates/></li>
  28. </xsl:template>
  29. <xsl:template match="@*|node()">
  30. <xsl:copy>
  31. <xsl:apply-templates select="@*|node()"/>
  32. </xsl:copy>
  33. </xsl:template>
  34. </xsl:stylesheet>