-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcollection.xconf
70 lines (69 loc) · 3.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<collection xmlns="http://exist-db.org/collection-config/1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<index xmlns:tei="http://www.tei-c.org/ns/1.0">
<fulltext default="none" attributes="no"/>
<!-- Full text search configuration -->
<lucene diacritics="no">
<!-- Does not currently search tei header info, other then title -->
<!-- Should maybe not index placeName, location, state or event?-->
<text qname="tei:body"/>
<text qname="tei:biblStruct"/>
<text qname="tei:div"/>
<text qname="tei:author" boost="2.0"/>
<text qname="tei:persName" boost="2.0"/>
<text qname="tei:placeName" boost="2.0"/>
<text qname="tei:title" boost="2.5"/>
<text qname="tei:location"/>
<text qname="tei:desc" boost="1.0"/>
<text qname="tei:event"/>
<text qname="tei:note"/>
<text qname="tei:term"/>
<text qname="tei:pubPlace"/>
<text qname="tei:publisher"/>
</lucene>
<!-- Range indexes -->
<range>
<create qname="@syriaca-computed-start" type="xs:date"/>
<create qname="@syriaca-computed-end" type="xs:date"/>
<create qname="@type" type="xs:string"/>
<create qname="@ana" type="xs:string"/>
<create qname="@syriaca-tags" type="xs:string"/>
<create qname="@when" type="xs:string"/>
<create qname="@target" type="xs:string"/>
<create qname="@who" type="xs:string"/>
<create qname="@ref" type="xs:string"/>
<create qname="@uri" type="xs:string"/>
<create qname="@where" type="xs:string"/>
<create qname="@active" type="xs:string"/>
<create qname="@passive" type="xs:string"/>
<create qname="@mutual" type="xs:string"/>
<create qname="@name" type="xs:string"/>
<create qname="@xml:lang" type="xs:string"/>
<create qname="@status" type="xs:string"/>
<create qname="tei:idno" type="xs:string"/>
<create qname="tei:title" type="xs:string"/>
<create qname="tei:bibl" type="xs:string"/>
<create qname="tei:geo" type="xs:string"/>
<create qname="tei:relation" type="xs:string"/>
<create qname="tei:persName" type="xs:string"/>
<create qname="tei:placeName" type="xs:string"/>
<create qname="tei:author" type="xs:string"/>
<!--
<create qname="tei:TEI">
<field name="uri" match="//tei:publicationStmt/tei:idno" type="xs:string">
<field name="uriType" match="@type" type="xs:string"/>
</field>
<field name="title" match="//tei:titleStmt/tei:title" type="xs:string"/>
</create>
<create qname="tei:revisionDesc">
<field name="status" match="@status" type="xs:string"/>
</create>
<create qname="tei:div">
<field name="divID" match="//tei:idno" type="xs:string">
<field name="divIDType" match="@type" type="xs:string"/>
</field>
</create>
-->
</range>
</index>
</collection>