-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrowse-person-facet-def.xml
45 lines (45 loc) · 1.75 KB
/
browse-person-facet-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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<facets xmlns="http://expath.org/ns/facet">
<!-- Need a local function to browse by data type -->
<facet-definition name="Place of attestation">
<group-by>
<sub-path>descendant::tei:msDesc/descendant::tei:origPlace/tei:placeName/@key</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
<facet-definition name="Place of residence">
<group-by>
<sub-path>tei:person/descendant::tei:residence/tei:placeName/@key</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
<facet-definition name="Sex">
<group-by>
<sub-path>tei:person/tei:sex/@value</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
<facet-definition name="State">
<group-by>
<sub-path>tei:person/descendant::tei:state</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
<facet-definition name="Trait">
<group-by>
<sub-path>tei:person/descendant::tei:trait</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
<facet-definition name="Faith">
<group-by>
<sub-path>tei:person/descendant::tei:faith</sub-path>
</group-by>
<max-values show="5">40</max-values>
<order-by direction="ascending">count</order-by>
</facet-definition>
</facets>