forked from wsalesky/srophe-eXist-app
-
Notifications
You must be signed in to change notification settings - Fork 11
/
uniqueLangHW.sch
38 lines (29 loc) · 2.18 KB
/
uniqueLangHW.sch
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
<?xml version="1.0" encoding="UTF-8"?>
<sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:sqf="http://www.schematron-quickfix.com/validator/process" queryBinding="xslt2">
<sch:ns uri="http://www.tei-c.org/ns/1.0" prefix="tei"/>
<sch:ns uri="https://srophe.app" prefix="srophe"/>
<sch:pattern>
<sch:rule context="//tei:text//tei:place/tei:placeName[@xml:lang='en']">
<sch:assert test="count(./parent::tei:place/tei:placeName[@xml:lang='en' and @srophe:tags='#syriaca-headword']) = 1">
There must be one and only one <placeName> element with the combination of @srophe:tags="#syriaca-headword" and @xml:lang="en".
</sch:assert>
</sch:rule>
<sch:rule context="//tei:text//tei:place/tei:placeName[@srophe:tags='#syriaca-headword']">
<sch:let name="langsOfHW" value="//tei:place/tei:placeName[@srophe:tags='#syriaca-headword']/@xml:lang"/>
<sch:assert test="count(distinct-values($langsOfHW)) = count($langsOfHW)">
There cannot be more than one headword (@srophe:tags="#syriaca-headword") per <placeName> with the same language (@xml:lang).
</sch:assert>
</sch:rule>
<sch:rule context="//tei:text//tei:person/tei:persName[@xml:lang='en']">
<sch:assert test="count(./parent::tei:person/tei:persName[@xml:lang='en' and @srophe:tags='#syriaca-headword']) = 1">
There must be one and only one <persName> element with the combination of @srophe:tags="#syriaca-headword" and @xml:lang="en".
</sch:assert>
</sch:rule>
<sch:rule context="//tei:text//tei:person/tei:persName[@srophe:tags='#syriaca-headword']">
<sch:let name="langsOfHW" value="//tei:person/tei:persName[@srophe:tags='#syriaca-headword']/@xml:lang"/>
<sch:assert test="count(distinct-values($langsOfHW)) = count($langsOfHW)">
There cannot be more than one headword (@srophe:tags="#syriaca-headword") per <persName> with the same language (@xml:lang).
</sch:assert>
</sch:rule>
</sch:pattern>
</sch:schema>