2005-12-07 12:56:14 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!-- this stylesheet builds the ChangeLog.html -->
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
|
|
|
|
<!-- Generate XHTML-1.0 transitional -->
|
2009-12-08 15:09:33 +00:00
|
|
|
<xsl:output method="xml" encoding="UTF-8" indent="yes"
|
2008-04-25 16:23:51 +00:00
|
|
|
doctype-public="-//W3C//DTD XHTML 1.0//EN"
|
|
|
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
|
2005-12-07 12:56:14 +00:00
|
|
|
|
|
|
|
<xsl:template match="item">
|
|
|
|
<li><xsl:apply-templates/></li>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="entry">
|
|
|
|
<p>
|
2008-04-23 17:08:31 +00:00
|
|
|
<span class="author"><xsl:value-of select="@who"/> </span>
|
|
|
|
<span class="date"><xsl:value-of select="@date"/> </span>
|
|
|
|
<span class="timezone"><xsl:value-of select="@timezone"/> </span>
|
|
|
|
</p>
|
2005-12-07 12:56:14 +00:00
|
|
|
<ul>
|
|
|
|
<xsl:apply-templates select="item"/>
|
|
|
|
</ul>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="log">
|
2008-04-23 17:08:31 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Log of recent changes to libvirt</h1>
|
|
|
|
<div id="changelog">
|
|
|
|
<xsl:apply-templates select="entry"/>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
2005-12-07 12:56:14 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|