summaryrefslogtreecommitdiffstats
path: root/packaging/doc-version.xsl
blob: b9b888eb9d0dc88f33f1621fa693089aa2988972 (plain)
1
2
3
4
5
6
7
8
9
10
<!-- Extract version number from rpm-info.xml -->
<xsl:stylesheet version="1.0" xml:space="preserve" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output encoding="UTF-8" indent="no" method="text"/>

<!-- Note: do not indent this file!  Any whitespace here
     will be reproduced in the output -->

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