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