summaryrefslogtreecommitdiff
path: root/import_filters/guyancourt.xslt
diff options
context:
space:
mode:
Diffstat (limited to 'import_filters/guyancourt.xslt')
-rw-r--r--import_filters/guyancourt.xslt18
1 files changed, 18 insertions, 0 deletions
diff --git a/import_filters/guyancourt.xslt b/import_filters/guyancourt.xslt
new file mode 100644
index 0000000..cebed26
--- /dev/null
+++ b/import_filters/guyancourt.xslt
@@ -0,0 +1,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"/></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>
+