forked from oeuvres/teinte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tei4txm.xsl
111 lines (100 loc) · 2.87 KB
/
tei4txm.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
LGPL http://www.gnu.org/licenses/lgpl.html
© 2016 Frederic.Glorieux@fictif.org et LABEX OBVIL
XML TEI allégé, par exemple pièce de théâtre sans didascalies, ou critique sans citations
-->
<xsl:transform version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:tei="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="tei"
>
<!-- TEI common, metadatas -->
<!-- Name of this xsl -->
<xsl:variable name="this">tei4txm.xsl</xsl:variable>
<xsl:output omit-xml-declaration="yes" encoding="UTF-8" method="xml" indent="yes"/>
<xsl:template match="node()|@*" mode="txm">
<xsl:copy>
<xsl:apply-templates select="node()|@*" mode="txm"/>
</xsl:copy>
</xsl:template>
<!-- éléments à traverser -->
<xsl:template match="/">
<xsl:apply-templates mode="txm"/>
</xsl:template>
<!-- éléments à arrêter -->
<xsl:template match="
tei:back
| tei:bibl
| tei:byline
| tei:cit
| tei:castList
| tei:castItem
| tei:dateline
| tei:docAuthor
| tei:docDate
| tei:docImprint
| tei:event
| tei:figure
| tei:front
| tei:label
| tei:listBibl
| tei:note
| tei:person
| tei:place
| tei:ref[not(node())]
| tei:salute
| tei:signed
| tei:speaker
| tei:stage
| tei:titlePart
| tei:trailer
| tei:titlePage
| tei:titlePart
" mode="txm"/>
<!--
| tei:quote
| tei:head
-->
<!-- Rétablissement de césure -->
<xsl:template match="tei:caes" mode="txm">
<xsl:choose>
<xsl:when test="@whole">
<xsl:value-of select="@whole"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- Mot ajouté -->
<xsl:template match="tei:supplied" mode="txm">
<xsl:text>[</xsl:text>
<xsl:apply-templates mode="txm"/>
<xsl:text>]</xsl:text>
</xsl:template>
<!-- alternative critique -->
<xsl:template match="tei:app" mode="txm">
<xsl:apply-templates select="tei:lem" mode="txm"/>
</xsl:template>
<xsl:template match="tei:choice" mode="txm">
<xsl:choose>
<xsl:when test="tei:corr">
<xsl:apply-templates select="tei:corr" mode="txm"/>
</xsl:when>
<xsl:when test="tei:expan">
<xsl:apply-templates select="tei:expan" mode="txm"/>
</xsl:when>
<xsl:when test="tei:reg">
<xsl:apply-templates select="tei:reg" mode="txm"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="*[1]" mode="txm"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tei:name[@type='authority'] | tei:persName[@type='authority']" mode="txm">
<authority>
<xsl:apply-templates mode="txm"/>
</authority>
</xsl:template>
<xsl:template match="tei:quote[tei:lg] | tei:p[tei:quote][normalize-space(text()) = ''] | tei:quote[tei:l]"/>
</xsl:transform>