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= "/" >
<xsl:text >
2006-02-09 20:45:11 +03:00
NEWS file for libvirt
2006-01-29 13:56:15 +03:00
2015-10-13 10:44:13 +03:00
Note that this file contains only the most recent releases; for the full
list, please visit:
2006-02-09 20:45:11 +03:00
http://libvirt.org/news.html
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>
<xsl:apply-templates />
<xsl:text > :
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:ul" >
<xsl:apply-templates select= "html:li" />
2006-01-29 13:56:15 +03:00
<xsl:text >
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:li" >
2006-01-29 13:56:15 +03:00
<xsl:text > - </xsl:text>
<xsl:value-of select= "." />
<xsl:text >
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
<xsl:template match= "html:a" >
2006-01-29 13:56:15 +03:00
<xsl:value-of select= "." />
2008-02-05 22:27:37 +03:00
<xsl:text > at
2006-01-29 13:56:15 +03:00
</xsl:text>
<xsl:value-of select= "@href" />
<xsl:text >
</xsl:text>
</xsl:template>
2015-10-13 10:44:13 +03:00
2006-01-29 13:56:15 +03:00
</xsl:stylesheet>