-
Notifications
You must be signed in to change notification settings - Fork 0
/
numtick.xsl
91 lines (78 loc) · 2.91 KB
/
numtick.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
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.tei-c.org/ns/1.0"
xmlns:t="http://www.tei-c.org/ns/1.0" xmlns:date="http://exslt.org/dates-and-times" version="2.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<!-- ||||||||| copy all existing elements ||||||||| -->
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="t:*">
<xsl:element name="{local-name()}">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<!-- |||||||||||||||||||||||||||||||||||||||||||||||||||| -->
<!-- |||||||||||||||| copy all comments and proc-instrs |||||||||||||||| -->
<!-- |||||||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="//comment()">
<xsl:copy>
<xsl:value-of select="."/>
</xsl:copy>
</xsl:template>
<xsl:template match="//processing-instruction()">
<xsl:text>
</xsl:text>
<xsl:copy>
<xsl:value-of select="."/>
</xsl:copy>
<xsl:text>
</xsl:text>
</xsl:template>
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<!-- |||||||||||| LIST CHANGES ||||||||||||| -->
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="t:revisionDesc">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:if test="//t:num[@rend='fraction']">
<xsl:element name="change">
<xsl:attribute name="when">
<xsl:value-of select="substring(date:date(),1,10)"/>
</xsl:attribute>
<xsl:attribute name="who">
<xsl:text>GB</xsl:text>
</xsl:attribute>
<xsl:text>updated markup for fractions (rend=tick)</xsl:text>
</xsl:element>
</xsl:if>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<!-- |||||||||||||| EXCEPTIONS |||||||||||||| -->
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="t:num[@rend='fraction']">
<xsl:element name="num">
<xsl:copy-of select="@*[not(local-name() = 'rend')]"/>
<xsl:choose>
<xsl:when test="@value=('1/2','2/3','3/4')"></xsl:when>
<xsl:otherwise>
<xsl:attribute name="rend">
<xsl:text>tick</xsl:text>
</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="t:num/t:certainty">
<xsl:element name="certainty">
<xsl:attribute name="match">
<xsl:text>../@value</xsl:text>
</xsl:attribute>
<xsl:attribute name="locus">
<xsl:text>value</xsl:text>
</xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:stylesheet>