-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdxf-2-dictc5.xsl
99 lines (83 loc) · 2.65 KB
/
xdxf-2-dictc5.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
XSLT stylesheet for transforming XDXF dictionaries into DICT format (-c5 variant).
The resulting file can be compiled with the following command:
$ dictfmt -c5 -break-headwords -headword-separator ';' -utf8 <file>
PROGRESS:
- über „ar“s iterieren
- mehrere Schlüsselwörter mit Strichpunkten auflisten
- nummerierte Liste aller Bedeutungen (getrennt mit Kommas)
- falls nicht verschachtelt, unnummerierter Eintrag
- Beispiele aufführen
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:output method="text" indent="no" encoding="UTF-8"/>
<!--=======================================================
LEXICON TEMPLATE
========================================================-->
<xsl:template match="/xdxf/lexicon">
<!-- erster Trennstrich (vor erstem Eintrag) -->
<xsl:text>_____
</xsl:text>
<!-- Vorlage für ar aufrufen -->
<xsl:apply-templates select="ar"/>
</xsl:template>
<!--=======================================================
AR TEMPLATE
========================================================-->
<xsl:template match="ar">
<!-- Leerzeile -->
<xsl:text>
</xsl:text>
<!-- Schlüsselwörter auflisten -->
<xsl:for-each select="k">
<xsl:value-of select="."/><xsl:if test="position() != last()">;</xsl:if>
</xsl:for-each>
<!-- neue Zeile -->
<xsl:text>
</xsl:text>
<!-- nummerierte liste aller defs erzeugen -->
<xsl:choose>
<xsl:when test="def/def">
<xsl:for-each select="def/def">
<xsl:number value="position()"/><xsl:text>. </xsl:text> <xsl:apply-templates select="."/>
<xsl:text>
</xsl:text>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="def"/>
</xsl:otherwise>
</xsl:choose>
<!-- abschließender Trennstrich -->
<xsl:text>
_____
</xsl:text>
</xsl:template>
<!--=======================================================
DEF TEMPLATE
========================================================-->
<xsl:template match="def">
<xsl:for-each select="deftext"><xsl:value-of select="."/><xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if></xsl:for-each>
<xsl:text>
</xsl:text>
<!-- Beispiele -->
<xsl:if test="ex">
<xsl:text>Bsp.:
</xsl:text>
</xsl:if>
<xsl:for-each select="ex">
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:template>
<!--=======================================================
EX TEMPLATE
========================================================-->
<xsl:template match="ex">
<xsl:text> </xsl:text><xsl:value-of select="ex_orig"/><xsl:text> -- </xsl:text><xsl:value-of select="ex_tran"/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>