2006-01-29 13:56:15 +03:00
<?xml version="1.0"?>
2015-10-13 10:44:13 +03: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 11:40:17 +04:00
<xsl:output method= "text" encoding= "UTF-8" />
2006-01-29 13:56:15 +03:00
<xsl:template match= "/" >
2016-11-21 23:11:17 +03:00
<xsl:text > libvirt releases
================
2006-01-29 13:56:15 +03:00
</xsl:text>
2015-10-13 10:44:13 +03:00
<xsl:apply-templates select= "html:html/html:body/*" />
2006-01-29 13:56:15 +03:00
</xsl:template>
2008-04-23 23:39:59 +04:00
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:h1" />
<xsl:template match= "html:p" />
<xsl:template match= "html:h3" >
2006-01-29 13:56:15 +03:00
<xsl:text >
</xsl:text>
2016-11-21 23:11:17 +03:00
<xsl:text > # </xsl:text>
2006-01-29 13:56:15 +03:00
<xsl:apply-templates />
2016-11-21 23:11:17 +03:00
<xsl:text >
2006-01-29 13:56:15 +03:00
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:ul" >
2016-11-21 23:11:17 +03:00
<xsl:apply-templates select= "html:li" />
2006-01-29 13:56:15 +03:00
</xsl:template>
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:li" >
2016-11-21 23:11:17 +03: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 13:56:15 +03:00
<xsl:text >
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
2016-11-21 23:11:17 +03:00
<xsl:template match= "html:strong" >
<xsl:apply-templates />
2006-01-29 13:56:15 +03:00
<xsl:text >
2016-11-21 23:11:17 +03:00
2006-01-29 13:56:15 +03:00
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
2006-01-29 13:56:15 +03:00
</xsl:stylesheet>