summaryrefslogtreecommitdiff
path: root/import_filters/guyancourt.xslt
blob: 04ea5b170ef99a44ee91fac099212ab62b236866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/> 
    <xsl:template match="/">
    <items>
        <xsl:for-each select="/nodes/node">
        <item>
            <name>Ville de Guyancourt : <xsl:value-of select="titre"/></name>
            <link><xsl:value-of select="lien"/></link>
            <description><xsl:value-of select="corps"/><br /><xsl:value-of select="contenu"/></description>
            <date><xsl:value-of select="date"/></date>
            <key>guyancourt-<xsl:value-of select="titre"/><xsl:value-of select="date"/></key>
        </item>
        </xsl:for-each>
    </items>
    </xsl:template>
</xsl:stylesheet>