mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
e398f5d47a
The files no longer exist, at least not in their previous form, so references to them need to be reworked to still make sense. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
70 lines
1.9 KiB
XML
70 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="text" encoding="UTF-8"/>
|
|
|
|
<!-- This XSLT stylesheet can be applied to the XML version of the release
|
|
notes to produce a plain text document. The output document is not
|
|
formatted properly and needs to be processed further -->
|
|
|
|
<!-- Document -->
|
|
<xsl:template match="/libvirt">
|
|
<xsl:text>libvirt releases
|
|
================
|
|
</xsl:text>
|
|
<xsl:apply-templates select="release"/>
|
|
<xsl:text>
|
|
==============================================================================
|
|
Older libvirt releases didn't have proper release notes: if you are interested
|
|
in changes between them, you should check out docs/news-*.html or the full git
|
|
log (see instructions in ChangeLog).
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
<!-- Release -->
|
|
<xsl:template match="release">
|
|
<xsl:text>
|
|
# </xsl:text>
|
|
<xsl:value-of select="@version"/>
|
|
<xsl:text> (</xsl:text>
|
|
<xsl:value-of select="@date"/>
|
|
<xsl:text>)
|
|
</xsl:text>
|
|
<xsl:apply-templates select="section"/>
|
|
</xsl:template>
|
|
|
|
<!-- Section -->
|
|
<xsl:template match="section">
|
|
<xsl:text>
|
|
* </xsl:text>
|
|
<xsl:value-of select="@title"/>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
<xsl:apply-templates select="change"/>
|
|
</xsl:template>
|
|
|
|
<!-- Change -->
|
|
<xsl:template match="change">
|
|
<xsl:text>
|
|
</xsl:text>
|
|
<xsl:apply-templates select="summary"/>
|
|
<xsl:apply-templates select="description"/>
|
|
</xsl:template>
|
|
|
|
<!-- Change summary -->
|
|
<xsl:template match="summary">
|
|
<xsl:text>- </xsl:text>
|
|
<xsl:value-of select="normalize-space()"/>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
<!-- Change description -->
|
|
<xsl:template match="description">
|
|
<xsl:text>|</xsl:text> <!-- This will be removed when reformatting -->
|
|
<xsl:value-of select="normalize-space()"/>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|