mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
d51522eb57
Wrap each release headline in an <a> element with the id set to the release value and page.xsl will take care of the rest. Reported-by: Kashyap Chamarthy <kchamart@redhat.com> Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Andrea Bolognani <abologna@redhat.com>
107 lines
3.1 KiB
XML
107 lines
3.1 KiB
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
|
|
|
|
<!-- This XSLT stylesheet can be applied to the XML version of the release
|
|
notes to produce an HTML document suitable for further processing.
|
|
In particular, the final output will end up on the libvirt website -->
|
|
|
|
<!-- Document -->
|
|
<xsl:template match="/libvirt">
|
|
<xsl:text disable-output-escaping="yes"><!DOCTYPE html>
|
|
</xsl:text>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
</head>
|
|
<body>
|
|
<xsl:text disable-output-escaping="yes">
|
|
|
|
<!-- DO NOT EDIT THIS FILE! It was generated automatically.
|
|
Edit the source file (news.xml) instead -->
|
|
|
|
</xsl:text>
|
|
<h1>Releases</h1>
|
|
<p>This is the list of official releases for libvirt, along with an
|
|
overview of the changes introduced by each of them.</p>
|
|
<p>For a more fine-grained view, use the
|
|
<a href="https://libvirt.org/git/?p=libvirt.git;a=log">git log</a>.
|
|
</p>
|
|
<xsl:apply-templates select="release"/>
|
|
<p>Older libvirt releases didn't have proper release notes,
|
|
and as such are not included in this page: if you're looking
|
|
for information about them, start from those made in
|
|
<a href="news-2016.html">2016</a> and work your way back.</p>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<!-- Release -->
|
|
<xsl:template match="release">
|
|
<h3>
|
|
<a>
|
|
<xsl:attribute name="id">
|
|
<xsl:value-of select="@version"/>
|
|
</xsl:attribute>
|
|
<strong>
|
|
<xsl:value-of select="@version"/>
|
|
<xsl:text> (</xsl:text>
|
|
<xsl:value-of select="@date"/>
|
|
<xsl:text>)</xsl:text>
|
|
</strong>
|
|
</a>
|
|
</h3>
|
|
<ul>
|
|
<xsl:apply-templates select="section"/>
|
|
</ul>
|
|
</xsl:template>
|
|
|
|
<!-- Section -->
|
|
<xsl:template match="section">
|
|
<li>
|
|
<strong>
|
|
<xsl:value-of select="@title"/>
|
|
</strong>
|
|
<xsl:if test="*">
|
|
<ul class="news-section-content">
|
|
<xsl:apply-templates select="change"/>
|
|
</ul>
|
|
</xsl:if>
|
|
</li>
|
|
</xsl:template>
|
|
|
|
<!-- Change -->
|
|
<xsl:template match="change">
|
|
<li>
|
|
<dl>
|
|
<dt>
|
|
<xsl:apply-templates select="summary"/>
|
|
</dt>
|
|
<dd>
|
|
<xsl:apply-templates select="description"/>
|
|
</dd>
|
|
</dl>
|
|
</li>
|
|
</xsl:template>
|
|
|
|
<!-- Change summary -->
|
|
<xsl:template match="summary">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
|
|
<!-- Change description -->
|
|
<xsl:template match="description">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
|
|
<!-- <code> HTML tag -->
|
|
<xsl:template match="code">
|
|
<xsl:text disable-output-escaping="yes"><code></xsl:text>
|
|
<xsl:apply-templates/>
|
|
<xsl:text disable-output-escaping="yes"></code></xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|