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..04ea5b1
--- /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"/><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>
+