blob: 7ceba5b442206d36a941e9727d81e28514b86817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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>
<date><xsl:value-of select="date"/></date>
<name>Magny-les-Hameaux : <xsl:value-of select="titre"/></name>
<category><xsl:value-of select="tiquette"/></category>
<link><xsl:value-of select="lien"/></link>
<description><xsl:value-of select="body"/></description>
<key>magny-les-hameaux-<xsl:value-of select="titre"/>-<xsl:value-of select="date"/></key>
<lat><xsl:value-of select="latitude"/></lat>
<lon><xsl:value-of select="longitude"/></lon>
</item>
</xsl:for-each>
</items>
</xsl:template>
</xsl:stylesheet>
|