-
Notifications
You must be signed in to change notification settings - Fork 0
/
empty.xsl
173 lines (158 loc) · 4.69 KB
/
empty.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: -->
<!-- xsl-file for creating empty document in case of constant errors -->
<!-- Format query results for display -->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
version="1.0">
<xsl:output method="xml"
version="1.0"
encoding="UTF-8"
indent="yes"
doctype-public="-//UIT//DTD Corpus V1.0//EN"
doctype-system="http://giellatekno.uit.no/dtd/corpus.dtd"/>
<xsl:param name="document_id" select="'no_id'"/>
<!-- Add info about the main language: -->
<xsl:template match="document">
<xsl:element name="document">
<xsl:attribute name="xml:lang">
<xsl:choose>
<xsl:when test="$mainlang">
<xsl:value-of select="$mainlang"/>
</xsl:when>
<xsl:when test="string-length(@xml:lang) = 0">
<xsl:value-of select="$smelang"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@xml:lang"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="id">
<xsl:value-of select="$document_id"/>
</xsl:attribute>
<xsl:element name="header">
<xsl:choose>
<xsl:when test="$title">
<xsl:element name="title">
<xsl:value-of select="$title"/>
</xsl:element>
</xsl:when>
<xsl:when test="header/title">
<xsl:element name="title">
<xsl:apply-templates select="header/title"/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="title">
</xsl:element>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$genre">
<xsl:element name="genre">
<xsl:attribute name="code">
<xsl:value-of select="$genre"/>
</xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:when test="header/genre">
<xsl:apply-templates select="header/genre"/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="genre">
</xsl:element>
</xsl:otherwise>
</xsl:choose>
<!-- Only first author is tested from the original documents, others -->
<!-- are just added -->
<xsl:choose>
<xsl:when test="$author1_ln">
<xsl:element name="author">
<xsl:element name="person">
<xsl:attribute name="firstname">
<xsl:value-of select="$author1_fn"/>
</xsl:attribute>
<xsl:attribute name="lastname">
<xsl:value-of select="$author1_ln"/>
</xsl:attribute>
<xsl:attribute name="sex">
<xsl:value-of select="$author1_gender"/>
</xsl:attribute>
<xsl:attribute name="born">
<xsl:value-of select="$author1_born"/>
</xsl:attribute>
<xsl:attribute name="nationality">
<xsl:value-of select="$author1_nat"/>
</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="author">
<xsl:element name="unknown">
</xsl:element>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$license_type">
<xsl:element name="availability">
<xsl:choose>
<xsl:when test="contains($license_type, 'free')">
<xsl:element name="free">
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="license">
<xsl:attribute name="type">
<xsl:value-of select="$license_type"/>
</xsl:attribute>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:when>
<xsl:when test="header/availability">
<xsl:apply-templates select="header/availablity"/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="availability">
<xsl:element name="license">
<xsl:attribute name="type">
<text>standard</text>
</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$metadata">
<xsl:element name="metadata">
<xsl:choose>
<xsl:when test="contains($metadata, 'uncomplete')">
<xsl:element name="uncomplete">
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="complete">
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="header/metadata"/>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$note">
<xsl:element name="note">
<xsl:value-of select="$note"/>
</xsl:element>
</xsl:if>
</xsl:element>
<xsl:element name="body"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>