fr/support.sgml: 1.353 --> 1.354 fr/developers/cvs.sgml: 1.3 --> 1.4 fr/docs/man.sgml: 1.3 --> 1.5 fr/gnome/rss.xsl: 1.2 --> 1.4 fr/platforms/ia64/index.xsl: 1.2 --> 1.3 fr/platforms/ia64/todo.xsl: 1.4 --> 1.6 fr/releng/index.sgml: 1.160 --> 1.161 Submitted by: Antoine Brodin <antoine.brodin@laposte.net>
51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<!-- $FreeBSD: www/fr/gnome/rss.xsl,v 1.1 2003/12/15 15:41:15 stephane Exp $ -->
|
|
|
|
<!--
|
|
The FreeBSD French Documentation Project
|
|
Original revision: 1.4
|
|
|
|
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
version="1.0">
|
|
|
|
<xsl:import href="../includes.xsl"/>
|
|
<xsl:import href="includes.xsl"/>
|
|
|
|
<xsl:variable name="base" select="'..'"/>
|
|
<xsl:variable name="date" select="'$FreeBSD: www/fr/gnome/rss.xsl,v 1.1 2003/12/15 15:41:15 stephane Exp $'"/>
|
|
<xsl:variable name="title" select="'Système de nouvelles du Projet GNOME pour FreeBSD'"/>
|
|
|
|
<xsl:output type="xml" />
|
|
|
|
<xsl:template match="/">
|
|
<rdf:RDF
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns="http://my.netscape.com/rdf/simple/0.9/">
|
|
|
|
<channel>
|
|
<title>Nouvelles du Projet GNOME pour FreeBSD</title>
|
|
<link>http://www.FreeBSD.org/gnome</link>
|
|
<description>Système de nouvelles pour GNOME sous FreeBSD</description>
|
|
</channel>
|
|
|
|
<xsl:for-each select="descendant::event[position() <= 10]">
|
|
<item>
|
|
<title>
|
|
<xsl:choose>
|
|
<xsl:when test="count(child::title)">
|
|
<xsl:value-of select="title"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="p"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</title>
|
|
<link>http://www.FreeBSD.org/gnome/newsflash#<xsl:call-template name="generate-event-anchor"/></link>
|
|
</item>
|
|
</xsl:for-each>
|
|
</rdf:RDF>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|