source: sandbox/expressoCalendar/xsl/eventsDay.xsl @ 666

Revision 666, 656 bytes checked in by niltonneto, 15 years ago (diff)

Alterações feitas pelo desenvolvedor, referente ao expressoCalendar (nova agenda).
Alexandre MUller => amuller@…

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3<xsl:template match="/retorno">
4<div id="returnEvents">
5<xsl:for-each select="calevent">
6        <xsl:variable name="event_id" select="id" />
7        <xsl:variable name="datetime" select="datetime" />
8        <xsl:variable name="edatetime" select="edatetime" />
9                <xsl:if test="id > 0">
10                        <div id="event_{$event_id}">
11                                <div id="{$datetime}"></div>
12                                <div id="{$edatetime}"></div>
13                                <xsl:value-of select='title' />
14                                <br/>
15                                <xsl:value-of select='description' />
16                        </div>
17                </xsl:if>
18</xsl:for-each>
19</div>
20</xsl:template>
21</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.