forked from clarin-eric/ParlaMint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-affiliation-org-role-pairs.xsl
65 lines (55 loc) · 2.13 KB
/
list-affiliation-org-role-pairs.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
<?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:output encoding="utf-8" method="text"/>
<xsl:key name="id" match="tei:*" use="@xml:id"/>
<xsl:variable name="primary" select="/"/>
<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="tei:affiliation">
<xsl:variable name="aff-role" select="./@role"/>
<xsl:variable name="org-role" select="mk:get_org_role(./@ref)"/>
<xsl:value-of select="mk:print_roles($aff-role,$org-role)"/>
</xsl:template>
<xsl:function name="mk:get_org_role">
<xsl:param name="ref"/>
<xsl:variable name="local-id" select="substring-after($ref,'#')"/>
<xsl:choose>
<xsl:when test="not($local-id)"></xsl:when>
<xsl:when test="key('id', $local-id, $primary)/name()='org'">
<xsl:variable name="org" select="key('id', $local-id, $primary)"/>
<xsl:choose>
<xsl:when test="key('id', $local-id, $primary)/@role"><xsl:value-of select="key('id', $local-id, $primary)/@role"/></xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:function>
<xsl:function name="mk:print_roles">
<xsl:param name="aff"/>
<xsl:param name="org"/>
<xsl:message>
<xsl:value-of select="$country"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$aff"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$org"/>
</xsl:message>
</xsl:function>
</xsl:stylesheet>