-
Notifications
You must be signed in to change notification settings - Fork 0
/
precision.xsl
55 lines (45 loc) · 1.88 KB
/
precision.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
<?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" 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 |||||||||||||||| -->
<!-- |||||||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="//comment() | //processing-instruction()">
<xsl:copy>
<xsl:value-of select="."/>
</xsl:copy>
</xsl:template>
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<!-- |||||||||||||| EXCEPTIONS |||||||||||||| -->
<!-- ||||||||||||||||||||||||||||||||||||||||||||||| -->
<xsl:template match="t:gap[starts-with(@extent, 'c.')]">
<xsl:element name="gap">
<xsl:copy-of select="@*[not(local-name()=('extent','quantity'))]"/>
<xsl:attribute name="quantity">
<xsl:value-of select="substring-after(@extent,'c.')"/>
</xsl:attribute>
<xsl:if test="not(@precision)">
<xsl:attribute name="precision">
<xsl:text>low</xsl:text>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="t:gap[@extent='unknown'][@precision='low']">
<xsl:element name="gap">
<xsl:copy-of select="@*[not(local-name()='precision')]"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>