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

(-)a/Makefile.PL (-1 / +1 lines)
Lines 477-483 my %valid_config_values = ( Link Here
477
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
477
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
478
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
478
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
479
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
479
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
480
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'fr' => 1, 'nb' => 1 }, # FIXME should generate from contents of distribution
480
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1 }, # FIXME should generate from contents of distribution
481
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
481
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
482
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
482
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
483
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
483
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
(-)a/debian/scripts/koha-create (-1 / +1 lines)
Lines 21-27 set -e Link Here
21
21
22
usage="Usage: $0 [--create-db|--request-db|--populate-db|--use-db] \
22
usage="Usage: $0 [--create-db|--request-db|--populate-db|--use-db] \
23
    [--marcflavor marc21|normarc|unimarc] \
23
    [--marcflavor marc21|normarc|unimarc] \
24
    [--zebralang en|nb|fr] \
24
    [--zebralang en|nb|fr|es] \
25
    [--defaultsql /path/to/some.sql] \
25
    [--defaultsql /path/to/some.sql] \
26
    [--configfile /path/to/config] [--passwdfile /path/to/passwd] \
26
    [--configfile /path/to/config] [--passwdfile /path/to/passwd] \
27
    [--database database] [--adminuser n] instancename"
27
    [--database database] [--adminuser n] instancename"
(-)a/etc/zebradb/lang_defs/es/sort-string-utf.chr (-1 / +42 lines)
Line 0 Link Here
0
- 
1
# Koha's Zebra character map file for spanish
2
#
3
encoding utf-8
4
# Character sort order definition
5
lowercase {0-9}{a-y}üzæäøöå
6
uppercase {0-9}{A-Y}ÜZÆÄØÖÅ
7
8
# Breaking characters
9
space {\001-\040}!"#$%&'\()*+,-./:;<=>?@\[\\]^_`\{|}~
10
11
# Characters to be considered equivalent for searching purposes.
12
equivalent uü
13
14
# Supplemental mappings
15
map (&auml;)        a
16
map (&aelig;)       æ
17
map (&oslash;)      ø
18
map (&aring;)       a
19
map (&ouml;)        o
20
map (&Auml;)        A
21
map (&Aelig;)       Æ
22
map (&Oslash;)      Ø
23
map (&Aring;)       A
24
map (&Ouml;)        O
25
26
map âàáäÂÀÂÄ        a
27
map êèéëÊÈÉË        e
28
map îïíÎÏ           i
29
map ôöóÔÖ           o
30
map ûùüÛÜÙ          u
31
map çÇ              c
32
map ñ               n
33
34
map (^El\s)         @
35
map (^En\s)         @
36
map (^La\s)         @
37
map (^Los\s)        @
38
map (^Las\s)        @
39
map (^Un\s)         @
40
map (^Unos\s)       @
41
map (^Una\s)        @
42
map (^Unas\s)       @

Return to bug 10431