summaryrefslogtreecommitdiff
path: root/chimere/tests/villiers-le-bacle.xslt
blob: be446cbc7f0264edb70d90cbbaa7338c25e53d14 (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="/html/body/div[@id='container']/table[@id='mainpage']/tr/td/div[@id='agenda']/ul/li">
        <item>
            <date><xsl:value-of select="div[@class='ag-date']"/></date>
            <name><xsl:value-of select="div[@class='titre']/a"/></name>
            <link><xsl:value-of select="div[@class='titre']/a/@href"/></link>
            <key><xsl:value-of select="div[@class='titre']/a/@href"/></key>
        </item>
        </xsl:for-each>
    </items>
    </xsl:template>
</xsl:stylesheet>