-
Notifications
You must be signed in to change notification settings - Fork 3
/
annotations.xslt
132 lines (124 loc) · 4.49 KB
/
annotations.xslt
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:param name="corr" select="'annotate'"/>
<xsl:param name="del" select="'annotate'"/>
<xsl:param name="exp" select="'annotate'"/>
<xsl:param name="ill" select="'annotate'"/>
<xsl:param name="sup" select="'annotate'"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="corr">
<xsl:choose>
<xsl:when test="$corr = 'annotate'">
<xsl:text>[</xsl:text>
<xsl:apply-templates/>
<xsl:text>]</xsl:text>
</xsl:when>
<xsl:when test="$corr = 'plaintext'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$corr = 'omit'"/>
<xsl:otherwise>
<xsl:message terminate="yes">
ERROR: Bad input for param 'corr'!
Value must be one of:
- 'annotate'
- 'plaintext'
- 'omit'
Instead got '<xsl:value-of select="$corr"/>'.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="del">
<xsl:choose>
<xsl:when test="$del = 'annotate'">
<xsl:text><-</xsl:text>
<xsl:apply-templates/>
<xsl:text>-></xsl:text>
</xsl:when>
<xsl:when test="$del = 'plaintext'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$del = 'omit'"/>
<xsl:otherwise>
<xsl:message terminate="yes">
ERROR: Bad input for param 'del'!
Value must be one of:
- 'annotate'
- 'plaintext'
- 'omit'
Instead got '<xsl:value-of select="$del"/>'.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="exp">
<xsl:choose>
<xsl:when test="$exp = 'annotate'">
<xsl:text>{</xsl:text>
<xsl:apply-templates/>
<xsl:text>}</xsl:text>
</xsl:when>
<xsl:when test="$exp = 'plaintext'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$exp = 'omit'"/>
<xsl:otherwise>
<xsl:message terminate="yes">
ERROR: Bad input for param 'exp'!
Value must be one of:
- 'annotate'
- 'plaintext'
- 'omit'
Instead got '<xsl:value-of select="$exp"/>'.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="ill">
<xsl:choose>
<xsl:when test="$ill = 'annotate'">
<xsl:text>[illegible]</xsl:text>
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$ill = 'omit'"/>
<xsl:otherwise>
<xsl:message terminate="yes">
ERROR: Bad input for param 'ill'!
Value must be one of:
- 'annotate'
- 'omit'
Instead got '<xsl:value-of select="$ill"/>'.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="sup">
<xsl:choose>
<xsl:when test="$sup = 'annotate'">
<xsl:text>[</xsl:text>
<xsl:apply-templates/>
<xsl:text>]</xsl:text>
</xsl:when>
<xsl:when test="$sup = 'plaintext'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="$sup = 'omit'"/>
<xsl:otherwise>
<xsl:message terminate="yes">
ERROR: Bad input for param 'sup'!
Value must be one of:
- 'annotate'
- 'plaintext'
- 'omit'
Instead got '<xsl:value-of select="$sup"/>'.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>