aboutsummaryrefslogtreecommitdiff
path: root/es/gnome/rss.xsl
blob: 597c8d48365088bda19374d772918a96beeead88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!-- $FreeBSD: www/es/gnome/rss.xsl,v 1.2 2002/11/24 08:43:31 marcus Exp $ -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                xmlns:rdf1="http://my.netscape.com/rdf/simple/0.9/"
                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/es/gnome/rss.xsl,v 1.2 2002/11/24 08:43:31 marcus Exp $'"/>
  <xsl:variable name="title" select="'Sistema de Noticias Proyecto FreeBSD GNOME'"/>

  <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>Noticias Proyecto FreeBSD GNOME</title>
        <link>http://www.FreeBSD.org/es/gnome</link>
        <description>Sistema de Noticias FreeBSD GNOME</description>
      </channel>

      <xsl:for-each select="descendant::event[position() &lt;= 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/es/gnome/newsflash#<xsl:call-template name="generate-event-anchor"/></link>
      </item>
      </xsl:for-each>
   </rdf:RDF>
</xsl:template>
</xsl:stylesheet>