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 / +39 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 eéěë
14
equivalent dď
15
equivalent ií
16
equivalent lľ
17
equivalent nň
18
equivalent oóö
19
equivalent tť
20
equivalent uůúü
21
equivalent yý
22
23
# Supplemental mappings
24
map (&auml;)        a
25
map (&aring;)       a
26
map (&ouml;)        o
27
map (&Auml;)        A
28
map (&Aring;)       A
29
map (&Ouml;)        O
30
map âàáäÂÀÁÄ        a
31
map êèéëÊÈÉË        e
32
map îïíÎÏÍ          i
33
map ôöóÔÖÓ          o
34
map ûùúüÛÜÙÚ        u
35
map çÇ              c
36
map ñňŇ             n
37
map ďĎ              d
38
map ťŤ              t
39

Return to bug 16952