-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.xsl
More file actions
21 lines (18 loc) · 801 Bytes
/
Copy pathprogram.xsl
File metadata and controls
21 lines (18 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output version="1.0" encoding="UTF-8" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<program>
<xsl:apply-templates select="program"/>
</program>
</xsl:template>
<xsl:template match="program">
<id><xsl:value-of select="id"/></id>
<programID><xsl:value-of select="programID"/></programID>
<orchestra><xsl:value-of select="orchestra"/></orchestra>
<season><xsl:value-of select="season"/></season>
<concertInfo><xsl:value-of select="concat(concertInfo/eventType, ' ',
concertInfo/Location, ' ', concertInfo/Venue, ' ',
concertInfo/Date, ' ', concertInfo/Time)"/></concertInfo>
</xsl:template>
</xsl:transform>