forked from TEIC/Roma-Antiqua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oddtofilter.xsl
118 lines (106 loc) · 3.5 KB
/
oddtofilter.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
<xsl:stylesheet
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:XSL="http://www.w3.org/1999/XSL/TransformAlias"
exclude-result-prefixes="xsl"
version="1.0"
>
<xsl:key name="EQUIVFILES" match="tei:equiv" use="@filter"/>
<xsl:key name="CLASSMEMBERS" match="tei:memberOf" use="@key"/>
<xsl:output method="xml" indent="yes" encoding="utf-8"/>
<xsl:namespace-alias stylesheet-prefix="XSL" result-prefix="xsl"/>
<xsl:template match="/">
<XSL:stylesheet version="1.0"
exclude-result-prefixes="tei"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:tei="http://www.tei-c.org/ns/1.0">
<xsl:for-each select="//tei:equiv[@filter]">
<xsl:if test="generate-id(.)=generate-id(key('EQUIVFILES',@filter)[1])">
<XSL:import href="{@filter}"/>
</xsl:if>
</xsl:for-each>
<XSL:template match="*">
<XSL:copy>
<XSL:apply-templates select="*|@*|processing-instruction()|comment()|text()"/>
</XSL:copy>
</XSL:template>
<XSL:template match="text()|comment()|@*|processing-instruction()">
<XSL:copy/>
</XSL:template>
<xsl:for-each select="//tei:elementSpec/tei:equiv[@filter]">
<XSL:template>
<xsl:attribute name="match">
<xsl:text>tei:</xsl:text>
<xsl:value-of select="parent::tei:elementSpec/@ident"/>
</xsl:attribute>
<XSL:call-template name="{@name}"/>
</XSL:template>
</xsl:for-each>
<xsl:for-each select="//tei:elementSpec/tei:altIdent">
<XSL:template>
<xsl:attribute name="match">
<xsl:text>tei:</xsl:text>
<xsl:value-of select="."/>
</xsl:attribute>
<XSL:element name="{parent::tei:elementSpec/@ident}" xmlns="http://www.tei-c.org/ns/1.0">
<XSL:apply-templates select="*|@*|processing-instruction()|comment()|text()"/>
</XSL:element>
</XSL:template>
</xsl:for-each>
<xsl:for-each select="//tei:elementSpec/tei:attList//tei:attDef/tei:altIdent">
<XSL:template>
<xsl:attribute name="match">
<xsl:text>tei:</xsl:text>
<xsl:choose>
<xsl:when test="ancestor::tei:elementSpec/tei:altIdent">
<xsl:value-of
select="ancestor::tei:elementSpec/tei:altIdent"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of
select="ancestor::tei:elementSpec/@ident"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text>/@</xsl:text>
<xsl:value-of select="."/>
</xsl:attribute>
<XSL:attribute name="{parent::tei:attDef/@ident}">
<XSL:value-of select="."/>
</XSL:attribute>
</XSL:template>
</xsl:for-each>
<xsl:for-each
select="//tei:classSpec/tei:attList/tei:attDef/tei:altIdent">
<xsl:variable name="n">
<xsl:value-of select="."/>
</xsl:variable>
<xsl:variable name="real">
<xsl:value-of select="parent::tei:attDef/@ident"/>
</xsl:variable>
<xsl:for-each
select="key('CLASSMEMBERS',ancestor::tei:classSpec/@ident)">
<xsl:for-each select="ancestor::tei:elementSpec">
<XSL:template>
<xsl:attribute name="match">
<xsl:text>tei:</xsl:text>
<xsl:choose>
<xsl:when test="tei:altIdent">
<xsl:value-of select="tei:altIdent"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@ident"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text>/@</xsl:text>
<xsl:value-of select="$n"/>
</xsl:attribute>
<XSL:attribute name="{$real}">
<XSL:value-of select="."/>
</XSL:attribute>
</XSL:template>
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</XSL:stylesheet>
</xsl:template>
</xsl:stylesheet>