-
Notifications
You must be signed in to change notification settings - Fork 0
/
sequence.xsl
32 lines (32 loc) · 1004 Bytes
/
sequence.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:cd="http://www.cd.nl" xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs">
<xsl:output indent="yes" />
<xsl:template match="/">
<xsl:variable name="cop_voorbeeld" as="element()">
<xsl:copy-of select="cd:cdlijst/cd:cd[1]/cd:cdtitel" />
</xsl:variable>
<xsl:variable name="seq_voorbeeld" as="element()">
<xsl:sequence select="cd:cdlijst/cd:cd[1]/cd:cdtitel" />
</xsl:variable>
<uitvoer>
<copy-of>
<titel>
<xsl:value-of select="$cop_voorbeeld" />
</titel>
<artiest>
<xsl:value-of select="$cop_voorbeeld/../cd:artiest" />
</artiest>
</copy-of>
<sequence>
<titel>
<xsl:value-of select="$seq_voorbeeld" />
</titel>
<artiest>
<xsl:value-of select="$seq_voorbeeld/../cd:artiest" />
</artiest>
</sequence>
</uitvoer>
</xsl:template>
</xsl:stylesheet>