diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-04 20:21:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-04 20:21:56 +0200 |
commit | 7af3588c0ab756a491827f2cc17c6ab0a597a298 (patch) | |
tree | c3abb4accf58f3c3ff956bc4966f82db02270664 /xslt/guyancourt.xslt | |
parent | 6276e56a0c0b847ffc7dd36ff226a7042e0293d0 (diff) | |
parent | 9debc5422a42e743e8a7de6365cec7971c4a1c7d (diff) | |
download | Chimère - projet Saclay-saclay-mobile.tar.bz2 Chimère - projet Saclay-saclay-mobile.zip |
Merge branch 'saclay' into saclay-mobilesaclay-mobile
Conflicts:
static/saclay/css/saclay.css
static/saclay/css/styles.css
templates/chimere/base.html
templates/chimere/detail.html
templates/chimere/main_map.html
Diffstat (limited to 'xslt/guyancourt.xslt')
-rw-r--r-- | xslt/guyancourt.xslt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xslt/guyancourt.xslt b/xslt/guyancourt.xslt new file mode 100644 index 0000000..235879b --- /dev/null +++ b/xslt/guyancourt.xslt @@ -0,0 +1,17 @@ +<?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="/rss/channel/*/item"> + <item> + <name>Ville de Guyancourt : <xsl:value-of select="title"/></name> + <link><xsl:value-of select="link"/></link> + <description><xsl:value-of select="description"/></description> + <key>guyancourt-<xsl:value-of select="guid"/></key> + </item> + </xsl:for-each> + </items> + </xsl:template> +</xsl:stylesheet> + |