-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphml-to-skos.xsl
92 lines (69 loc) · 3.16 KB
/
graphml-to-skos.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
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:graphml="http://graphml.graphdrawing.org/xmlns" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" version="1.0">
<xsl:import href="../../xsl-utils/textutils.xsl"/>
<xsl:import href="yed.xsl"/>
<xsl:output method="text" indent="yes"/>
<xsl:template match="graphml:graphml">
<xsl:apply-templates select=".//graphml:node"/>
</xsl:template>
<xsl:template match="graphml:node">
<xsl:variable name="type">
<xsl:apply-templates select="." mode="nodetype"/>
</xsl:variable>
<xsl:variable name="rdfnodeid">
<xsl:apply-templates select="." mode="uri"/>
</xsl:variable>
<xsl:if test="$type = 'I-node'">
<xsl:value-of select="$rdfnodeid"/><xsl:text> </xsl:text>
<xsl:value-of select="'<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>'"/><xsl:text> </xsl:text>
<xsl:value-of select="concat('<http://www.w3.org/2004/02/skos/core#Concept', '>')"/>
<xsl:text> .</xsl:text>
<xsl:text> </xsl:text>
<!-- claim text becomes definition -->
<xsl:value-of select="$rdfnodeid"/><xsl:text> </xsl:text>
<xsl:value-of select="'<http://www.w3.org/2004/02/skos/core#definition>'"/><xsl:text> </xsl:text>
<xsl:apply-templates select="." mode="claimtext"/>
<xsl:text> .</xsl:text>
<xsl:text> </xsl:text>
<xsl:variable name="nodeid">
<xsl:apply-templates select="." mode="getData"><xsl:with-param name="key" select="$nodeIdKey"/></xsl:apply-templates>
</xsl:variable>
<xsl:variable name="label">
<xsl:apply-templates select="." mode="yed-label"/>
</xsl:variable>
<!-- label becomes prefLabel -->
<xsl:value-of select="$rdfnodeid"/><xsl:text> </xsl:text>
<xsl:value-of select="'<http://www.w3.org/2004/02/skos/core#prefLabel>'"/><xsl:text> </xsl:text>
<xsl:text>"</xsl:text>
<xsl:call-template name="escapeQuotes">
<xsl:with-param name="text" select="normalize-space($label)"/>
</xsl:call-template>
<xsl:text>"@en</xsl:text>
<xsl:text> .</xsl:text>
<xsl:text> </xsl:text>
<!-- nodeid becomes notation -->
<xsl:value-of select="$rdfnodeid"/><xsl:text> </xsl:text>
<xsl:value-of select="'<http://www.w3.org/2004/02/skos/core#notation>'"/><xsl:text> </xsl:text>
<xsl:text>"</xsl:text>
<xsl:call-template name="escapeQuotes">
<xsl:with-param name="text" select="normalize-space($nodeid)"/>
</xsl:call-template>
<xsl:text>"@en</xsl:text>
<xsl:text> .</xsl:text>
<xsl:text> </xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="graphml:node" mode="nodetype">
<xsl:apply-imports/>
</xsl:template>
<xsl:template match="graphml:node" mode="claimtext">
<xsl:variable name="text">
<xsl:apply-imports/>
</xsl:variable>
<xsl:text>"</xsl:text>
<xsl:call-template name="escapeQuotes">
<xsl:with-param name="text" select="normalize-space($text)"/>
</xsl:call-template>
<xsl:text>"@en</xsl:text>
</xsl:template>
</xsl:stylesheet>