forked from DARIAH-SI/siParl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drama2speech.xsl
1171 lines (1112 loc) · 59.7 KB
/
drama2speech.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="xs tei"
version="2.0">
<!-- izhodiščni dokument je vsakokratni drama/*-list.xml (mogoče naredim skupni seznam datotek?) -->
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="terms" xmlns="http://www.siparl.si" xmlns:parl="http://www.siparl.si">
<term n="1" start="1992-12-23" end="1996-11-28">1. mandat (1992-1996)</term>
<term n="2" start="1996-11-28" end="2000-10-27">2. mandat (1996-2000)</term>
<term n="3" start="2000-10-27" end="2004-10-22">3. mandat (2000-2004)</term>
<term n="4" start="2004-10-22" end="2008-10-15">4. mandat (2004-2008)</term>
<term n="5" start="2008-10-15" end="2011-12-15">5. mandat (2008-2011)</term>
<term n="6" start="2011-12-16" end="2014-08-01">6. mandat (2011-2014)</term>
<term n="7" start="2014-08-01" end="2018-06-22">7. mandat (2014-2018)</term>
</xsl:variable>
<xsl:param name="taxonomy-legislature">
<taxonomy>
<desc xml:lang="en">Legislature</desc>
<desc xml:lang="sl">Zakonodajna oblast</desc>
<category>
<desc xml:lang="en">Geo-political or administrative units</desc>
<desc xml:lang="sl">Geopolitične ali upravne enote</desc>
<category xml:id="parl.supranational">
<catDesc xml:lang="en"><term>Supranational legislature</term></catDesc>
<catDesc xml:lang="sl"><term>Nadnacionalna zakonodajna oblast</term></catDesc>
</category>
<category xml:id="parl.national">
<catDesc xml:lang="en"><term>National legislature</term></catDesc>
<catDesc xml:lang="sl"><term>Nacionalna zakonodajna oblast</term></catDesc>
</category>
<category xml:id="parl.regional">
<catDesc xml:lang="en"><term>Regional legislature</term></catDesc>
<catDesc xml:lang="sl"><term>Regionalna zakonodajna oblast</term></catDesc>
</category>
<category xml:id="parl.local">
<catDesc xml:lang="en"><term>Local legislature</term></catDesc>
<catDesc xml:lang="sl"><term>Lokalna zakonodajna oblast</term></catDesc>
</category>
</category>
<category>
<desc xml:lang="en">Organization</desc>
<desc xml:lang="sl">Organiziranost</desc>
<category>
<desc xml:lang="en">Chambers</desc>
<desc xml:lang="sl">Zbori</desc>
<category xml:id="par.uni">
<catDesc xml:lang="en"><term>Unicameralism</term></catDesc>
<catDesc xml:lang="sl"><term>Enodomen</term></catDesc>
</category>
<category xml:id="par.bi">
<catDesc xml:lang="en"><term>Bicameralism</term></catDesc>
<catDesc xml:lang="sl"><term>Dvodomen</term></catDesc>
<category xml:id="par.upper">
<catDesc xml:lang="en"><term>Upper house</term></catDesc>
<catDesc xml:lang="sl"><term>Zgornji dom</term></catDesc>
</category>
<category xml:id="par.lower">
<catDesc xml:lang="en"><term>Lower house</term></catDesc>
<catDesc xml:lang="sl"><term>Spodnji dom</term></catDesc>
</category>
</category>
<category xml:id="par.multi">
<catDesc xml:lang="en"><term>Multicameralism</term></catDesc>
<catDesc xml:lang="sl"><term>Večdomen</term></catDesc>
<category xml:id="par.chamber">
<catDesc xml:lang="en"><term>Chamber</term></catDesc>
<catDesc xml:lang="sl"><term>Zbor</term></catDesc>
</category>
</category>
</category>
<category xml:id="parl.committee">
<catDesc xml:lang="en"><term>Committee</term></catDesc>
<catDesc xml:lang="sl"><term>Delovno telo</term></catDesc>
<category xml:id="parl.committee.standing">
<catDesc xml:lang="en"><term>Standing committee</term></catDesc>
<catDesc xml:lang="sl"><term>Stalno delovno telo</term></catDesc>
</category>
<category xml:id="parl.committee.special">
<catDesc xml:lang="en"><term>Special committee</term></catDesc>
<catDesc xml:lang="sl"><term>Začasno delovno telo</term></catDesc>
</category>
<category xml:id="parl.committee.inquiry">
<catDesc xml:lang="en"><term>Committee of inquiry </term></catDesc>
<catDesc xml:lang="sl"><term>Preiskovalna komisija</term></catDesc>
</category>
</category>
</category>
<category xml:id="parl.term">
<catDesc xml:lang="en"><term>Legislative period</term>: term of the parliament between
general elections.</catDesc>
<catDesc xml:lang="sl">Zakonodajno obdobje</catDesc>
<category xml:id="parl.session">
<catDesc xml:lang="en"><term>Legislative session</term>: the period of time in which
a legislature is convened for purpose of lawmaking, usually being
one of two or more smaller divisions of the entire time between two
elections. A session is a meeting or series of connected meetings
devoted to a single order of business, program, agenda, or announced
purpose.</catDesc>
<catDesc xml:lang="sl">Parlamentaro zasedanje</catDesc>
<category xml:id="parl.meeting">
<catDesc xml:lang="en"><term>Meeting</term>: Each meeting may be a
separate session or part of a group of meetings constituting a
session. The session/meeting may take one or more
days.</catDesc>
<catDesc xml:lang="sl"><term>Seja</term></catDesc>
<category>
<desc xml:lang="en">Types of meetings</desc>
<category xml:id="parl.meeting.regular">
<catDesc xml:lang="en"><term>Regular meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Redna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.special">
<catDesc xml:lang="en"><term>Special meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Posebna seja</term></catDesc>
<category xml:id="parl.meeting.extraordinary">
<catDesc xml:lang="en"><term>Extraordinary meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Izredna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.urgent">
<catDesc xml:lang="en"><term>Urgent meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Nujna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.ceremonial">
<catDesc xml:lang="en"><term>Ceremonial meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Slavnostna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.commemorative">
<catDesc xml:lang="en"><term>Commemorative meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Žalna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.opinions">
<catDesc xml:lang="en"><term>Public presentation of opinions</term></catDesc>
<catDesc xml:lang="sl"><term>Javna predstavitev mnenj</term></catDesc>
</category>
</category>
<category xml:id="parl.meeting.continued">
<catDesc xml:lang="en"><term>Continued meeting</term></catDesc>
</category>
<category xml:id="parl.meeting.public">
<catDesc xml:lang="en"><term>Public meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Javna seja</term></catDesc>
</category>
<category xml:id="parl.meeting.executive">
<catDesc xml:lang="en"><term>Executive meeting</term></catDesc>
<catDesc xml:lang="sl"><term>Zaprta seja</term></catDesc>
</category>
</category>
<category xml:id="parl.sitting">
<catDesc xml:lang="en"><term>Sitting</term>: sitting day</catDesc>
<catDesc xml:lang="sl"><term>Dan seje</term></catDesc>
</category>
</category>
</category>
</category>
</taxonomy>
</xsl:param>
<xsl:param name="taxonomy-speakers">
<taxonomy>
<desc xml:lang="en">Types of speakers</desc>
<desc xml:lang="sl">Vrste govornikov</desc>
<category xml:id="chair">
<catDesc xml:lang="en"><term>Chairperson</term>: chairman of a meeting</catDesc>
<catDesc xml:lang="sl"><term>Predsedujoči</term>: predsedujoči zasedanja</catDesc>
</category>
<category xml:id="regular">
<catDesc xml:lang="en"><term>Regular speaker</term>:</catDesc>
<catDesc xml:lang="sl"><term>Regularni govornik</term>:</catDesc>
</category>
<category xml:id="unauthorized">
<catDesc xml:lang="en"><term>Unauthorized speaker</term>: unauthorized intervention in the speech of the main speaker.</catDesc>
<catDesc xml:lang="sl"><term>Neavtorizirani govornik</term>: Neavtorizirana intervencija v govor glavnega govornika.</catDesc>
</category>
</taxonomy>
</xsl:param>
<xsl:template match="documentsList">
<xsl:variable name="corpus-label" select="tokenize(ref[1],'/')[1]"/>
<xsl:variable name="corpus-term" select="substring($corpus-label,4,4)"/>
<xsl:variable name="corpus-document" select="concat('../speech/',$corpus-label,'.xml')"/>
<xsl:variable name="source-corpus-document" select="concat('drama/',$corpus-label,'.xml')"/>
<xsl:variable name="source-speaker-document" select="concat('drama/',$corpus-label,'-speaker.xml')"/>
<xsl:result-document href="{$corpus-document}">
<teiCorpus xmlns:xi="http://www.w3.org/2001/XInclude">
<teiHeader>
<fileDesc>
<titleStmt>
<xsl:choose>
<xsl:when test="matches($corpus-label,'^SDZ')">
<title type="main" xml:lang="sl">Dobesedni zapis sej Državnega zbora Republike Slovenije</title>
<title type="main" xml:lang="en">Verbatim record of sessions of the National Assembly of the Republic of Slovenia</title>
</xsl:when>
<xsl:when test="matches($corpus-label,'^SDT')">
<title type="main" xml:lang="sl">Dobesedni zapis sej delovnih teles Državnega zbora Republike Slovenije</title>
<title type="main" xml:lang="en">Verbatim record of sessions of the working bodies of the National Assembly of the Republic of Slovenia</title>
</xsl:when>
<xsl:otherwise>
<xsl:message>Neznana oznaka <xsl:value-of select="$corpus-label"/></xsl:message>
</xsl:otherwise>
</xsl:choose>
<title type="sub" xml:lang="sl">
<xsl:value-of xmlns:parl="http://www.siparl.si" select="$terms/parl:term[@n=$corpus-term]"/>
</title>
<meeting n="{number($corpus-term)}" ana="#parl.term">
<xsl:value-of select="$corpus-term"/>
<xsl:text>. mandat</xsl:text>
</meeting>
<xsl:for-each-group select="document($source-corpus-document)/tei:teiCorpus/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:respStmt" group-by="tei:persName">
<respStmt>
<persName>
<xsl:value-of select="current-grouping-key()"/>
</persName>
<resp xml:lang="sl">Kodiranje TEI</resp>
<resp xml:lang="en">TEI corpus encoding</resp>
</respStmt>
</xsl:for-each-group>
<xsl:for-each-group select="document($source-speaker-document)/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:respStmt" group-by="tei:persName">
<respStmt>
<persName>
<xsl:value-of select="current-grouping-key()"/>
</persName>
<resp xml:lang="sl">Urejanje seznama govornikov</resp>
<resp xml:lang="en">Editing a list of speakers</resp>
</respStmt>
</xsl:for-each-group>
</titleStmt>
<extent>
<xsl:variable name="count-files" select="count(ref)"/>
<measure unit="file" quantity="{$count-files}">
<xsl:text>Število TEI datotek: </xsl:text>
<xsl:value-of select="$count-files"/>
</measure>
<!-- Štetje besed -->
<xsl:variable name="counting">
<xsl:for-each select="ref">
<string>
<xsl:apply-templates select="document(.)/tei:TEI/tei:text/tei:body"/>
</string>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="compoundString" select="normalize-space(string-join($counting/tei:string,' '))"/>
<xsl:variable name="count-words" select="count(tokenize($compoundString,'\W+')[. != ''])"/>
<measure unit="word" quantity="{$count-words}">
<xsl:text>Število besed zapisnikov sej: </xsl:text>
<xsl:value-of select="$count-words"/>
</measure>
</extent>
<publicationStmt>
<publisher>
<orgName xml:lang="sl">Inštitut za novejšo zgodovino</orgName>
<orgName xml:lang="en">Institute of Contemporary History</orgName>
<ref target="http://www.inz.si/">http://www.inz.si/</ref>
<address>
<street>Kongresni trg 1</street>
<settlement>Ljubljana</settlement>
<postCode>1000</postCode>
<country xml:lang="sl">Slovenija</country>
<country xml:lang="en">Slovenia</country>
</address>
<email>[email protected]</email>
</publisher>
<distributor>DARIAH-SI</distributor>
<distributor>CLARIN.SI</distributor>
<pubPlace>http://hdl.handle.net/11356/1236</pubPlace>
<pubPlace>https://github.com/DARIAH-SI/siParl</pubPlace>
<availability status="free">
<licence>http://creativecommons.org/licenses/by/4.0/</licence>
<p xml:lang="en">This work is licensed under the <ref target="http://creativecommons.org/licenses/by/4.0/">Creative Commons
Attribution 4.0 International License</ref>.</p>
<p xml:lang="sl">To delo je ponujeno pod <ref target="http://creativecommons.org/licenses/by/4.0/">Creative Commons
Priznanje avtorstva 4.0 mednarodna licenca</ref>.</p>
</availability>
<date when="{current-date()}"><xsl:value-of select="format-date(current-date(),'[D1]. [M1]. [Y0001]')"/></date>
</publicationStmt>
<sourceDesc>
<bibl>
<title>Portal Državnega zbora Republike Slovenije</title>
<idno type="URI">https://www.dz-rs.si</idno>
</bibl>
</sourceDesc>
</fileDesc>
<encodingDesc>
<classDecl>
<xsl:copy-of select="$taxonomy-legislature"/>
<xsl:copy-of select="$taxonomy-speakers"/>
</classDecl>
</encodingDesc>
<profileDesc>
<settingDesc>
<setting>
<name type="city">Ljubljana</name>
<name type="country" key="SI">Slovenija</name>
<date ana="#parl.term">
<xsl:attribute name="notBefore" xmlns:parl="http://www.siparl.si">
<xsl:value-of select="$terms/parl:term[@n=$corpus-term]/@start"/>
</xsl:attribute>
<xsl:attribute name="notAfter" xmlns:parl="http://www.siparl.si">
<xsl:value-of select="$terms/parl:term[@n=$corpus-term]/@end"/>
</xsl:attribute>
<xsl:value-of xmlns:parl="http://www.siparl.si" select=" concat(format-date($terms/parl:term[@n=$corpus-term]/@start,'[D1]. [M1]. [Y0001]'),' / ',format-date($terms/parl:term[@n=$corpus-term]/@end,'[D1]. [M1]. [Y0001]'))"/>
</date>
</setting>
</settingDesc>
<particDesc>
<org xml:id="DZ" ana="#parl.national #par.lower">
<orgName xml:lang="sl">Državni zbor Republike Slovenije</orgName>
<orgName xml:lang="en">National Assembly of the Republic of Slovenia</orgName>
<xsl:if test="matches($corpus-label,'^SDT')">
<listOrg xml:id="workingBodies">
<head xml:lang="sl">Delovna telesa Državnega zbora Republike Slovenije</head>
<head xml:lang="en">Working bodies of the National Assembly of the Republic of Slovenia</head>
<xsl:for-each-group select="document($source-corpus-document)/tei:teiCorpus/tei:TEI/tei:teiHeader/tei:profileDesc/tei:particDesc/tei:listOrg/tei:org/tei:listOrg/tei:org" group-by="tei:orgName/@key">
<xsl:sort select="normalize-space(current-group()[1]/tei:orgName)"/>
<org xml:id="{current-grouping-key()}" ana="#parl.committee">
<orgName>
<xsl:value-of select="normalize-space(current-group()[1]/tei:orgName)"/>
</orgName>
</org>
</xsl:for-each-group>
</listOrg>
</xsl:if>
</org>
<listPerson type="speaker">
<head xml:lang="sl">Seznam govornikov</head>
<head xml:lang="en">List of speakers</head>
<xsl:for-each select="document($source-speaker-document)/tei:TEI/tei:text/tei:body/tei:listPerson/tei:person">
<person xml:id="{$corpus-label}.{@xml:id}">
<xsl:for-each select="*">
<xsl:copy-of select="." copy-namespaces="no"/>
</xsl:for-each>
</person>
</xsl:for-each>
</listPerson>
</particDesc>
<langUsage>
<language ident="sl" xml:lang="sl">slovenski</language>
<language ident="sl" xml:lang="en">Slovenian</language>
<language ident="en" xml:lang="sl">angleški</language>
<language ident="en" xml:lang="en">English</language>
</langUsage>
</profileDesc>
</teiHeader>
<xsl:for-each select="ref">
<xsl:element name="xi:include">
<xsl:attribute name="href">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:element>
<!-- TEI dokumenti -->
<xsl:variable name="document" select="concat('../speech/',.)"/>
<xsl:result-document href="{$document}">
<xsl:apply-templates select="document(.)" mode="pass0"/>
</xsl:result-document>
</xsl:for-each>
</teiCorpus>
</xsl:result-document>
</xsl:template>
<xsl:template match="/" mode="pass0">
<xsl:variable name="var1">
<xsl:apply-templates mode="pass1"/>
</xsl:variable>
<xsl:variable name="var2">
<xsl:apply-templates select="$var1" mode="pass2"/>
</xsl:variable>
<xsl:variable name="var3">
<xsl:apply-templates select="$var2" mode="pass3"/>
</xsl:variable>
<xsl:variable name="var4">
<xsl:apply-templates select="$var3" mode="pass4"/>
</xsl:variable>
<xsl:variable name="var5">
<xsl:apply-templates select="$var4" mode="pass5"/>
</xsl:variable>
<xsl:variable name="var6">
<xsl:apply-templates select="$var5" mode="pass6"/>
</xsl:variable>
<xsl:variable name="var7">
<xsl:apply-templates select="$var6" mode="pass7"/>
</xsl:variable>
<xsl:variable name="var8">
<xsl:apply-templates select="$var7" mode="pass8"/>
</xsl:variable>
<xsl:variable name="var9">
<xsl:apply-templates select="$var8" mode="pass9"/>
</xsl:variable>
<xsl:variable name="var10">
<xsl:apply-templates select="$var9" mode="pass10"/>
</xsl:variable>
<xsl:variable name="var11">
<xsl:apply-templates select="$var10" mode="pass11"/>
</xsl:variable>
<!-- kopiram zadnjo variablo z vsebino celotnega dokumenta -->
<xsl:copy-of select="$var11" copy-namespaces="no"/>
</xsl:template>
<xsl:template match="@* | node()" mode="pass1">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass1"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:availability" mode="pass1">
<pubPlace>http://hdl.handle.net/11356/1236</pubPlace>
<pubPlace>https://github.com/DARIAH-SI/siParl</pubPlace>
<availability>
<xsl:apply-templates select="@*" mode="pass1"/>
<xsl:apply-templates mode="pass1"/>
</availability>
</xsl:template>
<xsl:template match="tei:publicationStmt/tei:date" mode="pass1">
<date when="{current-date()}"><xsl:value-of select="format-date(current-date(),'[D1]. [M1]. [Y0001]')"/></date>
</xsl:template>
<xsl:template match="tei:body/tei:div" mode="pass1">
<div type="minutes">
<xsl:apply-templates mode="pass1"/>
</div>
</xsl:template>
<xsl:template match="tei:div/tei:stage[@type='title']" mode="pass1">
<head>
<xsl:value-of select="normalize-space(.)"/>
</head>
</xsl:template>
<xsl:template match="tei:div/tei:head" mode="pass1">
<head>
<xsl:value-of select="normalize-space(.)"/>
</head>
</xsl:template>
<xsl:template match="tei:stage[@type='session']" mode="pass1">
<head type="session">
<xsl:value-of select="normalize-space(.)"/>
</head>
</xsl:template>
<xsl:template match="tei:stage[@type='date']" mode="pass1">
<docDate>
<xsl:value-of select="normalize-space(.)"/>
</docDate>
</xsl:template>
<xsl:template match="tei:stage[@type='chairman']" mode="pass1">
<note type="chairman">
<xsl:value-of select="normalize-space(.)"/>
</note>
</xsl:template>
<xsl:template match="tei:div/tei:p" mode="pass1">
<note>
<xsl:value-of select="normalize-space(.)"/>
</note>
</xsl:template>
<xsl:template match="tei:sp" mode="pass1">
<u who="#{tokenize(@who,':')[1]}.{tokenize(@who,':')[2]}">
<xsl:apply-templates mode="pass1"/>
</u>
</xsl:template>
<xsl:template match="tei:speaker" mode="pass1">
<note type="speaker">
<xsl:apply-templates mode="pass1"/>
</note>
</xsl:template>
<xsl:template match="tei:sp/tei:p" mode="pass1">
<xsl:variable name="document-name-id" select="ancestor::tei:TEI/@xml:id"/>
<xsl:variable name="num">
<xsl:number count="tei:sp/tei:p" level="any"/>
</xsl:variable>
<!-- samo odstavki, ki niso prazni -->
<xsl:if test="string-length(normalize-space(.)) != 0">
<seg xml:id="{$document-name-id}.p{$num}">
<xsl:apply-templates mode="pass1"/>
</seg>
</xsl:if>
</xsl:template>
<xsl:template match="tei:sp/tei:p/tei:title[1]" mode="pass1">
<xsl:variable name="document-name-id" select="ancestor::tei:TEI/@xml:id"/>
<xsl:variable name="num">
<xsl:number count="tei:sp/tei:p/tei:title[1]" level="any"/>
</xsl:variable>
<title xml:id="{$document-name-id}.title{$num}">
<xsl:apply-templates mode="pass1"/>
</title>
</xsl:template>
<xsl:template match="tei:TEI" mode="pass1">
<TEI>
<xsl:apply-templates select="@*" mode="pass1"/>
<xsl:attribute name="ana">#parl.sitting</xsl:attribute>
<xsl:apply-templates mode="pass1"/>
</TEI>
</xsl:template>
<xsl:template match="tei:sourceDesc/tei:bibl" mode="pass1">
<biblStruct>
<analytic>
<xsl:for-each select="ancestor::tei:TEI/tei:text/tei:body/tei:div/tei:stage[@type = 'title' or @type = 'session']">
<title xml:lang="sl">
<xsl:value-of select="."/>
</title>
</xsl:for-each>
</analytic>
<monogr>
<xsl:choose>
<xsl:when test="@type='mag'">
<edition xml:lang="sl">Nepreverjen zapis seje</edition>
<edition xml:lang="en">Unverified session record</edition>
</xsl:when>
<xsl:otherwise>
<edition xml:lang="sl">Preverjen zapis seje</edition>
<edition xml:lang="en">Verified session record</edition>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates mode="pass1"/>
<imprint>
<xsl:choose>
<xsl:when test="ancestor::tei:TEI/tei:text/tei:body/tei:div/tei:stage[@type = 'date']">
<date when="{ancestor::tei:TEI/tei:teiHeader/tei:profileDesc/tei:settingDesc/tei:setting[1]/tei:date/@when}">
<xsl:value-of select="ancestor::tei:TEI/tei:text/tei:body/tei:div/tei:stage[@type = 'date']"/>
</date>
</xsl:when>
<xsl:otherwise>
<date when="{ancestor::tei:TEI/tei:teiHeader/tei:profileDesc/tei:settingDesc/tei:setting[1]/tei:date/@when}"/>
</xsl:otherwise>
</xsl:choose>
</imprint>
</monogr>
</biblStruct>
</xsl:template>
<xsl:template match="tei:titleStmt" mode="pass1">
<titleStmt>
<xsl:choose>
<xsl:when test="tei:title[2]">
<xsl:choose>
<xsl:when test="tokenize(ancestor::tei:TEI/@xml:id,'-')[2] = 'KKPD'">
<title type="main" xml:lang="sl">Dobesedni zapis seje Kolegija predsednika Državnega zbora Republike Slovenije</title>
<title type="main" xml:lang="en">Verbatim record of the session of the Council of the President of the National Assembly of the Republic of Slovenia</title>
</xsl:when>
<xsl:otherwise>
<title type="main" xml:lang="sl">Dobesedni zapis seje delovnih teles Državnega zbora Republike Slovenije</title>
<title type="main" xml:lang="en">Verbatim record of the session of the working bodies of the National Assembly of the Republic of Slovenia</title>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<title type="main" xml:lang="sl">Dobesedni zapis seje Državnega zbora Republike Slovenije</title>
<title type="main" xml:lang="en">Verbatim record of the session of the National Assembly of the Republic of Slovenia</title>
</xsl:otherwise>
</xsl:choose>
<xsl:for-each select="ancestor::tei:teiHeader/tei:profileDesc/tei:settingDesc/tei:setting">
<xsl:variable name="workingGroup" select="substring-after(@who,'#')"/>
<title type="sub" xml:lang="sl">
<xsl:if test="ancestor::tei:profileDesc/tei:particDesc/tei:listOrg/tei:org/tei:listOrg/tei:org[not(tei:orgName/@key='KKPD')]">
<xsl:value-of select="normalize-space(ancestor::tei:profileDesc/tei:particDesc/tei:listOrg/tei:org/tei:listOrg/tei:org[@xml:id=$workingGroup]/tei:orgName)"/>
<xsl:text>: </xsl:text>
</xsl:if>
<xsl:value-of select="concat(number(@n),'. ')"/>
<xsl:choose>
<xsl:when test="tei:name = 'Redna'">redna seja</xsl:when>
<xsl:when test="tei:name = 'redna'">redna seja</xsl:when>
<xsl:when test="tei:name = 'redna seja'">redna seja</xsl:when>
<xsl:when test="tei:name = 'Izredna'">izredna seja</xsl:when>
<xsl:when test="tei:name = 'Izredna seja'">izredna seja</xsl:when>
<xsl:when test="tei:name = 'Nujna'">nujna seja</xsl:when>
<xsl:when test="tei:name = 'nujna'">nujna seja</xsl:when>
<xsl:when test="tei:name = 'nujna seja'">nujna seja</xsl:when>
<xsl:when test="tei:name = 'Javna predstavitev'">javna predstavitev mnenj</xsl:when>
<xsl:when test="tei:name = 'Javna predstavitev mnenj'">javna predstavitev mnenj</xsl:when>
<xsl:when test="tei:name = 'javna predstavitev mnenj'">javna predstavitev mnenj</xsl:when>
<xsl:when test="tei:name = 'Zasedanje'">zasedanje</xsl:when>
<xsl:when test="tei:name = 'slavnostna seja'">slavnostna seja</xsl:when>
<xsl:when test="tei:name = 'srečanje'">srečanje</xsl:when>
<xsl:when test="tei:name = 'posvet'">posvet</xsl:when>
<xsl:when test="tei:name = 'seja izvršilnega odbora'">seja izvršilnega odbora</xsl:when>
<xsl:otherwise>
<xsl:message>Neznana vrsta seje: <xsl:value-of select="ancestor::tei:TEI/@xml:id"/></xsl:message>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="concat(' (',format-date(tei:date/@when,'[D1]. [M1]. [Y0001]'),')')"/>
</title>
</xsl:for-each>
<xsl:for-each select="ancestor::tei:teiHeader/tei:profileDesc/tei:settingDesc/tei:setting">
<meeting n="{number(@n)}" corresp="{@who}">
<xsl:attribute name="ana">
<xsl:choose>
<xsl:when test="tei:name = 'Redna'">#parl.meeting.regular</xsl:when>
<xsl:when test="tei:name = 'redna'">#parl.meeting.regular</xsl:when>
<xsl:when test="tei:name = 'redna seja'">#parl.meeting.regular</xsl:when>
<xsl:when test="tei:name = 'Izredna'">#parl.meeting.extraordinary</xsl:when>
<xsl:when test="tei:name = 'Izredna seja'">#parl.meeting.extraordinary</xsl:when>
<xsl:when test="tei:name = 'Nujna'">#parl.meeting.urgent</xsl:when>
<xsl:when test="tei:name = 'nujna'">#parl.meeting.urgent</xsl:when>
<xsl:when test="tei:name = 'nujna seja'">#parl.meeting.urgent</xsl:when>
<xsl:when test="tei:name = 'Javna predstavitev'">#parl.meeting.opinions</xsl:when>
<xsl:when test="tei:name = 'Javna predstavitev mnenj'">#parl.meeting.opinions</xsl:when>
<xsl:when test="tei:name = 'javna predstavitev mnenj'">#parl.meeting.opinions</xsl:when>
<xsl:when test="tei:name = 'Zasedanje'">#parl.meeting.special</xsl:when>
<xsl:when test="tei:name = 'slavnostna seja'">#parl.meeting.ceremonial</xsl:when>
<xsl:when test="tei:name = 'srečanje'">#parl.meeting.special</xsl:when>
<xsl:when test="tei:name = 'posvet'">#parl.meeting.special</xsl:when>
<xsl:when test="tei:name = 'seja izvršilnega odbora'">#parl.meeting.special</xsl:when>
<xsl:otherwise>
<xsl:message>Neznana vrsta seje: <xsl:value-of select="ancestor::tei:TEI/@xml:id"/></xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:value-of select="tei:name"/>
</meeting>
</xsl:for-each>
<xsl:apply-templates select="tei:respStmt" mode="pass1"/>
</titleStmt>
</xsl:template>
<xsl:template match="tei:settingDesc" mode="pass1">
<settingDesc>
<setting>
<name type="city">Ljubljana</name>
<name type="country" key="SI">Slovenija</name>
<!-- vzamem samo prvega, saj se podatki drugače ponavljajo -->
<date when="{tei:setting[1]/tei:date/@when}" ana="#parl.sitting">
<xsl:value-of select="format-date(tei:setting[1]/tei:date/@when,'[D1]. [M1]. [Y0001]')"/>
</date>
</setting>
</settingDesc>
</xsl:template>
<xsl:template match="tei:particDesc" mode="pass1">
<particDesc>
<xsl:choose>
<xsl:when test="tei:listOrg/tei:org/tei:listOrg/tei:org">
<xsl:for-each select="tei:listOrg/tei:org/tei:listOrg/tei:org">
<org xml:id="{@xml:id}" ana="#parl.committee" corresp="#{tei:orgName/@key}">
<orgName>
<xsl:value-of select="normalize-space(tei:orgName)"/>
</orgName>
</org>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each select="tei:listOrg/tei:org">
<org xml:id="{@xml:id}" ana="#par.lower" corresp="#DZ">
<orgName>
<xsl:value-of select="normalize-space(tei:orgName)"/>
</orgName>
</org>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</particDesc>
</xsl:template>
<xsl:template match="@* | node()" mode="pass2">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass2"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:profileDesc" mode="pass2">
<profileDesc>
<abstract>
<list type="agenda">
<item xml:id="{ancestor::tei:TEI/@xml:id}.toc-item0">
<title>Pred dnevnim redom</title>
</item>
<xsl:for-each select="//tei:title[@xml:id]">
<xsl:variable name="document-name-id" select="ancestor::tei:TEI/@xml:id"/>
<xsl:variable name="num">
<xsl:number count="tei:title[@xml:id]" level="any"/>
</xsl:variable>
<item xml:id="{$document-name-id}.toc-item{$num}" corresp="{@xml:id}">
<title><xsl:value-of select="normalize-space(.)"/></title>
<xsl:for-each select="parent::tei:p/tei:title[not(@xml:id)]">
<title><xsl:value-of select="normalize-space(.)"/></title>
</xsl:for-each>
</item>
</xsl:for-each>
</list>
</abstract>
<xsl:apply-templates mode="pass2"/>
</profileDesc>
</xsl:template>
<xsl:template match="tei:seg" mode="pass2">
<seg>
<xsl:apply-templates select="@*" mode="pass2"/>
<xsl:attribute name="ana">
<xsl:choose>
<xsl:when test="tei:title[@xml:id]">
<xsl:value-of select="tei:title[@xml:id]/@xml:id"/>
</xsl:when>
<xsl:when test="preceding::tei:title[@xml:id]">
<xsl:value-of select="preceding::tei:title[@xml:id][1]/@xml:id"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(ancestor::tei:TEI/@xml:id,'.toc-item0')"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:apply-templates mode="pass2"/>
</seg>
</xsl:template>
<xsl:template match="@* | node()" mode="pass3">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass3"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:list[@type='agenda']/tei:item[tei:title[2]]" mode="pass3">
<item>
<xsl:apply-templates select="@*" mode="pass3"/>
<title>
<xsl:value-of select="string-join(tei:title,' ')"/>
</title>
</item>
</xsl:template>
<!-- odstranim title oznake -->
<xsl:template match="tei:u/tei:seg/tei:title" mode="pass3">
<xsl:apply-templates mode="pass3"/>
</xsl:template>
<!-- povsod odstranim še q (citate in ostale navedke) -->
<xsl:template match="tei:q" mode="pass3">
<xsl:apply-templates mode="pass3"/>
</xsl:template>
<!-- stage v note -->
<xsl:template match="tei:stage" mode="pass3">
<note>
<xsl:apply-templates select="@*" mode="pass3"/>
<xsl:apply-templates mode="pass3"/>
</note>
</xsl:template>
<!-- Razdelim bivše p (sedaj u/seg) elemente -->
<!-- 1. The use of the identity rule to copy every node as-is. -->
<xsl:template match="@* | node()" mode="pass4">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass4"/>
</xsl:copy>
</xsl:template>
<!-- 2. The overriding of the identity rule with templates for processing only specific nodes -->
<xsl:template match="/*" mode="pass4">
<TEI>
<xsl:apply-templates select="@*" mode="pass4"/>
<!-- ?????? Zakaj se mi tukaj pri teiHeader in text pojavijo deklaracija xmlns:xi="http://www.w3.org/2001/XInclude" ????? -->
<xsl:apply-templates mode="pass4"/>
</TEI>
</xsl:template>
<!-- 3. Using 1. and 2. above. -->
<xsl:template match="tei:u/tei:seg[tei:note or tei:gap]/text()" mode="pass4">
<seg><xsl:copy-of select="."/></seg>
</xsl:template>
<!-- prečistim razdeljene elemente -->
<xsl:template match="@* | node()" mode="pass5">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass5"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:u/tei:seg[not(tei:seg)]" mode="pass5">
<seg>
<xsl:apply-templates select="@*" mode="pass5"/>
<xsl:value-of select="normalize-space(.)"/>
</seg>
</xsl:template>
<xsl:template match="tei:u/tei:seg[tei:seg]" mode="pass5">
<seg>
<xsl:apply-templates select="@*" mode="pass5"/>
<xsl:for-each-group select="*" group-adjacent="boolean(self::tei:note)">
<xsl:choose>
<xsl:when test="current-grouping-key()">
<xsl:apply-templates select="." mode="pass5"/>
</xsl:when>
<xsl:otherwise>
<seg>
<xsl:for-each select="current-group()">
<xsl:choose>
<xsl:when test="self::tei:gap">
<xsl:apply-templates select="." mode="pass5"/>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="string-length(normalize-space(.)) = 0">
<!-- ne procesiram segmentov, ki imajo samo presledke -->
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." mode="pass5"/>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</seg>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>
</seg>
</xsl:template>
<xsl:template match="@* | node()" mode="pass6">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass6"/>
</xsl:copy>
</xsl:template>
<!-- odstranim odvečne parent seg elemente -->
<xsl:template match="tei:u/tei:seg[tei:seg]" mode="pass6">
<xsl:apply-templates mode="pass6"/>
</xsl:template>
<xsl:template match="tei:u/tei:seg/tei:seg[tei:gap or tei:seg]" mode="pass6">
<xsl:choose>
<xsl:when test="tei:gap and not(tei:seg)">
<!-- Zelo čudno: če sem spodaj dal samo copy-of select ., potem je v naslednjem pass7 ta gap postal note/@n (in nimam pojma, zakaj se je to zgodilo ... -->
<!--<xsl:copy-of select="."/>-->
<gap n="{tei:gap/@n}"/>
</xsl:when>
<xsl:when test="not(tei:gap) and tei:seg">
<seg ana="{parent::tei:seg/@ana}">
<xsl:value-of select="normalize-space(.)"/>
</seg>
</xsl:when>
<xsl:when test="tei:gap and tei:seg">
<seg ana="{parent::tei:seg/@ana}">
<xsl:for-each select="tei:*">
<xsl:choose>
<xsl:when test="self::tei:gap">
<!-- če gap sledi takoj predhodnemu gap elementu, ga ne procesiram -->
<xsl:if test="not(preceding-sibling::tei:*[1][self::tei:gap])">
<xsl:choose>
<xsl:when test="position() = 1">
<xsl:copy-of select="."/>
<xsl:text> </xsl:text>
</xsl:when>
<xsl:when test="position() = last()">
<xsl:text> </xsl:text>
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:text> </xsl:text>
<xsl:copy-of select="."/>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space(.)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</seg>
</xsl:when>
<xsl:otherwise>
<xsl:message>Pass 6: tei:u/tei:seg/tei:seg[tei:gap or tei:seg]: unknown combination of elements (file id <xsl:value-of select="ancestor::tei:TEI/@xml:id"/>)</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- zamenjam seg/@xml:id, ki so prej veljali za p, z novimi za seg -->
<xsl:template match="@* | node()" mode="pass7">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="pass7"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:u/tei:seg" mode="pass7">
<xsl:variable name="document-name-id" select="ancestor::tei:TEI/@xml:id"/>
<xsl:variable name="num">
<xsl:number count="tei:u/tei:seg" level="any"/>
</xsl:variable>
<!-- samo segmenti besedil, ki niso prazni -->
<xsl:if test="string-length(normalize-space(.)) != 0">
<seg xml:id="{$document-name-id}.seg{$num}" ana="{@ana}">
<xsl:apply-templates mode="pass7"/>
</seg>
</xsl:if>
</xsl:template>
<xsl:template match="tei:u" mode="pass7">
<xsl:variable name="speaker" select="tokenize(tei:note[@type='speaker'],' ')[1]"/>
<xsl:variable name="chair">
<item>P0DPREDSEDNIK</item>
<item>PEDSEDNICA</item>
<item>PEDSEDNIK</item>
<item>PERDSEDNICA</item>
<item>PERDSEDNIK</item>
<item>POD</item>
<item>PODOPREDSEDNIK</item>
<item>PODOPRESEDNIK</item>
<item>PODOREDSEDNIK</item>
<item>PODPDREDSEDNICA</item>
<item>PODPEDSEDNIK</item>
<item>PODPPREDSEDNIK</item>
<item>PODPPREDSENIK</item>
<item>PODPRDESEDNICA</item>
<item>PODPRDESENIK</item>
<item>PODPRDSEDNICA</item>
<item>PODPRDSEDNIK</item>
<item>PODPREDEDNICA</item>
<item>PODPREDEDNIK</item>
<item>PODPREDESEDNIK</item>
<item>PODPREDSDEDNIK</item>
<item>PODPREDSDENIK</item>
<item>PODPREDSDNIK</item>
<item>PODPREDSEDENIK</item>
<item>PODPREDSEDICA</item>
<item>PODPREDSEDIK</item>
<item>PODPREDSEDNCA</item>
<item>PODPREDSEDNI</item>
<item>PODPREDSEDNIA</item>
<item>PODPREDSEDNIC</item>
<item>PODPREDSEDNICA</item>
<item>PODPREDSEDNIDA</item>
<item>PODPREDSEDNIK</item>
<item>PODPREDSEDNIKA</item>
<item>PODPREDSEDNIKCA</item>
<item>PODPREDSEDNIKI</item>
<item>PODPREDSEDNIKMAG.</item>
<item>PODPREDSEDNIKN</item>
<item>PODPREDSEDNK</item>
<item>PODPREDSEDNNIK</item>
<item>PODPREDSEEDNIK</item>
<item>PODPREDSENDICA</item>
<item>PODPREDSENDIK</item>
<item>PODPREDSENICA</item>
<item>PODPREDSENIK</item>
<item>PODPREDSETNIK</item>
<item>PODPREDSEVNIK</item>
<item>PODPRESDEDNIK</item>
<item>PODPRESEDNICA</item>
<item>PODPRESEDNIK</item>
<item>PODPRESENICA</item>
<item>PODPRREDSEDNICA</item>
<item>PODREDSEDNICA</item>
<item>PODREDSEDNIK</item>
<item>PODRPEDSEDNIK</item>
<item>PODRPREDSEDNICA</item>
<item>PODRPREDSEDNIK</item>
<item>POPDPREDSEDNICA</item>
<item>POPDPREDSEDNIK</item>
<item>POPDREDSEDNICA</item>
<item>POPDREDSEDNIK</item>
<item>POPPREDSEDNICA</item>
<item>POPREDSEDNICA</item>
<item>POPREDSEDNIK</item>
<item>POREDSDNICA</item>
<item>PPRDSEDNIK</item>
<item>PPREDSEDNIK</item>
<item>PRDEDSEDNIK</item>
<item>PRDSEDNICA</item>
<item>PRDSEDNIK</item>
<item>PRDSENIK</item>
<item>PRE</item>
<item>PREDDSEDNIK</item>
<item>PREDEDNIK</item>
<item>PREDESEDNICA</item>
<item>PREDESEDNIK</item>
<item>PREDESENIK</item>
<item>PREDNICA</item>
<item>PREDPREDSEDNICA</item>
<item>PREDPREDSEDNIK</item>
<item>PREDSDEDNIK</item>
<item>PREDSDENIK</item>
<item>PREDSDNIK</item>
<item>PREDSEBNIK</item>
<item>PREDSECNICA</item>
<item>PREDSEDDNIK</item>
<item>PREDSEDEDNIK</item>
<item>PREDSEDENIK</item>
<item>PREDSEDICA</item>
<item>PREDSEDIK</item>
<item>PREDSEDINK</item>
<item>PREDSEDN</item>
<item>PREDSEDNCA</item>
<item>PREDSEDNDIK</item>
<item>PREDSEDNI</item>
<item>PREDSEDNIAC</item>
<item>PREDSEDNIC</item>
<item>PREDSEDNICA</item>