blob: d47e117abdd65af1e254ee11c2f763ecbd7849d5 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
'<?xml version="1.0" encoding="utf-8"?>' Comment.Preproc
'\n' Text.Whitespace
'<xsl:stylesheet' Keyword
' ' Text.Whitespace
'version=' Name.Attribute
'"1.0"' Literal.String
' ' Text.Whitespace
'xmlns:xsl=' Name.Attribute
'"http://www.w3.org/1999/XSL/Transform"' Literal.String
'>' Name.Tag
'\n\t' Text.Whitespace
'<xsl:output' Keyword
' ' Text.Whitespace
'method=' Name.Attribute
'"xml"' Literal.String
'/>' Name.Tag
'\n\t' Text.Whitespace
'<xsl:template' Keyword
' ' Text.Whitespace
'match=' Name.Attribute
'"/"' Literal.String
'>' Name.Tag
'\n\t\t' Text.Whitespace
'<customers' Name.Tag
'>' Name.Tag
'\n\t\t\t' Text.Whitespace
'<xsl:apply-templates' Keyword
' ' Text.Whitespace
'select=' Name.Attribute
'"customers/customer[@Country=\'Germany\']"' Literal.String
'/>' Name.Tag
'\n\t\t' Text.Whitespace
'</customers>' Name.Tag
'\n\t' Text.Whitespace
'</xsl:template>' Keyword
'\n\t' Text.Whitespace
'<xsl:template' Keyword
' ' Text.Whitespace
'match=' Name.Attribute
'"customers"' Literal.String
'>' Name.Tag
'\n\t\t' Text.Whitespace
'<xsl:apply-templates' Keyword
'/>' Name.Tag
'\n\n\t' Text.Whitespace
'</xsl:template>' Keyword
'\n\t' Text.Whitespace
'<xsl:template' Keyword
' ' Text.Whitespace
'match=' Name.Attribute
'"customer"' Literal.String
'>' Name.Tag
'\n\t\t' Text.Whitespace
'<customer' Name.Tag
'>' Name.Tag
'\n\t\t\t' Text.Whitespace
'<xsl:attribute' Keyword
' ' Text.Whitespace
'name=' Name.Attribute
'"CompanyName"' Literal.String
'>' Name.Tag
'<xsl:value-of' Keyword
' ' Text.Whitespace
'select=' Name.Attribute
'"@CompanyName"' Literal.String
'/>' Name.Tag
'</xsl:attribute>' Keyword
'\n\t\t\t' Text.Whitespace
'<xsl:attribute' Keyword
' ' Text.Whitespace
'name=' Name.Attribute
'"CustomerID"' Literal.String
'>' Name.Tag
'<xsl:value-of' Keyword
' ' Text.Whitespace
'select=' Name.Attribute
'"@CustomerID"' Literal.String
'/>' Name.Tag
'</xsl:attribute>' Keyword
'\n\t\t\t' Text.Whitespace
'<xsl:attribute' Keyword
' ' Text.Whitespace
'name=' Name.Attribute
'"Country"' Literal.String
'>' Name.Tag
'<xsl:value-of' Keyword
' ' Text.Whitespace
'select=' Name.Attribute
'"@Country"' Literal.String
'/>' Name.Tag
'</xsl:attribute>' Keyword
'\n\t\t' Text.Whitespace
'</customer>' Name.Tag
'\n\t\t' Text.Whitespace
'<xsl:apply-templates' Keyword
'/>' Name.Tag
'\n\t' Text.Whitespace
'</xsl:template>' Keyword
'\n\n' Text.Whitespace
'</xsl:stylesheet>' Keyword
'\n' Text.Whitespace
|