forked from srophe/srophe-eXist-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathselect-locations-def.xml
23 lines (23 loc) · 1.17 KB
/
select-locations-def.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<facets xmlns="http://expath.org/ns/facet">
<facet-definition name="City" type="select">
<group-by>
<sub-path>descendant::tei:relation[@ref="dcterms:references"]/tei:desc/tei:msDesc/tei:msIdentifier/tei:settlement</sub-path>
</group-by>
<max-values show="200">200</max-values>
<order-by direction="ascending">value</order-by>
</facet-definition>
<facet-definition name="Collection" type="select">
<group-by function="facet:collection">
<sub-path>descendant::tei:relation[@ref="dcterms:references"]/tei:desc/tei:msDesc/tei:msIdentifier/tei:collection</sub-path>
</group-by>
<max-values show="100">100</max-values>
<order-by direction="ascending">value</order-by>
</facet-definition>
<facet-definition name="Shelfmark" type="select">
<group-by function="facet:shelfmark">
<sub-path>descendant::tei:relation[@ref="dcterms:references"]/tei:desc/tei:msDesc/tei:msIdentifier/tei:idno[@type="shelfmark"]</sub-path>
</group-by>
<max-values show="100">100</max-values>
<order-by direction="ascending">value</order-by>
</facet-definition>
</facets>