summaryrefslogtreecommitdiffstats
path: root/packaging/doc-version.xsl
blob: f28a6fc32f7fdf7b17f94358a7218678607b781a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- 

Extract version number for latest revision from rpm-info.xml.
Optional stringparam "role" allows querying of appropriate revision type.

-->

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output encoding="UTF-8" indent="no" method="text"/>

  <xsl:param name="role" select="'doc'"/>

  <xsl:template match="/">
    <xsl:value-of select="/rpm-info/changelog/revision[@role=$role][1]/@number"/>
  </xsl:template>
</xsl:stylesheet>