2006-01-29 10:56:15 +00:00
|
|
|
<?xml version="1.0"?>
|
2015-10-13 07:44:13 +00:00
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
2009-07-29 07:40:17 +00:00
|
|
|
<xsl:output method="text" encoding="UTF-8"/>
|
2006-01-29 10:56:15 +00:00
|
|
|
|
|
|
|
<xsl:template match="/">
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:text>libvirt releases
|
|
|
|
================
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:text>
|
2015-10-13 07:44:13 +00:00
|
|
|
<xsl:apply-templates select="html:html/html:body/*"/>
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:template>
|
2008-04-23 19:39:59 +00:00
|
|
|
|
2015-10-13 07:44:13 +00:00
|
|
|
<xsl:template match="html:h1"/>
|
|
|
|
<xsl:template match="html:p"/>
|
|
|
|
|
|
|
|
<xsl:template match="html:h3">
|
2006-01-29 10:56:15 +00:00
|
|
|
<xsl:text>
|
|
|
|
</xsl:text>
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:text># </xsl:text>
|
2006-01-29 10:56:15 +00:00
|
|
|
<xsl:apply-templates/>
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:text>
|
|
|
|
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:text>
|
|
|
|
</xsl:template>
|
2015-10-13 07:44:13 +00:00
|
|
|
|
|
|
|
<xsl:template match="html:ul">
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:apply-templates select="html:li"/>
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:template>
|
2015-10-13 07:44:13 +00:00
|
|
|
|
|
|
|
<xsl:template match="html:li">
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:text> * </xsl:text>
|
|
|
|
<xsl:apply-templates select="html:strong|*/html:li"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="html:li/*/html:li">
|
|
|
|
<xsl:text> - </xsl:text>
|
|
|
|
<xsl:apply-templates/>
|
2006-01-29 10:56:15 +00:00
|
|
|
<xsl:text>
|
|
|
|
</xsl:text>
|
|
|
|
</xsl:template>
|
2015-10-13 07:44:13 +00:00
|
|
|
|
2016-11-21 20:11:17 +00:00
|
|
|
<xsl:template match="html:strong">
|
|
|
|
<xsl:apply-templates/>
|
2006-01-29 10:56:15 +00:00
|
|
|
<xsl:text>
|
2016-11-21 20:11:17 +00:00
|
|
|
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:text>
|
|
|
|
</xsl:template>
|
2015-10-13 07:44:13 +00:00
|
|
|
|
2006-01-29 10:56:15 +00:00
|
|
|
</xsl:stylesheet>
|