-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcollection.xconf
25 lines (25 loc) · 1.17 KB
/
collection.xconf
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
<?xml version="1.0" encoding="UTF-8"?>
<collection xmlns="http://exist-db.org/collection-config/1.0">
<index xmlns:xs="http://www.w3.org/2001/XMLSchema">
<lucene>
<analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
<text qname="visit">
<!-- start required facets and fields -->
<facet dimension="hsg-category" expression="'department'"/>
<facet dimension="hsg-publication" expression="'visits'"/>
<field expression="visitor, description, from" name="hsg-fulltext"/>
<field expression="'/departmenthistory/visits/' || year-from-date(./start-date)"
name="hsg-url"/>
<!-- end required facets and fields -->
</text>
</lucene>
<range>
<create qname="id" type="xs:string"/>
<create qname="visitor" type="xs:string"/>
<create qname="from" type="xs:string"/>
<create qname="@id" type="xs:string"/>
<create qname="start-date" type="xs:date"/>
<create qname="end-date" type="xs:date"/>
</range>
</index>
</collection>