summaryrefslogtreecommitdiffstats
path: root/packaging/doc-version.xsl
blob: 3c3c4f3ea3972944fa9416f89c0c7b00bb04bd80 (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[@role='doc'][1]/@version"/>
</xsl:template>
</xsl:stylesheet>