blob: 86988efa4d29ed408e89a9e9014c0490b576261d [file] [log] [blame]
Akron9a8ee3e2022-01-31 13:51:49 +01001<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
bansp5e2d1c02022-03-10 04:51:40 +01003 xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:nkjp="http://www.nkjp.pl/ns/1.0"
4 xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:f="func"
Piotr Banskif8af3a92022-05-23 03:20:10 +02005 xmlns:fn="http://www.w3.org/2005/xpath-functions"
Piotr Banski763b41f2022-06-02 01:13:23 +02006 xmlns:xi="http://www.w3.org/2001/XInclude"
7 xmlns:map="http://www.w3.org/2005/xpath-functions/map" exclude-result-prefixes="xs f fn map nkjp tei xi"
bansp5e2d1c02022-03-10 04:51:40 +01008 version="3.0" expand-text="yes">
Akron9a8ee3e2022-01-31 13:51:49 +01009
banspe726b4a2022-03-28 05:47:45 +020010
11<!-- PARAMETERS -->
bansp5e2d1c02022-03-10 04:51:40 +010012
Piotr Banskib28e5882022-06-08 20:41:20 +020013 <xsl:param name="sourceDir" select="'test/resources/nkjp2korap_sample3'" as="xs:string"/>
banspd1bf1db2022-04-04 02:16:24 +020014 <!-- the directory containing NKJP files, in the form of a collection of text-level dirs
15 (that is how we know both the $corpusID and the $docID) -->
Akron9a8ee3e2022-01-31 13:51:49 +010016
bansp8f6700b2022-03-27 05:27:09 +020017 <xsl:param name="targetDir" select="'test/output'" as="xs:string"/>
banspd1bf1db2022-04-04 02:16:24 +020018 <!-- where the corpus/document/text/annotations hierarchy is going to be created -->
banspf2b24e62022-03-28 18:12:08 +020019
20 <xsl:param name="skip_docID" as="xs:string">
Piotr Banskia78e59d2022-06-03 19:35:32 +020021 <xsl:value-of select="''"/>
Piotr Banskib28e5882022-06-08 20:41:20 +020022 <!--<xsl:value-of select="'HellerPodgladanie,IsakowiczZaleskiMoje,KOT,MysliwskiKamien,WilkWilczy,ZycieWarszawy_Zycie'"/>-->
banspb5992532022-03-29 15:55:44 +020023 </xsl:param>
24 <!-- comma-separated list of document IDs to be skipped from processing
banspf2b24e62022-03-28 18:12:08 +020025 example: HellerPodgladanie,KOT
banspd1bf1db2022-04-04 02:16:24 +020026 no functionality beyond string identity is supported
27 (this is just for testing) -->
banspb5992532022-03-29 15:55:44 +020028
Piotr Banski1ae16bd2022-05-25 15:59:40 +020029 <xsl:param name="SHOW_ORTH_IN_STRUCT" as="xs:boolean" select="true()"/>
Piotr Banskid2b78b82022-06-03 17:05:59 +020030 <!-- for debugging structure.xml production; otherwise we don't see the referenced span -->
31
32 <xsl:param name="SHOW_REDUNDANT_ORTH" as="xs:boolean" select="true()"/>
33 <!-- in layers such as morpho or named, one can recover the orth, so this is a bit of
34 space-wasting luxury, useful at the early stages -->
Piotr Banski09096ee2022-05-25 13:41:03 +020035
bansp8f6700b2022-03-27 05:27:09 +020036
bansp9dc10002022-05-17 22:33:34 +020037<!-- VARIABLES (= constants...) -->
banspe726b4a2022-03-28 05:47:45 +020038
39 <xsl:variable name="corpusID" as="xs:string" select="'NKJP'" static="yes"/>
40 <xsl:variable name="docID" as="xs:string" select="'NKJP'" static="yes"/>
bansp8f6700b2022-03-27 05:27:09 +020041
42 <xsl:variable name="targetCorpusDir_slashed" select="$targetDir || '/' || $corpusID || '/'" as="xs:string"/>
bansp5e2d1c02022-03-10 04:51:40 +010043
banspd1bf1db2022-04-04 02:16:24 +020044 <xsl:variable name="systemDoctypeI5" as="xs:string"
45 select="'http://corpora.ids-mannheim.de/I5/DTD/i5.dtd'" static="true"/>
bansp5e2d1c02022-03-10 04:51:40 +010046
banspd1bf1db2022-04-04 02:16:24 +020047 <xsl:variable name="publicDoctypeI5" as="xs:string" static="true"
48 select="'-//IDS//DTD I5 1.0//EN'"/>
bansp5e2d1c02022-03-10 04:51:40 +010049
banspd1bf1db2022-04-04 02:16:24 +020050 <xsl:variable name="KorAP_namespace" static="true" as="xs:string"
51 select="'http://ids-mannheim.de/ns/KorAP'"/>
bansp5e2d1c02022-03-10 04:51:40 +010052
bansp5f841732022-03-16 06:27:31 +010053 <xsl:variable name="KorAP-XML_version" select="'KorAP-0.4'" as="xs:string" static="true"/>
54 <!-- this is only a bit funny -->
55
banspe726b4a2022-03-28 05:47:45 +020056 <xsl:variable name="collection_params" as="xs:string" static="yes"
57 select="'recurse=yes;validation=strip;select=text.xml;content-type=application/xml;on-error=warning;xinclude=yes'"
58 />
59 <!-- see https://www.saxonica.com/documentation11/index.html#!sourcedocs/collections/collection-directories -->
60
61 <xsl:variable name="collection_of_text" select="collection($sourceDir || '?' || $collection_params)" as="document-node()+"/>
banspd1bf1db2022-04-04 02:16:24 +020062
banspe726b4a2022-03-28 05:47:45 +020063<!-- MODES -->
bansp5e2d1c02022-03-10 04:51:40 +010064
Piotr Banski43b9db02022-06-03 02:38:42 +020065 <xsl:mode name="struct" on-no-match="deep-skip"/>
Piotr Banskid2b78b82022-06-03 17:05:59 +020066 <xsl:mode name="morpho" on-no-match="deep-skip"/>
Piotr Banskifaa910f2022-06-03 00:46:29 +020067 <xsl:mode name="corpus-header" on-no-match="deep-skip"/>
Piotr Banskia0a9fc02022-06-03 01:20:18 +020068 <xsl:mode name="text-header" on-no-match="deep-skip"/>
69 <xsl:mode name="text_inside_header" on-no-match="text-only-copy"/>
Piotr Banski763b41f2022-06-02 01:13:23 +020070 <xsl:mode name="copy" on-no-match="shallow-copy"/>
Piotr Banski6a4a2522022-05-24 01:16:47 +020071 <xsl:mode use-accumulators="#all"/>
Piotr Banski09096ee2022-05-25 13:41:03 +020072
Piotr Banskie1ac5202022-05-30 21:25:21 +020073 <xsl:accumulator name="element-index" as="xs:integer" initial-value="0">
Piotr Banskid2b78b82022-06-03 17:05:59 +020074 <!--<xsl:accumulator-rule match="tei:*[ancestor-or-self::tei:text]" select="$value + 1" phase="start"/>-->
75 <xsl:accumulator-rule
76 match="tei:teiCorpus/tei:TEI/(tei:text | tei:text/tei:body | tei:text/tei:body/tei:p | tei:text/tei:body/tei:p/tei:s | tei:text/tei:body/tei:p/tei:s/tei:seg)"
77 select="$value + 1" phase="start"/>
Piotr Banski09096ee2022-05-25 13:41:03 +020078 </xsl:accumulator>
Piotr Banskid2b78b82022-06-03 17:05:59 +020079
Piotr Banski65a6d0b2022-05-31 17:23:08 +020080 <xsl:accumulator name="morpho-offsets" as="map(xs:string, item()+)+" initial-value="(map{'null':(0,0)})">
Piotr Banskifdc858a2022-05-25 02:40:32 +020081
82 <xsl:accumulator-rule match="tei:body/tei:p" phase="start">
83 <xsl:variable name="preceding_index" as="xs:integer">
84 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
85 <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
Piotr Banski6a4a2522022-05-24 01:16:47 +020086 </xsl:variable>
87
Piotr Banskifdc858a2022-05-25 02:40:32 +020088 <xsl:variable name="our_base" as="xs:integer" select="if($preceding_index eq 0) then $preceding_index else $preceding_index + 1"/>
89 <!-- for paragraphs, it's in either being initial or not -->
Piotr Banski09096ee2022-05-25 13:41:03 +020090
Piotr Banskifdc858a2022-05-25 02:40:32 +020091 <xsl:sequence select="
92 $value,
93 map {
94 string(@xml:id): ($preceding_index,$our_base)
95 }"/>
96 </xsl:accumulator-rule>
Piotr Banskid2b78b82022-06-03 17:05:59 +020097
Piotr Banskifdc858a2022-05-25 02:40:32 +020098 <xsl:accumulator-rule match="tei:s" phase="start">
99 <xsl:variable name="preceding_index" as="xs:integer">
100 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
101 <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
Piotr Banskifdc858a2022-05-25 02:40:32 +0200102 </xsl:variable>
Piotr Banski92791a22022-05-26 01:41:10 +0200103 <xsl:variable name="our_base" as="xs:integer" select="if($preceding_index eq 0) then $preceding_index else $preceding_index + xs:integer(f:is_preceded_by_ws(.,true()))"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200104
Piotr Banskifdc858a2022-05-25 02:40:32 +0200105 <xsl:sequence select="
106 $value,
107 map {
108 string(@xml:id): ($preceding_index,$our_base)
109 }"/>
110 </xsl:accumulator-rule>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200111
112<!-- I want something that won't be matched in other layers, for efficiency - that
113 may allow me to merge the accumulators, eventually;
114 but I also want to filter out the rejected tokenization alternatives already here -->
115 <xsl:accumulator-rule match="tei:seg[tei:fs[@type eq 'morph' and tei:f[@name eq 'disamb']]]" phase="end">
116
Piotr Banskifdc858a2022-05-25 02:40:32 +0200117 <xsl:variable name="preceding_index" as="xs:integer">
118 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
119 <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
Piotr Banskifdc858a2022-05-25 02:40:32 +0200120 </xsl:variable>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200121 <xsl:variable name="our_base" as="xs:integer" select="$preceding_index + xs:integer(f:is_preceded_by_ws(.,true()))"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200122
Piotr Banski6a4a2522022-05-24 01:16:47 +0200123 <xsl:sequence select="
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200124 $value,
125 map {
126 string(@xml:id): ($our_base,$our_base + string-length(tei:fs/tei:f[@name eq 'orth']/tei:string))
127 }"/>
128
Piotr Banski6a4a2522022-05-24 01:16:47 +0200129 </xsl:accumulator-rule>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200130
Piotr Banskifdc858a2022-05-25 02:40:32 +0200131 <xsl:accumulator-rule match="tei:s" phase="end">
132 <xsl:variable name="preceding_index" as="xs:integer">
133 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
134 <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200135
Piotr Banskifdc858a2022-05-25 02:40:32 +0200136 </xsl:variable>
137 <xsl:variable name="our_base" as="xs:integer">
138 <xsl:variable name="incomplete" select="map:find($value,string(@xml:id))(1)" as="xs:integer+"/>
139 <xsl:sequence select="$incomplete[2]"/>
140 </xsl:variable>
Piotr Banski09096ee2022-05-25 13:41:03 +0200141
Piotr Banskifdc858a2022-05-25 02:40:32 +0200142 <xsl:sequence select="
143 $value,
144 map {
145 string(@xml:id): ($our_base,$preceding_index)
146 }"/>
147 </xsl:accumulator-rule>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200148
Piotr Banskifdc858a2022-05-25 02:40:32 +0200149 <xsl:accumulator-rule match="tei:body/tei:p" phase="end">
150 <xsl:variable name="preceding_index" as="xs:integer">
151 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
152 <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
153
Piotr Banskifdc858a2022-05-25 02:40:32 +0200154 </xsl:variable>
155 <xsl:variable name="our_base" as="xs:integer">
156 <xsl:variable name="incomplete" select="map:find($value,string(@xml:id))(1)" as="xs:integer+"/>
157 <xsl:sequence select="$incomplete[2]"/>
158 </xsl:variable>
Piotr Banski09096ee2022-05-25 13:41:03 +0200159
Piotr Banskifdc858a2022-05-25 02:40:32 +0200160 <xsl:sequence select="
161 $value,
162 map {
163 string(@xml:id): ($our_base,$preceding_index)
164 }"/>
165 </xsl:accumulator-rule>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200166
Piotr Banskifdc858a2022-05-25 02:40:32 +0200167 <xsl:accumulator-rule match="tei:body" phase="end">
168 <xsl:variable name="preceding_index" as="xs:integer">
169 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
170 <xsl:sequence select="map:get($the_tail, map:keys($the_tail)[1])[2]"/>
171 </xsl:variable>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200172
Piotr Banskifdc858a2022-05-25 02:40:32 +0200173 <xsl:sequence select="
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200174 $value,
175 map {
176 string(@xml:id): (0, $preceding_index)
177 }"/>
Piotr Banskifdc858a2022-05-25 02:40:32 +0200178 </xsl:accumulator-rule>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200179
Piotr Banskifdc858a2022-05-25 02:40:32 +0200180 <xsl:accumulator-rule match="tei:text" phase="end">
181 <xsl:variable name="preceding_index" as="xs:integer">
182 <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
183 <xsl:sequence select="map:get($the_tail, map:keys($the_tail)[1])[2]"/>
184 </xsl:variable>
185
186 <xsl:sequence select="
187 $value,
188 map {
189 string(@xml:id): (0, $preceding_index)
190 }"/>
191 </xsl:accumulator-rule>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200192
Piotr Banski6a4a2522022-05-24 01:16:47 +0200193 </xsl:accumulator>
bansp5e2d1c02022-03-10 04:51:40 +0100194
banspe726b4a2022-03-28 05:47:45 +0200195 <!-- FUNCTIONS -->
196
bansp5f841732022-03-16 06:27:31 +0100197 <xsl:function name="f:compute_nesting" as="xs:integer">
banspd1bf1db2022-04-04 02:16:24 +0200198 <xsl:param name="node" as="element()"/>
bansp5f841732022-03-16 06:27:31 +0100199 <xsl:variable name="rel_depth"
200 select="count($node/ancestor-or-self::*[local-name(.) ne 'TEI'][local-name(.) ne 'teiCorpus'])"
201 as="xs:integer"/>
bansp5f841732022-03-16 06:27:31 +0100202 <xsl:sequence select="$rel_depth"/>
203 </xsl:function>
204
Piotr Banski92791a22022-05-26 01:41:10 +0200205 <xsl:function name="f:is_preceded_by_ws" as="xs:boolean">
bansp9dc10002022-05-17 22:33:34 +0200206 <xsl:param name="node" as="element()"/>
Piotr Banskifdc858a2022-05-25 02:40:32 +0200207 <xsl:param name="suppress_initial" as="xs:boolean"/>
Piotr Banski4f4c2d22022-05-19 01:44:32 +0200208
Piotr Banski92791a22022-05-26 01:41:10 +0200209 <xsl:choose>
210 <xsl:when test="local-name($node) eq 'seg'">
211 <xsl:choose>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200212 <xsl:when test="$node/tei:fs/tei:f[@name eq 'nps']">
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200213 <xsl:sequence select="fn:false()"/>
214 </xsl:when>
Piotr Banski92791a22022-05-26 01:41:10 +0200215 <xsl:when
216 test="$node/ancestor::tei:s[count(preceding-sibling::tei:s) eq 0] and $node/ancestor::tei:p[count(preceding-sibling::tei:p) eq 0] and not($node/preceding::tei:seg[count(@nkjp:rejected) eq 0])">
217 <xsl:sequence select="fn:false()"/>
218 <!-- the otherwise very costly check for preceding segs fires only if the first two are true, so it will have minimal search space -->
219 </xsl:when>
220 <xsl:when
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200221 test="$suppress_initial and $node/ancestor::tei:s/descendant::tei:seg[tei:fs/tei:f[@name eq 'disamb']][1]/@xml:id eq $node/@xml:id">
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200222 <xsl:sequence select="fn:false()"/>
223 </xsl:when>
Piotr Banski92791a22022-05-26 01:41:10 +0200224 <xsl:otherwise>
225 <xsl:sequence select="fn:true()"/>
226 </xsl:otherwise>
227 </xsl:choose>
228 </xsl:when>
229 <xsl:when test="local-name($node) eq 's'">
230 <xsl:choose>
231 <xsl:when test="exists($node/preceding-sibling::tei:s)">
232 <xsl:sequence select="fn:true()"/>
233 </xsl:when>
234 <xsl:otherwise>
235 <xsl:sequence
236 select="not($suppress_initial) and exists($node/ancestor::tei:p[1]/preceding-sibling::tei:p)"
237 />
238 </xsl:otherwise>
239 </xsl:choose>
240
241 </xsl:when>
242 <xsl:when test="local-name($node) eq 'p'">
243 <xsl:sequence select="exists($node/preceding-sibling::tei:p)"/>
244 </xsl:when>
245 <xsl:otherwise>
246 <xsl:message terminate="yes"
247 select="'Wrong argument passed to f:is_preceded_by_ws(): ' || local-name($node) || ' Only p, s, seg are allowed.'"
248 />
249 </xsl:otherwise>
250 </xsl:choose>
251 </xsl:function>
banspd1bf1db2022-04-04 02:16:24 +0200252
banspb5992532022-03-29 15:55:44 +0200253<!-- UTILITY TEMPLATES -->
254
bansp9103aab2022-03-19 05:10:21 +0100255 <xsl:template match="@default" mode="#all"/>
bansp97ba7ce2022-03-26 05:14:06 +0100256 <!-- this is to delete some auto-inserted attribute throughout -->
bansp9103aab2022-03-19 05:10:21 +0100257
banspb5992532022-03-29 15:55:44 +0200258 <!-- MAIN PROCESSING -->
259
bansp5e2d1c02022-03-10 04:51:40 +0100260 <xsl:template name="xsl:initial-template">
banspf2b24e62022-03-28 18:12:08 +0200261 <xsl:variable name="IDs_to_skip" select="tokenize($skip_docID,',')" as="xs:string*"/>
banspd1bf1db2022-04-04 02:16:24 +0200262
banspe726b4a2022-03-28 05:47:45 +0200263 <!-- we only want to call the template below once, and we process a random NKJP corpus file for that purpose,
bansp8f6700b2022-03-27 05:27:09 +0200264 because all we need is the main corpus header, and we can (should) get to that from any NKJP corpus document -->
265 <xsl:call-template name="create_corpus_header">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200266 <xsl:with-param name="text.doc" select="$collection_of_text[1]" as="document-node()"/>
bansp8f6700b2022-03-27 05:27:09 +0200267 <xsl:with-param name="target" select="$targetCorpusDir_slashed || 'header.xml'" as="xs:string"/>
268 </xsl:call-template>
269
banspe726b4a2022-03-28 05:47:45 +0200270 <xsl:for-each select="$collection_of_text">
271 <xsl:variable name="my_dir" as="xs:string" select="replace(base-uri(),'/text\.xml','')"/>
272 <xsl:variable name="my_textID" as="xs:string" select="tokenize($my_dir,'/')[last()]"/>
273 <xsl:variable name="ann_morphosyntax.uri" select="$my_dir || '/ann_morphosyntax.xml'" as="xs:string"/>
Piotr Banski081c5de2022-06-03 01:57:13 +0200274 <!--<xsl:variable name="ann_segmentation.uri" select="$my_dir || '/ann_segmentation.xml'" as="xs:string"/>-->
Piotr Banskic5950ce2022-05-27 15:07:08 +0200275 <xsl:variable name="ann_named.uri" select="$my_dir || '/ann_named.xml'" as="xs:string"/>
276 <xsl:variable name="ann_groups.uri" select="$my_dir || '/ann_groups.xml'" as="xs:string"/>
277 <xsl:variable name="ann_words.uri" select="$my_dir || '/ann_words.xml'" as="xs:string"/>
banspe726b4a2022-03-28 05:47:45 +0200278
banspf2b24e62022-03-28 18:12:08 +0200279 <xsl:choose>
280 <xsl:when test="$my_textID = $IDs_to_skip"/>
bansp9dc10002022-05-17 22:33:34 +0200281 <!-- this is a utility step, for when we want to ignore some texts for any reason (debugging, selective update) -->
banspf2b24e62022-03-28 18:12:08 +0200282 <xsl:otherwise>
Piotr Banski381e0c02022-06-09 02:39:40 +0200283
284 <xsl:message select="'Processing ' || $my_textID"/>
banspd1bf1db2022-04-04 02:16:24 +0200285
bansp9dc10002022-05-17 22:33:34 +0200286 <xsl:call-template name="process_single_sample">
Piotr Banskif9590692022-06-02 15:39:48 +0200287 <xsl:with-param name="text.doc" as="document-node()" select="."/>
288 <xsl:with-param name="ann_morphosyntax.doc" as="document-node()"
banspf2b24e62022-03-28 18:12:08 +0200289 select="doc($ann_morphosyntax.uri)"/>
Piotr Banski081c5de2022-06-03 01:57:13 +0200290<!-- <xsl:with-param name="ann_segmentation.xml" as="document-node()"
291 select="doc($ann_segmentation.uri)"/>-->
banspf2b24e62022-03-28 18:12:08 +0200292 <xsl:with-param name="my_textID" select="$my_textID" as="xs:string"/>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200293 <!-- the following parameters may happen to be null -->
Piotr Banskif9590692022-06-02 15:39:48 +0200294 <xsl:with-param name="ann_named.doc" as="document-node()*"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200295 select="if(fn:doc-available($ann_named.uri)) then doc($ann_named.uri) else ()"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200296 <xsl:with-param name="ann_groups.doc" as="document-node()*"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200297 select="if(fn:doc-available($ann_groups.uri)) then doc($ann_groups.uri) else ()"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200298 <xsl:with-param name="ann_words.doc" as="document-node()*"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200299 select="if(fn:doc-available($ann_words.uri)) then doc($ann_words.uri) else ()"/>
300
bansp9dc10002022-05-17 22:33:34 +0200301 </xsl:call-template>
banspf2b24e62022-03-28 18:12:08 +0200302 </xsl:otherwise>
303 </xsl:choose>
banspe726b4a2022-03-28 05:47:45 +0200304 </xsl:for-each>
bansp8f6700b2022-03-27 05:27:09 +0200305 </xsl:template>
306
307 <xsl:template name="process_single_sample">
Piotr Banskif9590692022-06-02 15:39:48 +0200308 <xsl:param name="text.doc" as="document-node()"/>
309 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
banspd1bf1db2022-04-04 02:16:24 +0200310 <xsl:param name="my_textID" as="xs:string" select="'0-BAD_textID'"/>
bansp9dc10002022-05-17 22:33:34 +0200311 <!-- empty textID should never happen, but if it does, it will be signalled at the top of the output -->
Piotr Banskif9590692022-06-02 15:39:48 +0200312 <xsl:param name="ann_named.doc" as="document-node()*"/>
313 <xsl:param name="ann_groups.doc" as="document-node()*"/>
314 <xsl:param name="ann_words.doc" as="document-node()*"/>
banspe726b4a2022-03-28 05:47:45 +0200315
316 <xsl:variable name="targetBaseDir" as="xs:string" select="$targetCorpusDir_slashed || $docID || '/' || $my_textID"/>
317
318 <xsl:variable name="compoundID" as="xs:string"
319 select="$corpusID || '_' || $docID || '.' || $my_textID"/>
320 <!-- this is what occurs in the text and data layers as @docid -->
321
bansp5e2d1c02022-03-10 04:51:40 +0100322 <xsl:call-template name="create_data">
Piotr Banski081c5de2022-06-03 01:57:13 +0200323 <xsl:with-param name="ann_morphosyntax.doc" select="$ann_morphosyntax.doc" as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200324 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
325 <xsl:with-param name="target" select="$targetBaseDir || '/data.xml'" as="xs:string"/>
bansp5f841732022-03-16 06:27:31 +0100326 </xsl:call-template>
327
Piotr Banski43b9db02022-06-03 02:38:42 +0200328 <xsl:call-template name="create_struct">
banspe726b4a2022-03-28 05:47:45 +0200329 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
Piotr Banski43b9db02022-06-03 02:38:42 +0200330 <xsl:with-param name="ann_morphosyntax.doc" select="$ann_morphosyntax.doc"
bansp5f841732022-03-16 06:27:31 +0100331 as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200332 <xsl:with-param name="target" select="$targetBaseDir || '/struct/structure.xml'" as="xs:string"
bansp5f841732022-03-16 06:27:31 +0100333 />
Piotr Banski43b9db02022-06-03 02:38:42 +0200334 </xsl:call-template>
Piotr Banski92791a22022-05-26 01:41:10 +0200335
Piotr Banskiba6cc632022-06-03 14:07:33 +0200336 <xsl:call-template name="create_morpho">
banspe726b4a2022-03-28 05:47:45 +0200337 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200338 <xsl:with-param name="ann_morphosyntax.doc" select="$ann_morphosyntax.doc"
bansp5f841732022-03-16 06:27:31 +0100339 as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200340 <xsl:with-param name="target" select="$targetBaseDir || '/nkjp/morpho.xml'" as="xs:string"/>
Piotr Banskiba6cc632022-06-03 14:07:33 +0200341 </xsl:call-template>
Piotr Banskia51907c2022-05-25 15:09:41 +0200342
Piotr Banskid2b78b82022-06-03 17:05:59 +0200343 <xsl:call-template name="create_text_header">
Piotr Banskif9590692022-06-02 15:39:48 +0200344 <xsl:with-param name="text.doc" select="$text.doc" as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200345 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
346 <xsl:with-param name="target" select="$targetBaseDir || '/header.xml'" as="xs:string"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200347 </xsl:call-template>
Piotr Banski6a4a2522022-05-24 01:16:47 +0200348
Piotr Banskif9590692022-06-02 15:39:48 +0200349 <xsl:if test="$ann_named.doc">
Piotr Banski381e0c02022-06-09 02:39:40 +0200350 <xsl:variable name="rev_lookup-seq" as="map(*)*">
Piotr Banskib28e5882022-06-08 20:41:20 +0200351 <xsl:for-each select="$ann_named.doc//tei:seg/tei:ptr">
352 <xsl:variable name="trg" as="xs:string" select="fn:substring-before(@target, '#')"/>
353 <!-- caution: as of 01-June-2022, some of the pointers are malformed (missing '#' when referencing locally).
Piotr Banskid2b78b82022-06-03 17:05:59 +0200354 so we need to act around it but also sustainably - in case that error gets corrected -->
Piotr Banski763b41f2022-06-02 01:13:23 +0200355
Piotr Banskib28e5882022-06-08 20:41:20 +0200356 <xsl:if test="fn:string-length($trg) and $trg eq 'ann_morphosyntax.xml'">
Piotr Banski763b41f2022-06-02 01:13:23 +0200357 <xsl:sequence>
358 <xsl:map-entry key="fn:substring-after(fn:string(@target), '#')" select="fn:current()"
359 />
360 </xsl:sequence>
Piotr Banskib28e5882022-06-08 20:41:20 +0200361 </xsl:if>
362 </xsl:for-each>
Piotr Banski763b41f2022-06-02 01:13:23 +0200363 </xsl:variable>
Piotr Banskib28e5882022-06-08 20:41:20 +0200364 <xsl:variable name="rev_lookup" as="map(*)"
Piotr Banski381e0c02022-06-09 02:39:40 +0200365 select="if(count($rev_lookup-seq)) then map:merge($rev_lookup-seq, map {'duplicates': 'combine'}) else map{}"/>
Piotr Banskib28e5882022-06-08 20:41:20 +0200366
Piotr Banski381e0c02022-06-09 02:39:40 +0200367 <xsl:if test="map:size($rev_lookup)">
368 <xsl:call-template name="create_named">
369 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
370 <xsl:with-param name="ann_morphosyntax.doc" select="$ann_morphosyntax.doc"
371 as="document-node()"/>
372 <xsl:with-param name="ann_named.doc" select="$ann_named.doc" as="document-node()"/>
373 <xsl:with-param name="target" select="$targetBaseDir || '/nkjp/named.xml'" as="xs:string"/>
374 <xsl:with-param name="rev_lookup" select="$rev_lookup" as="map(*)"/>
375 </xsl:call-template>
376 </xsl:if>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200377 </xsl:if>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200378
Piotr Banskib28e5882022-06-08 20:41:20 +0200379<!-- <xsl:if test="$ann_words.doc and $ann_groups.doc">
Piotr Banskic5950ce2022-05-27 15:07:08 +0200380 <xsl:call-template name="create_groups">
381 <xsl:with-param name="compoundID" select="$compoundID" as="xs:string"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200382 <xsl:with-param name="ann_morphosyntax.doc" select="$ann_morphosyntax.doc"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200383 as="document-node()"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200384 <xsl:with-param name="ann_words.doc" select="$ann_words.doc"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200385 as="document-node()"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200386 <xsl:with-param name="ann_groups.doc" select="$ann_groups.doc"
Piotr Banskic5950ce2022-05-27 15:07:08 +0200387 as="document-node()"/>
388 <xsl:with-param name="target" select="$targetBaseDir || '/nkjp/groups.xml'" as="xs:string"/>
389 </xsl:call-template>
Piotr Banskib28e5882022-06-08 20:41:20 +0200390 </xsl:if>-->
Piotr Banskic5950ce2022-05-27 15:07:08 +0200391
bansp5e2d1c02022-03-10 04:51:40 +0100392 </xsl:template>
393
394 <!-- ************************** data.xml ******************* -->
395
396 <xsl:template name="create_data">
Piotr Banski081c5de2022-06-03 01:57:13 +0200397 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200398 <xsl:param name="compoundID" as="xs:string"/>
bansp5f841732022-03-16 06:27:31 +0100399 <xsl:param name="target" as="xs:string"/>
bansp5e2d1c02022-03-10 04:51:40 +0100400 <!-- create the data.xml file -->
401 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
bansp5f841732022-03-16 06:27:31 +0100402 xpath-default-namespace="{$KorAP_namespace}" href="{$target}">
bansp5e2d1c02022-03-10 04:51:40 +0100403
Akron9a8ee3e2022-01-31 13:51:49 +0100404 <xsl:processing-instruction name="xml-model">href=&quot;text.rng&quot; type=&quot;application/xml&quot; schematypens=&quot;http://relaxng.org/ns/structure/1.0&quot;</xsl:processing-instruction>
bansp5e2d1c02022-03-10 04:51:40 +0100405 <xsl:element name="raw_text" namespace="{$KorAP_namespace}">
bansp5f841732022-03-16 06:27:31 +0100406 <xsl:attribute name="docid" select="$compoundID"/>
bansp5e2d1c02022-03-10 04:51:40 +0100407 <xsl:element name="metadata" namespace="{$KorAP_namespace}">
408 <xsl:attribute name="file" select="'metadata.xml'"/>
409 </xsl:element>
410
411 <xsl:element name="text" namespace="{$KorAP_namespace}">
bansp9dc10002022-05-17 22:33:34 +0200412 <xsl:variable name="content" as="xs:string+">
Piotr Banski081c5de2022-06-03 01:57:13 +0200413 <xsl:for-each select="$ann_morphosyntax.doc/tei:teiCorpus/tei:TEI/tei:text/tei:body/tei:p/tei:s/tei:seg[tei:fs/tei:f[@name eq 'disamb']]">
bansp9dc10002022-05-17 22:33:34 +0200414 <xsl:sequence select="
Piotr Banskifdc858a2022-05-25 02:40:32 +0200415 if (f:is_preceded_by_ws(.,false())) then
bansp9dc10002022-05-17 22:33:34 +0200416 ' '
417 else
Piotr Banski081c5de2022-06-03 01:57:13 +0200418 '', ./tei:fs/tei:f[@name eq 'orth']/tei:string"/>
bansp9dc10002022-05-17 22:33:34 +0200419 </xsl:for-each>
420 </xsl:variable>
421 <xsl:value-of select="string-join($content)"/>
bansp5e2d1c02022-03-10 04:51:40 +0100422 </xsl:element>
Akron9a8ee3e2022-01-31 13:51:49 +0100423 </xsl:element>
banspf79443e2022-02-25 14:25:33 +0100424 </xsl:result-document>
Akron9a8ee3e2022-01-31 13:51:49 +0100425 </xsl:template>
426
bansp5f841732022-03-16 06:27:31 +0100427 <!-- ************************** struct ******************* -->
428
429 <xsl:template name="create_struct">
banspe726b4a2022-03-28 05:47:45 +0200430 <xsl:param name="compoundID" as="xs:string"/>
Piotr Banski43b9db02022-06-03 02:38:42 +0200431 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
bansp5f841732022-03-16 06:27:31 +0100432 <xsl:param name="target" as="xs:string"/>
Piotr Banski4f4c2d22022-05-19 01:44:32 +0200433
bansp5f841732022-03-16 06:27:31 +0100434 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
435 xpath-default-namespace="http://ids-mannheim.de/ns/KorAP" href="{$target}">
436 <xsl:processing-instruction name="xml-model">href=&quot;span.rng&quot; type=&quot;application/xml&quot; schematypens=&quot;http://relaxng.org/ns/structure/1.0&quot;</xsl:processing-instruction>
437 <xsl:element name="layer" namespace="{$KorAP_namespace}">
438 <xsl:attribute name="docid" select="$compoundID"/>
439 <xsl:attribute name="version" select="$KorAP-XML_version"/>
440
441 <xsl:element name="spanList" namespace="{$KorAP_namespace}">
Piotr Banski43b9db02022-06-03 02:38:42 +0200442 <xsl:apply-templates select="$ann_morphosyntax.doc/tei:teiCorpus/tei:TEI/tei:text" mode="struct"/>
bansp5f841732022-03-16 06:27:31 +0100443 </xsl:element>
444 </xsl:element>
445 </xsl:result-document>
446 </xsl:template>
447
Piotr Banski43b9db02022-06-03 02:38:42 +0200448 <xsl:template match="tei:text | tei:body | tei:p | tei:s | tei:seg[tei:fs/tei:f[@name eq 'disamb']]" mode="struct">
Piotr Banski09096ee2022-05-25 13:41:03 +0200449 <xsl:variable name="offsets" as="xs:integer+">
Piotr Banski43b9db02022-06-03 02:38:42 +0200450 <xsl:sequence select="map:get(fn:accumulator-after('morpho-offsets')[last()], string(@xml:id))"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200451 </xsl:variable>
Piotr Banski6a4a2522022-05-24 01:16:47 +0200452
bansp5f841732022-03-16 06:27:31 +0100453 <xsl:variable name="my_name" select="local-name()" as="xs:string"/>
Piotr Banskie1ac5202022-05-30 21:25:21 +0200454 <xsl:variable name="my_index" select="fn:accumulator-before('element-index')" as="xs:integer"/>
bansp3e5b20c2022-03-18 20:22:31 +0100455
bansp5f841732022-03-16 06:27:31 +0100456 <xsl:element name="span" namespace="{$KorAP_namespace}">
457 <xsl:attribute name="id" select="'s' || $my_index"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200458 <xsl:attribute name="from" select="$offsets[1]"/>
459 <xsl:attribute name="to" select="$offsets[2]"/>
bansp5f841732022-03-16 06:27:31 +0100460 <xsl:attribute name="l" select="f:compute_nesting(.)"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200461 <xsl:if test="local-name() eq 'seg' and $SHOW_ORTH_IN_STRUCT">
Piotr Banskid2b78b82022-06-03 17:05:59 +0200462 <xsl:comment select="
463 (if (tei:fs/tei:f[@name eq 'nps']) then
464 ' '
465 else
466 ' _') || tei:fs/tei:f[@name eq 'orth']/tei:string"/>
Piotr Banski09096ee2022-05-25 13:41:03 +0200467 </xsl:if>
bansp5f841732022-03-16 06:27:31 +0100468 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
Piotr Banskifdc858a2022-05-25 02:40:32 +0200469 <xsl:attribute name="type" select="'struct'"></xsl:attribute> <!-- STRUCT vs. LEX for morpho -->
bansp5f841732022-03-16 06:27:31 +0100470 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
bansp3e5b20c2022-03-18 20:22:31 +0100471 <xsl:attribute name="name" select="'name'"/>
472 <xsl:value-of select="local-name()"/>
bansp5f841732022-03-16 06:27:31 +0100473 </xsl:element>
474 <xsl:if test="count(@*)">
475 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
476 <xsl:attribute name="name" select="'attr'"/>
477 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
478 <xsl:attribute name="type" select="'attr'"/>
479 <xsl:for-each select="@*">
480 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
481 <xsl:attribute name="name" select="local-name(.)"/>
482 <xsl:value-of select="."/>
483 </xsl:element>
484 </xsl:for-each>
485 </xsl:element>
486 </xsl:element>
487 </xsl:if>
488 </xsl:element>
489 </xsl:element>
Piotr Banskia51907c2022-05-25 15:09:41 +0200490 <xsl:apply-templates mode="struct"/>
bansp5f841732022-03-16 06:27:31 +0100491 </xsl:template>
492
493 <!-- ************************** morpho ******************* -->
494
495 <xsl:template name="create_morpho">
banspe726b4a2022-03-28 05:47:45 +0200496 <xsl:param name="compoundID" as="xs:string"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200497 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
bansp5f841732022-03-16 06:27:31 +0100498 <xsl:param name="target" as="xs:string"/>
499
500 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
501 xpath-default-namespace="http://ids-mannheim.de/ns/KorAP" href="{$target}">
502 <xsl:processing-instruction name="xml-model">href=&quot;span.rng&quot; type=&quot;application/xml&quot; schematypens=&quot;http://relaxng.org/ns/structure/1.0&quot;</xsl:processing-instruction>
bansp3e5b20c2022-03-18 20:22:31 +0100503 <xsl:element name="layer" namespace="{$KorAP_namespace}">
504 <xsl:attribute name="docid" select="$compoundID"/>
505 <xsl:attribute name="version" select="$KorAP-XML_version"/>
506
507 <xsl:element name="spanList" namespace="{$KorAP_namespace}">
Piotr Banskid2b78b82022-06-03 17:05:59 +0200508 <xsl:apply-templates select="$ann_morphosyntax.doc/tei:teiCorpus/tei:TEI/tei:text/tei:body/tei:p/tei:s/tei:seg" mode="morpho"/>
bansp3e5b20c2022-03-18 20:22:31 +0100509 </xsl:element>
510 </xsl:element>
bansp5f841732022-03-16 06:27:31 +0100511 </xsl:result-document>
512 </xsl:template>
513
Piotr Banskiba6cc632022-06-03 14:07:33 +0200514 <xsl:template match="tei:seg[tei:fs/tei:f[@name eq 'disamb']]" mode="morpho">
515
Piotr Banskia51907c2022-05-25 15:09:41 +0200516 <!-- it's so spread out because I wanted to make sure to be able to look up the individual
517 constituent values, should anything go wrong; it might get compacted at some point, but
518 the increase in efficiency will probably be minimal, compared to the decrease of readability -->
519 <xsl:variable name="offsets" as="xs:integer+">
Piotr Banskiba6cc632022-06-03 14:07:33 +0200520 <xsl:sequence select="map:get(fn:accumulator-after('morpho-offsets')[last()], string(@xml:id))"/>
Piotr Banskia51907c2022-05-25 15:09:41 +0200521 </xsl:variable>
Piotr Banskiba6cc632022-06-03 14:07:33 +0200522
Piotr Banskiba6cc632022-06-03 14:07:33 +0200523 <xsl:variable name="my_disamb" select="tei:fs/tei:f[@name eq 'disamb']" as="node()"/>
bansp3e5b20c2022-03-18 20:22:31 +0100524 <xsl:variable name="my_choice-id" select="substring-after($my_disamb//tei:f[@name eq 'choice']/@fVal,'#')" as="xs:string"/>
Piotr Banskiba6cc632022-06-03 14:07:33 +0200525 <xsl:variable name="my_choice-lex" select="tei:fs/tei:f[@name eq 'interps']/tei:fs[@type eq 'lex'][descendant::tei:symbol[@xml:id eq $my_choice-id]]" as="node()"/>
bansp3e5b20c2022-03-18 20:22:31 +0100526 <xsl:variable name="chosen-msd" as="xs:string" select="$my_choice-lex/descendant::tei:symbol[@xml:id eq $my_choice-id]/@value"/>
Piotr Banskie1ac5202022-05-30 21:25:21 +0200527 <xsl:variable name="my_index" select="fn:accumulator-before('element-index')" as="xs:integer"/>
bansp3e5b20c2022-03-18 20:22:31 +0100528
bansp3e5b20c2022-03-18 20:22:31 +0100529 <xsl:element name="span" namespace="{$KorAP_namespace}">
Piotr Banskia51907c2022-05-25 15:09:41 +0200530 <xsl:attribute name="id" select="'m' || $my_index"/>
531 <xsl:attribute name="from" select="$offsets[1]"/>
532 <xsl:attribute name="to" select="$offsets[2]"/>
bansp3e5b20c2022-03-18 20:22:31 +0100533 <xsl:attribute name="l" select="f:compute_nesting(.)"/>
534 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
535 <xsl:attribute name="type" select="'lex'"/>
536 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
537 <xsl:attribute name="name" select="'lex'"/>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200538 <xsl:if test="$SHOW_REDUNDANT_ORTH">
539 <xsl:comment select="
Piotr Banskiba6cc632022-06-03 14:07:33 +0200540 (if (tei:fs/tei:f[@name eq 'nps']) then
541 ' '
542 else
543 ' _') || tei:fs/tei:f[@name eq 'orth']/tei:string"/>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200544 </xsl:if>
bansp3e5b20c2022-03-18 20:22:31 +0100545 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
bansp3e5b20c2022-03-18 20:22:31 +0100546 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
Piotr Banskia44cd7a2022-06-03 19:19:50 +0200547 <xsl:attribute name="name" select="'orig'"/>
548 <xsl:value-of select="tei:fs/tei:f[@name eq 'orth']/tei:string"/>
549 </xsl:element>
550 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
bansp3e5b20c2022-03-18 20:22:31 +0100551 <xsl:attribute name="name" select="'lemma'"/>
552 <xsl:value-of select="$my_choice-lex/tei:f[@name eq 'base']/tei:string"/>
553 </xsl:element>
554 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
555 <xsl:attribute name="name" select="'pos'"/>
556 <xsl:value-of select="$my_choice-lex/tei:f[@name eq 'ctag']/tei:symbol/@value"/>
557 </xsl:element>
558 <xsl:if test="string-length($chosen-msd)">
559 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
560 <xsl:attribute name="name" select="'msd'"/>
561 <xsl:value-of select="$chosen-msd"/>
562 </xsl:element>
563 </xsl:if>
Piotr Banskiba6cc632022-06-03 14:07:33 +0200564 <xsl:if test="tei:fs/tei:f[@name eq 'nps']">
bansp3e5b20c2022-03-18 20:22:31 +0100565 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
566 <xsl:attribute name="name" select="'join'"/>
567 <xsl:value-of select="'left'"/>
568 </xsl:element>
569 </xsl:if>
570 </xsl:element>
571 </xsl:element>
Piotr Banskia44cd7a2022-06-03 19:19:50 +0200572 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
573 <xsl:attribute name="name" select="'interps'"/>
574 <xsl:for-each select="tei:fs/tei:f[@name eq 'interps']/tei:fs">
575 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
576 <xsl:attribute name="type" select="'alt'"/>
577 <xsl:if test="tei:f[@name eq 'msd']//tei:symbol/@xml:id = $my_choice-id">
578 <xsl:attribute name="n" select="'choice'"/>
579 </xsl:if>
580 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
581 <xsl:attribute name="name" select="'lemma'"/>
582 <xsl:value-of select="tei:f[@name eq 'base']/tei:string"/>
583 </xsl:element>
584 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
585 <xsl:attribute name="name" select="'pos'"/>
586 <xsl:value-of select="tei:f[@name eq 'ctag']/tei:symbol/@value"/>
587 </xsl:element>
588 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
589 <xsl:attribute name="name" select="'msd'"/>
590 <xsl:apply-templates select="tei:f[@name eq 'msd']/*" mode="inside-interps">
591 <xsl:with-param name="choice" select="$my_choice-id" as="xs:string" tunnel="yes"/>
592 </xsl:apply-templates>
593 </xsl:element>
594 </xsl:element>
595 </xsl:for-each>
596 </xsl:element>
bansp3e5b20c2022-03-18 20:22:31 +0100597 </xsl:element>
598 </xsl:element>
bansp3e5b20c2022-03-18 20:22:31 +0100599 </xsl:template>
banspe726b4a2022-03-28 05:47:45 +0200600
Piotr Banskia44cd7a2022-06-03 19:19:50 +0200601 <xsl:template match="tei:vAlt" mode="inside-interps">
602 <xsl:copy select="." copy-namespaces="no">
603 <xsl:apply-templates mode="inside-interps" select="*"/>
604 </xsl:copy>
605 </xsl:template>
606
607 <xsl:template match="tei:symbol" mode="inside-interps">
608 <xsl:param name="choice" as="xs:string" tunnel="yes"/>
609 <xsl:copy select="." copy-namespaces="no">
610 <xsl:attribute name="value" select="
611 if (@value eq '') then
612 0
613 else
614 @value"/>
615<!-- the check above is to appease the validator, which won't allow for empty values of @value -->
616 <xsl:if test="@xml:id eq $choice">
617 <xsl:attribute name="n" select="'choice'"/>
618 </xsl:if>
619 </xsl:copy>
620 </xsl:template>
621
Piotr Banskic5950ce2022-05-27 15:07:08 +0200622 <!-- ************************** named entities ******************* -->
623
624 <xsl:template name="create_named">
625 <xsl:param name="compoundID" as="xs:string"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200626 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
627 <xsl:param name="ann_named.doc" as="document-node()"/>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200628 <xsl:param name="target" as="xs:string"/>
Piotr Banski763b41f2022-06-02 01:13:23 +0200629 <xsl:param name="rev_lookup" as="map(*)"/>
630
Piotr Banskic5950ce2022-05-27 15:07:08 +0200631 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
632 xpath-default-namespace="http://ids-mannheim.de/ns/KorAP" href="{$target}">
633 <xsl:processing-instruction name="xml-model">href=&quot;span.rng&quot; type=&quot;application/xml&quot; schematypens=&quot;http://relaxng.org/ns/structure/1.0&quot;</xsl:processing-instruction>
634 <xsl:element name="layer" namespace="{$KorAP_namespace}">
635 <xsl:attribute name="docid" select="$compoundID"/>
636 <xsl:attribute name="version" select="$KorAP-XML_version"/>
637
638 <xsl:element name="spanList" namespace="{$KorAP_namespace}">
Piotr Banskif9590692022-06-02 15:39:48 +0200639 <xsl:apply-templates select="$ann_morphosyntax.doc//tei:text" mode="named">
640 <xsl:with-param name="ann_named.doc" select="$ann_named.doc" as="document-node()" tunnel="yes"/>
Piotr Banski763b41f2022-06-02 01:13:23 +0200641 <xsl:with-param name="rev_lookup" select="$rev_lookup" as="map(*)" tunnel="yes"/>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200642 </xsl:apply-templates>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200643 </xsl:element>
644 </xsl:element>
645 </xsl:result-document>
646 </xsl:template>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200647
648 <xsl:template match="tei:seg" mode="named"/>
649
650 <xsl:template match="tei:seg[tei:fs[tei:f[@name eq 'disamb']]]" mode="named">
Piotr Banskif9590692022-06-02 15:39:48 +0200651 <xsl:param name="ann_named.doc" as="document-node()" tunnel="yes"/>
Piotr Banski763b41f2022-06-02 01:13:23 +0200652 <xsl:param name="rev_lookup" as="map(*)" tunnel="yes"/>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200653
654 <xsl:variable name="offsets" as="xs:integer+">
655 <xsl:sequence select="map:get(fn:accumulator-after('morpho-offsets')[last()], string(@xml:id))"/>
656 </xsl:variable>
657
Piotr Banski763b41f2022-06-02 01:13:23 +0200658 <xsl:variable name="ptr" select="map:get($rev_lookup,fn:string(@xml:id))" as="element(tei:ptr)*"/>
659 <!-- it's an element, because we need to see where it stands in a sequence... -->
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200660
Piotr Banski763b41f2022-06-02 01:13:23 +0200661 <xsl:if test="$ptr">
662 <xsl:variable name="my_id" select="@xml:id" as="xs:string"/>
663 <xsl:variable name="my_index" select="fn:accumulator-before('element-index')" as="xs:integer"/>
664
665 <xsl:element name="span" namespace="{$KorAP_namespace}">
666 <xsl:attribute name="id" select="'n' || $my_index"/>
667 <xsl:attribute name="from" select="$offsets[1]"/>
668 <xsl:attribute name="to" select="$offsets[2]"/>
669 <xsl:attribute name="l" select="f:compute_nesting(.)"/>
670 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
671 <xsl:attribute name="type" select="'ne'"/>
672 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
673 <xsl:attribute name="name" select="'ne'"/>
Piotr Banskid2b78b82022-06-03 17:05:59 +0200674 <xsl:if test="$SHOW_REDUNDANT_ORTH">
675 <xsl:comment select="
676 (if (tei:fs/tei:f[@name eq 'nps']) then
677 ' '
678 else
679 ' _') || tei:fs/tei:f[@name eq 'orth']/tei:string"/>
680 </xsl:if>
Piotr Banski763b41f2022-06-02 01:13:23 +0200681 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
682 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
683 <xsl:attribute name="name" select="'complex-ent'"/>
684 <xsl:for-each select="$ptr">
685 <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
686 <xsl:attribute name="type" select="'complex-ent'"/>
687 <xsl:for-each select="parent::tei:seg/tei:fs[1]/tei:f">
688 <xsl:if test="@name eq 'type' or @name eq 'subtype'">
689 <xsl:copy-of select="." copy-namespaces="no"/>
690 </xsl:if>
691 </xsl:for-each>
692 <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
693 <xsl:attribute name="name" select="'nkjp-named'"/>
694 <xsl:copy-of select="parent::tei:seg/tei:fs[1]" copy-namespaces="no"/>
695 </xsl:element>
696 </xsl:element>
697 </xsl:for-each>
698
699 </xsl:element>
700
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200701 </xsl:element>
702 </xsl:element>
703 </xsl:element>
704 </xsl:element>
Piotr Banski763b41f2022-06-02 01:13:23 +0200705 </xsl:if>
Piotr Banski65a6d0b2022-05-31 17:23:08 +0200706 </xsl:template>
707
Piotr Banskic5950ce2022-05-27 15:07:08 +0200708
709 <!-- ************************** syntactic chunks ******************* -->
710
711 <xsl:template name="create_groups">
712 <xsl:param name="compoundID" as="xs:string"/>
Piotr Banskif9590692022-06-02 15:39:48 +0200713 <xsl:param name="ann_morphosyntax.doc" as="document-node()"/>
714 <xsl:param name="ann_words.doc" as="document-node()"/>
715 <xsl:param name="ann_groups.doc" as="document-node()"/>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200716 <xsl:param name="target" as="xs:string"/>
717
718 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
719 xpath-default-namespace="http://ids-mannheim.de/ns/KorAP" href="{$target}">
720 <xsl:processing-instruction name="xml-model">href=&quot;span.rng&quot; type=&quot;application/xml&quot; schematypens=&quot;http://relaxng.org/ns/structure/1.0&quot;</xsl:processing-instruction>
721 <xsl:element name="layer" namespace="{$KorAP_namespace}">
722 <xsl:attribute name="docid" select="$compoundID"/>
723 <xsl:attribute name="version" select="$KorAP-XML_version"/>
724
725 <xsl:element name="spanList" namespace="{$KorAP_namespace}">
Piotr Banskid2b78b82022-06-03 17:05:59 +0200726 <!--<xsl:apply-templates select="$ann_morphosyntax.doc//tei:text" mode="groups">
Piotr Banskif9590692022-06-02 15:39:48 +0200727 <xsl:with-param name="ann_words.doc" select="$ann_words.doc" as="document-node()" tunnel="yes"/>
728 <xsl:with-param name="ann_groups.doc" select="$ann_groups.doc" as="document-node()" tunnel="yes"/>
Piotr Banskic5950ce2022-05-27 15:07:08 +0200729 </xsl:apply-templates>-->
730 </xsl:element>
731 </xsl:element>
732 </xsl:result-document>
733 </xsl:template>
734
bansp5f841732022-03-16 06:27:31 +0100735 <!-- ************************** TEXT header ******************* -->
736
737 <xsl:template name="create_text_header">
Piotr Banskif9590692022-06-02 15:39:48 +0200738 <xsl:param name="text.doc" as="document-node()"/>
banspe726b4a2022-03-28 05:47:45 +0200739 <xsl:param name="compoundID" as="xs:string"/>
bansp5f841732022-03-16 06:27:31 +0100740 <xsl:param name="target" as="xs:string"/>
741
742 <!-- create the local header.xml file -->
743 <xsl:result-document encoding="UTF-8" method="xml" indent="yes"
744 xpath-default-namespace="http://ids-mannheim.de/ns/KorAP" href="{$target}">
745
746 <idsHeader type="document" pattern="text" status="new" version="1.1" TEIform="teiHeader">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200747 <xsl:apply-templates select="$text.doc//tei:TEI/tei:teiHeader/tei:*" mode="text-header">
banspe726b4a2022-03-28 05:47:45 +0200748 <xsl:with-param name="compoundID" as="xs:string" select="$compoundID" tunnel="yes"/>
749 </xsl:apply-templates>
bansp5f841732022-03-16 06:27:31 +0100750 </idsHeader>
751 </xsl:result-document>
752 </xsl:template>
753
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200754 <xsl:template match="tei:fileDesc" mode="text-header">
bansp9103aab2022-03-19 05:10:21 +0100755 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200756 <xsl:apply-templates mode="text-header"/>
bansp9103aab2022-03-19 05:10:21 +0100757 </xsl:element>
bansp5f841732022-03-16 06:27:31 +0100758 </xsl:template>
759
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200760 <xsl:template match="tei:title" mode="text-header">
bansp5f841732022-03-16 06:27:31 +0100761 <t.title>
762 <xsl:apply-templates/>
763 </t.title>
764 </xsl:template>
765
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200766 <xsl:template match="tei:titleStmt" mode="text-header">
banspe726b4a2022-03-28 05:47:45 +0200767 <xsl:param name="compoundID" as="xs:string" tunnel="yes"/>
bansp5f841732022-03-16 06:27:31 +0100768 <titleStmt>
769 <textSigle>
banspe726b4a2022-03-28 05:47:45 +0200770 <xsl:value-of select="$compoundID"/>
bansp5f841732022-03-16 06:27:31 +0100771 </textSigle>
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200772 <xsl:apply-templates mode="text-header"/>
bansp5f841732022-03-16 06:27:31 +0100773 </titleStmt>
774 </xsl:template>
775
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200776 <xsl:template match="tei:publicationStmt" mode="text-header">
bansp9103aab2022-03-19 05:10:21 +0100777 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200778 <xsl:apply-templates mode="text-header"/>
bansp9103aab2022-03-19 05:10:21 +0100779 </xsl:element>
780 </xsl:template>
781
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200782 <xsl:template match="tei:availability" mode="text-header">
bansp9103aab2022-03-19 05:10:21 +0100783 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200784 <xsl:apply-templates mode="text-header" select="@* | *"/>
bansp9103aab2022-03-19 05:10:21 +0100785 </xsl:element>
786 </xsl:template>
787
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200788 <xsl:template match="tei:profileDesc" mode="text-header">
bansp9103aab2022-03-19 05:10:21 +0100789 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200790 <xsl:apply-templates mode="text-header"/>
bansp9103aab2022-03-19 05:10:21 +0100791 </xsl:element>
792 </xsl:template>
bansp5f841732022-03-16 06:27:31 +0100793
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200794 <xsl:template match="tei:textClass" mode="text-header">
bansp9103aab2022-03-19 05:10:21 +0100795 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200796 <xsl:apply-templates mode="text-header" select="@* | *"/>
bansp9103aab2022-03-19 05:10:21 +0100797 </xsl:element>
798 </xsl:template>
799
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200800 <xsl:template match="tei:catRef" mode="text-header corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100801 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200802 <xsl:apply-templates mode="text-header" select="@* | *"/>
bansp9103aab2022-03-19 05:10:21 +0100803 </xsl:element>
804 </xsl:template>
805
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200806 <xsl:template match="@status | @scheme | @target | @type | @xml:id[ancestor::tei:classDecl] | @xml:lang" mode="text-header corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100807 <xsl:copy-of select="."/>
808 </xsl:template>
809
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200810 <xsl:template match="tei:p" mode="text-header corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100811 <xsl:element name="{local-name()}">
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200812 <xsl:apply-templates mode="text_inside_header"/>
bansp9103aab2022-03-19 05:10:21 +0100813 </xsl:element>
814 </xsl:template>
815
816
817 <!-- OPTIMIZATION has to take modes into account -->
bansp5e2d1c02022-03-10 04:51:40 +0100818 <!-- ************************** CORPUS header ******************* -->
819 <xsl:template name="create_corpus_header">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200820 <xsl:param name="text.doc" as="document-node()"/>
bansp5f841732022-03-16 06:27:31 +0100821 <xsl:param name="target" as="xs:string"/>
bansp5e2d1c02022-03-10 04:51:40 +0100822
823 <!-- create the corpus-level header.xml file -->
bansp5f841732022-03-16 06:27:31 +0100824 <xsl:result-document encoding="UTF-8" method="xml" indent="yes" href="{$target}">
bansp5e2d1c02022-03-10 04:51:40 +0100825
826 <!--doctype-public="{$publicDoctypeI5}"
827 doctype-system="{$systemDoctypeI5}">
828 these are, sadly, useless
829 -->
830
831 <idsHeader type="corpus" pattern="text" status="new" version="1.1" TEIform="teiHeader">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200832 <xsl:apply-templates select="$text.doc/tei:teiCorpus/tei:teiHeader/tei:*" mode="corpus-header"/>
bansp5e2d1c02022-03-10 04:51:40 +0100833 </idsHeader>
834 </xsl:result-document>
835 </xsl:template>
836
Piotr Banskifaa910f2022-06-03 00:46:29 +0200837 <xsl:template match="tei:fileDesc" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100838 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200839 <xsl:apply-templates mode="corpus-header"/>
bansp9103aab2022-03-19 05:10:21 +0100840 </xsl:element>
bansp5e2d1c02022-03-10 04:51:40 +0100841 </xsl:template>
bansp9103aab2022-03-19 05:10:21 +0100842
bansp5e2d1c02022-03-10 04:51:40 +0100843
Piotr Banskifaa910f2022-06-03 00:46:29 +0200844 <xsl:template match="tei:title" mode="corpus-header">
bansp5e2d1c02022-03-10 04:51:40 +0100845 <c.title>
Piotr Banskifaa910f2022-06-03 00:46:29 +0200846 <xsl:apply-templates mode="corpus-header" select="@*"/>
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200847 <xsl:apply-templates mode="text_inside_header"/>
bansp5e2d1c02022-03-10 04:51:40 +0100848 </c.title>
849 </xsl:template>
850
Piotr Banskifaa910f2022-06-03 00:46:29 +0200851 <xsl:template match="tei:titleStmt" mode="corpus-header">
bansp5e2d1c02022-03-10 04:51:40 +0100852 <titleStmt>
853 <korpusSigle>
854 <xsl:value-of select="$corpusID"/>
855 </korpusSigle>
Piotr Banskifaa910f2022-06-03 00:46:29 +0200856 <xsl:apply-templates mode="corpus-header"/>
bansp5e2d1c02022-03-10 04:51:40 +0100857 </titleStmt>
858 </xsl:template>
859
Piotr Banskifaa910f2022-06-03 00:46:29 +0200860 <xsl:template match="tei:publicationStmt" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100861 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200862 <xsl:apply-templates mode="corpus-header"/>
bansp9103aab2022-03-19 05:10:21 +0100863 </xsl:element>
864 </xsl:template>
865
Piotr Banskifaa910f2022-06-03 00:46:29 +0200866 <xsl:template match="tei:availability" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100867 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200868 <xsl:apply-templates mode="corpus-header" select="@* | *"/>
bansp9103aab2022-03-19 05:10:21 +0100869 </xsl:element>
870 </xsl:template>
871
Piotr Banskifaa910f2022-06-03 00:46:29 +0200872 <xsl:template match="tei:encodingDesc" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100873 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200874 <xsl:apply-templates mode="corpus-header"/>
bansp9103aab2022-03-19 05:10:21 +0100875 </xsl:element>
876 </xsl:template>
877
Piotr Banskifaa910f2022-06-03 00:46:29 +0200878 <xsl:template match="tei:classDecl | tei:taxonomy | tei:category | tei:taxonomy/tei:bibl" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100879 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200880 <xsl:apply-templates mode="corpus-header" select="@* | *"/>
bansp9103aab2022-03-19 05:10:21 +0100881 </xsl:element>
882 </xsl:template>
883
Piotr Banskifaa910f2022-06-03 00:46:29 +0200884 <xsl:template match="tei:bibl/tei:title | tei:edition | tei:desc" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100885 <xsl:element name="{local-name()}">
Piotr Banskifaa910f2022-06-03 00:46:29 +0200886 <xsl:apply-templates mode="corpus-header" select="@*"/>
Piotr Banskia0a9fc02022-06-03 01:20:18 +0200887 <xsl:apply-templates mode="text_inside_header"/>
bansp9103aab2022-03-19 05:10:21 +0100888 </xsl:element>
889 </xsl:template>
890<!--
Piotr Banskifaa910f2022-06-03 00:46:29 +0200891 <xsl:template match="tei:textClass" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100892 <xsl:element name="{local-name()}">
893 <xsl:apply-templates mode="corpus" select="@* | *"/>
894 </xsl:element>
895 </xsl:template>
896
Piotr Banskifaa910f2022-06-03 00:46:29 +0200897 <xsl:template match="tei:catRef" mode="corpus-header">
bansp9103aab2022-03-19 05:10:21 +0100898 <xsl:element name="{local-name()}">
899 <xsl:apply-templates mode="corpus" select="@* | *"/>
900 </xsl:element>
901 </xsl:template>
902-->
bansp5e2d1c02022-03-10 04:51:40 +0100903
904
905
906 <!-- this template can be called by the XSPEC test; TODO: find a way to call the main() template directly -->
907 <!-- I have not fully handled the param transmission, which would have to be kludged in just for the sake of XSPec,
908 because I'm disabling this for now, due to XSpec design issues; relevant links, a.o.:
909
910 https://stackoverflow.com/questions/64933277/what-is-the-cause-of-error-cannot-execute-xslresult-document-while-evaluating
911 https://www.balisage.net/Proceedings/vol25/html/Galtman01/BalisageVol25-Galtman01.html
912
913 In short: the internal design of XSpec forces kludges when one wants to use xsl:result-document in their stylesheets. But I don't
914 want to be strangled by kludges at the beginning of work, I've already lost quite a bit of time on this investigation,
915 I will therefore "just code" and then can think of externalizing bits of templates if we want to play with tests. For now,
916 I don't want to have to handle context items is a special way inside variables, etc., because I'm not sure it's worth it.
917
918 -->
919 <!--<xsl:template name="test_full">
920 <xsl:param name="corpusID"/>
921 <xsl:param name="docID"/>
922 <xsl:param name="textID"/>
923 <xsl:call-template name="xsl:initial-template"/>
924 </xsl:template>-->
925
Akron9a8ee3e2022-01-31 13:51:49 +0100926</xsl:stylesheet>
Piotr Banski6a4a2522022-05-24 01:16:47 +0200927
Piotr Banskifdc858a2022-05-25 02:40:32 +0200928<!-- template for serializing maps in messages <xsl:message select="('map:',serialize($map, map{'method':'adaptive'}))"/> -->