-
Notifications
You must be signed in to change notification settings - Fork 0
/
quote.xsl
161 lines (141 loc) · 4.42 KB
/
quote.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl"
xmlns:my="http://nicolasvaughan.org"
exclude-result-prefixes="tei my xd xs"
xpath-default-namespace="http://www.tei-c.org/ns/1.0"
version="3.0">
<xd:doc scope="stylesheet">
<xd:desc>
<xd:p><xd:b>Created on:</xd:b>2020-06-01</xd:p>
<xd:p><xd:b>Author:</xd:b>nivaca</xd:p>
<xd:p>This file contains templates dealing with
quotes and citations.</xd:p>
</xd:desc>
</xd:doc>
<!--=============================================-->
<!-- <foreign> -->
<!-- <mentioned> -->
<!-- <gloss> -->
<!-- <q[not(parent::cit)]> -->
<!--=============================================-->
<xd:doc>
<xd:desc>
<xd:p>template to deal with standalone quotes</xd:p>
<xd:ul>
<xd:li>#1: lang</xd:li>
<xd:li>#2: label</xd:li>
<xd:li>#3: text</xd:li>
</xd:ul>
</xd:desc>
</xd:doc>
<xsl:template match="foreign | mentioned | gloss | q[not(parent::cit)]">
<q>
<xsl:choose>
<xsl:when test="@xml:lang or name(.)='foreign'">
<xsl:attribute name="class">sm-foreign</xsl:attribute>
<xsl:attribute name="lang">
<xsl:value-of select="@xml:lang"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="lang">es</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<!-- -->
<xsl:if test="@xml:id">
<xsl:attribute name="id">
<xsl:value-of select="@xml:id"/>
</xsl:attribute>
</xsl:if>
<!-- -->
<xsl:if test="@ana='lexeme'">
<xsl:attribute name="class">sm-lexeme</xsl:attribute>
</xsl:if>
</q>
</xsl:template>
<!--=============================================-->
<!-- <cit> -->
<!--=============================================-->
<!--cit / quote / q / ref-->
<xd:doc>
<xd:desc>
<xd:p>citations</xd:p>
<xd:p>cit[child::quote]</xd:p>
<xd:ul>
<xd:li>#1: language</xd:li>
<xd:li>#2: label</xd:li>
<xd:li>#3: original language text</xd:li>
<xd:li>#4: translation text</xd:li>
<xd:li>#5: reference</xd:li>
</xd:ul>
</xd:desc>
</xd:doc>
<xsl:template match="cit[child::quote]">
<xsl:if test="quote[@xml:id]">
<xsl:value-of select="quote/@xml:id"/>
</xsl:if>
<!--insert original quote-->
<xsl:apply-templates select="quote"/>
<xsl:if test="q">
<!--insert comma-->
<xsl:text>,</xsl:text>
<!--insert q trans.-->
<xsl:apply-templates select="q"/>
</xsl:if>
<!--insert ref-->
<xsl:if test="ref">
<xsl:text>(</xsl:text>
<xsl:apply-templates select="ref"/>
<xsl:text>)</xsl:text>
</xsl:if>
</xsl:template>
<xd:doc>
<xd:desc>
<xd:p>citations</xd:p>
<xd:p>cit[not(child::quote)]</xd:p>
<xd:p>citation without quote</xd:p>
</xd:desc>
</xd:doc>
<xsl:template match="cit[not(child::quote)]">
<xsl:apply-templates/>
</xsl:template>
<xd:doc>
<xd:desc>quote</xd:desc>
</xd:doc>
<xsl:template match="quote">
<xsl:choose>
<xsl:when test="@ana='verse'">
<blockquote id="{@xml:id}">
<xsl:choose>
<xsl:when test="@xml:lang">
<xsl:attribute name="lang">
<xsl:value-of select="@xml:lang"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="lang">es</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</blockquote>
</xsl:when>
<xsl:otherwise>
<q id="{@xml:id}">
<xsl:choose>
<xsl:when test="@xml:lang">
<xsl:attribute name="lang">
<xsl:value-of select="@xml:lang"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="lang">es</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</q>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>