-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.xml
More file actions
58 lines (46 loc) · 2.03 KB
/
server.xml
File metadata and controls
58 lines (46 loc) · 2.03 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="xsl/doc/pazpar2-docs.xsl"?>
<pazpar2
xmlns="http://www.indexdata.com/pazpar2/1.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<!--
2014/2015: Clemens Elmlinger, BSZ Konstanz <clemens.elmlinger@bsz-bw.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<!-- non-zero to enable threaded operation -->
<threads number="4"/>
<server>
<listen host="localhost" port="9004"/>
<proxy host="localhost" port="80"/>
<!-- SWB Site -->
<!-- Examples of ervices: UB Konstanz (KN) and UB Tübingen (TUEB)
< xi:include href="services/BSZTUE.xml"/ >
< xi:include href="services/BSZULM.xml"/-->
<xi:include href="services/BSZKN.xml"/>
<icu_chain id="relevance" locale="en">
<transform rule="[:Control:] Any-Remove"/>
<tokenize rule="l"/>
<transform rule="NFD; [[:Control:][:WhiteSpace:][:Punctuation:][:Symbol:][:Math:][:Nonspacing Mark:]] Remove; NFC"/>
<casemap rule="l"/>
</icu_chain>
<icu_chain id="sort" locale="en">
<transform rule="[[:Control:][:WhiteSpace:][:Punctuation:][:Math:]] Remove"/>
<casemap rule="l"/>
</icu_chain>
<icu_chain id="mergekey" locale="en">
<tokenize rule="s"/>
<transform rule="NFD; [[:Control:][:WhiteSpace:][:Punctuation:][:Symbol:][:Math:][:Nonspacing Mark:]] Remove; NFC"/>
<casemap rule="l"/>
</icu_chain>
</server>
</pazpar2>