forked from clarin-eric/ParlaMint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-links.xsl
179 lines (166 loc) · 6.72 KB
/
list-links.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?xml version="1.0" encoding="UTF-8"?>
<!-- -->
<xsl:stylesheet
xmlns="http://www.tei-c.org/ns/1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:et="http://nl.ijs.si/et"
xmlns:mk="http://ufal.mff.cuni.cz/matyas-kopp"
exclude-result-prefixes="tei et mk"
version="2.0">
<xsl:param name="meta"/>
<xsl:output encoding="utf-8" method="text"/>
<xsl:key name="id" match="tei:*" use="@xml:id"/>
<xsl:variable name="id" select="/tei:*/@xml:id"/>
<xsl:variable name="type" select="/tei:*/name()"/>
<xsl:variable name="teiHeader">
<xsl:if test="normalize-space($meta) and not(doc-available($meta))">
<xsl:message terminate="yes">
<xsl:text>ERROR: meta document </xsl:text>
<xsl:value-of select="$meta"/>
<xsl:text> not available!</xsl:text>
</xsl:message>
</xsl:if>
<xsl:copy-of select="document($meta)//tei:teiHeader"/>
</xsl:variable>
<xsl:variable name="primary" select="/"/>
<xsl:variable name="listPrefix">
<xsl:choose>
<xsl:when test="//tei:teiHeader//tei:listPrefixDef">
<xsl:copy-of select="//tei:teiHeader//tei:listPrefixDef"/>
</xsl:when>
<xsl:when test="$teiHeader//tei:listPrefixDef">
<xsl:copy-of select="$teiHeader//tei:listPrefixDef"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:variable name="country" select="replace(replace(document-uri(/), '.+/([^/]+)\.xml', '$1'), 'ParlaMint-([^._]+).*', '$1')"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="text()"/>
<xsl:template match="tei:*">
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="@*"/>
<xsl:template match="@active | @adj | @adjFrom | @adjTo | @ana | @calendar | @change |
@children | @class | @code | @copyOf | @corresp | @datcat | @datingMethod |
@datingPoint | @decls | @domains | @edRef | @end | @exclude | @fVal |
@facs | @feats | @filter | @follow | @fromUnit | @given | @hand |
@inst | @lemmaRef | @location | @mergedIn | @mutual | @new | @next | @nymRef |
@origin | @parent | @parts | @passive | @perf | @period | @prev | @ref |
@rendition | @require | @resp | @sameAs | @scheme | @scriptRef | @select |
@since | @source | @spanTo | @start | @synch | @target | @targetEnd |
@toUnit | @toWhom | @unitRef | @uri | @url | @valueDatcat | @where |
@who | @wit">
<xsl:variable name="attr" select="./name()"/>
<xsl:variable name="elem" select="./../name()"/>
<xsl:for-each select="tokenize(.,' ')">
<xsl:variable name="ptr" select="."/>
<xsl:variable name="local-id" select="et:ref2id($ptr,$listPrefix)"/>
<xsl:choose>
<xsl:when test="matches($ptr, '^https?:') or matches($ptr, '^mailto:') or matches($ptr, '^ftps?:')">
<xsl:value-of select="mk:print_link($elem,$attr,'url','-',$ptr)"/>
</xsl:when>
<xsl:when test="not(normalize-space($local-id))"/>
<xsl:when test="key('id', $local-id, $primary)">
<xsl:value-of select="mk:print_link($elem,$attr,'local',key('id', $local-id, $primary)/name(),$ptr)"/>
</xsl:when>
<xsl:when test="$teiHeader and key('id', $local-id, $teiHeader)">
<xsl:value-of select="mk:print_link($elem,$attr,'external',key('id', $local-id, $teiHeader)/name(),$ptr)"/>
</xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<xsl:function name="et:ref2id">
<xsl:param name="ptr"/>
<xsl:param name="listPrefix"/>
<xsl:choose>
<!-- Empty pointer -->
<xsl:when test="not(normalize-space($ptr))">
<xsl:call-template name="error">
<xsl:with-param name="msg">Empty pointer!</xsl:with-param>
</xsl:call-template>
</xsl:when>
<!-- Local pointer -->
<xsl:when test="matches($ptr, '^#.+')">
<xsl:value-of select="substring-after($ptr, '#')"/>
</xsl:when>
<!-- URL, return nothing -->
<xsl:when test="matches($ptr, '^https?:') or matches($ptr, '^mailto:')
or matches($ptr, '^ftps?:')">
</xsl:when>
<!-- Extended TEI pointer -->
<xsl:when test="contains($ptr, ':')">
<xsl:variable name="prefix" select="substring-before($ptr, ':')"/>
<xsl:variable name="prefixDef" select="$listPrefix//tei:prefixDef[@ident=$prefix]"/>
<xsl:choose>
<xsl:when test="not($prefixDef)">
<xsl:call-template name="error">
<xsl:with-param name="msg">
<xsl:text>Extended pointer </xsl:text>
<xsl:value-of select="$ptr"/>
<xsl:text> but no prefixDef for prefix </xsl:text>
<xsl:value-of select="$prefix"/>
<xsl:text> found!</xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="id" select="substring-after($ptr, ':')"/>
<xsl:variable name="xml-ptr"
select="replace($id, $prefixDef/@matchPattern, $prefixDef/@replacementPattern)"/>
<xsl:value-of select="et:ref2id($xml-ptr, $listPrefix)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!-- Local filename with extension -->
<xsl:when test="matches($ptr, '\.....?$')"/>
<!-- Probably forgotten hash -->
<xsl:otherwise>
<xsl:call-template name="error">
<xsl:with-param name="msg">
<xsl:text>Strange pointer '</xsl:text>
<xsl:value-of select="$ptr"/>
<xsl:text>'</xsl:text>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:function>
<xsl:function name="mk:print_link">
<xsl:param name="fromEl"/>
<xsl:param name="fromAt"/>
<xsl:param name="targetPlace"/>
<xsl:param name="toEl"/>
<xsl:param name="ptr"/>
<xsl:message>
<xsl:value-of select="$country"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$type"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$fromAt"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$fromEl"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$toEl"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$targetPlace"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$ptr"/>
</xsl:message>
</xsl:function>
<xsl:template name="error">
<xsl:param name="msg">???</xsl:param>
<xsl:param name="severity">ERROR</xsl:param>
<xsl:message>
<xsl:value-of select="$severity"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$id"/>
<xsl:text>: </xsl:text>
<xsl:value-of select="$msg"/>
</xsl:message>
</xsl:template>
</xsl:stylesheet>