View | Details | Raw Unified | Return to bug 16952
Collapse All | Expand All

(-)a/Makefile.PL (-1 / +1 lines)
Lines 475-481 my %valid_config_values = ( Link Here
475
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
475
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
476
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
476
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
477
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
477
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
478
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'gr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
478
  'ZEBRA_LANGUAGE'    => { 'cs' => 1, 'en' => 1, 'es' => 1, 'fr' => 1, 'gr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
479
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
479
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
480
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
480
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
481
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
481
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
(-)a/debian/scripts/koha-create (-1 / +1 lines)
Lines 52-58 Options: Link Here
52
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
52
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
53
                            normarc and unimarc.
53
                            normarc and unimarc.
54
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
54
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
55
                            values are en (default), es, fr, gr, nb, ru and uk.
55
                            values are cs, en (default), es, fr, gr, nb, ru and uk.
56
  --auth-idx idx_mode       Set the indexing mode for authority records. Valid
56
  --auth-idx idx_mode       Set the indexing mode for authority records. Valid
57
                            values are dom (default) and grs1.
57
                            values are dom (default) and grs1.
58
  --biblio-idx idx_mode     Set the indexing mode for bibliographic records.
58
  --biblio-idx idx_mode     Set the indexing mode for bibliographic records.
(-)a/debian/templates/koha-sites.conf (-1 / +1 lines)
Lines 27-33 DEFAULTSQL="" Link Here
27
# default: 'marc21'
27
# default: 'marc21'
28
ZEBRA_MARC_FORMAT="marc21"
28
ZEBRA_MARC_FORMAT="marc21"
29
29
30
# ZEBRA_LANGUAGE: 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk'
30
# ZEBRA_LANGUAGE: 'cs' | 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk'
31
# Primary language for Zebra indexing
31
# Primary language for Zebra indexing
32
# default: 'en'
32
# default: 'en'
33
ZEBRA_LANGUAGE="en"
33
ZEBRA_LANGUAGE="en"
(-)a/etc/zebradb/lang_defs/cs/sort-string-utf.chr (-1 / +42 lines)
Line 0 Link Here
0
- 
1
# Koha's Zebra character map file for czech
2
#
3
encoding utf-8
4
# Character sort order definition
5
lowercase {0-9}abcčdefgh(ch)ijklmnopqrřsštuvwxyzž
6
uppercase {0-9}ABCČDEFGH(Ch)IJKLMNOPQRŘSŠTUVWXYZŽ
7
8
# Breaking characters
9
space {\001-\040}!"#$%&'\()*+,-./:;<=>?@\[\\]^_`\{|}~{\x88-\x89}
10
11
# Characters to be considered equivalent for searching purposes.
12
equivalent aáä
13
equivalent dď
14
equivalent eéěë
15
equivalent ií
16
equivalent lľł
17
equivalent nň
18
equivalent oóö
19
equivalent sß
20
equivalent tť
21
equivalent uůúü
22
equivalent yý
23
24
# Supplemental mappings
25
map (&auml;)        a
26
map (&aring;)       a
27
map (&ouml;)        o
28
map (&Auml;)        A
29
map (&Aring;)       A
30
map (&Ouml;)        O
31
map âàáäÂÀÁÄ        a
32
map çÇ              c
33
map ďĎ              d
34
map êèéëÊÈÉË        e
35
map îïíÎÏÍ          i
36
map ľĽłŁ            l
37
map ñňŇ             n
38
map ôöóÔÖÓ          o
39
map ß               s
40
map ťŤ              t
41
map ûùúüůÛÜÙÚŮ      u
42
map ýÿÝŸ            y

Return to bug 16952