forked from Edirom/EditionExample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.xconf
55 lines (52 loc) · 2.45 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
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
<collection xmlns="http://exist-db.org/collection-config/1.0">
<index xmlns:tei="http://www.tei-c.org/ns/1.0">
<!-- Full text index based on Lucene -->
<lucene>
<analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
<analyzer id="ws" class="org.apache.lucene.analysis.core.WhitespaceAnalyzer"/>
<text qname="tei:title" boost="2.0"/>
<text qname="@type" analyzer="ws"/>
<text qname="@key" analyzer="ws"/>
<text qname="tei:persName" boost="2.0"/>
<text qname="tei:orgName" boost="2.0"/>
<text qname="tei:settlement" boost="2.0"/>
</lucene>
<!-- Range indexes -->
<range>
<create qname="tei:title" type="xs:string"/>
<create qname="tei:bibl" type="xs:string"/>
<create qname="tei:persName" type="xs:string"/>
<create qname="tei:persName" type="xs:string">
<field name="persName-key" match="@key" type="xs:string"/>
</create>
<create qname="tei:objectDesc">
<field name="objectDesc-form" match="@form" type="xs:string"/>
</create>
<create qname="tei:correspAction">
<field name="correspAction-type" match="@type" type="xs:string"/>
</create>
<create qname="tei:date">
<field name="date-type" match="@type" type="xs:string"/>
<field name="date-when" match="@when" type="xs:date"/>
</create>
<create qname="tei:note">
<field name="note-type" match="@type" type="xs:string"/>
</create>
<create qname="@type" type="xs:string"/>
<create qname="tei:collection" type="xs:string">
<field name="collection-key" match="@key" type="xs:string"/>
</create>
<create qname="tei:repository" type="xs:string">
<field name="repository-key" match="@key" type="xs:string"/>
</create>
<!--<create qname="author" type="xs:string"/>
<create qname="year" type="xs:integer"/>-->
</range>
<!-- N-gram indexes -->
<!--<ngram qname="author"/>
<ngram qname="title"/>-->
</index>
<triggers>
<trigger event="store,update,remove,create,rename,delete" class="org.exist.collections.triggers.HistoryTrigger"/>
</triggers>
</collection>