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

(-)a/Makefile.PL (-1 / +1 lines)
Lines 535-541 my %valid_config_values = ( Link Here
535
  'DB_USE_TLS' => {'yes', 'no'},
535
  'DB_USE_TLS' => {'yes', 'no'},
536
  'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 },
536
  'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 },
537
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
537
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
538
  '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
538
  'ZEBRA_LANGUAGE'    => { 'cs' => 1, 'el' => 1, 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
539
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
539
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
540
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
540
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
541
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
541
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
(-)a/debian/docs/koha-create.xml (-1 / +1 lines)
Lines 26-32 Link Here
26
      <command>koha-create</command>
26
      <command>koha-create</command>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
28
      <arg><option>--marcflavor</option> marc21|normarc|unimarc</arg>
28
      <arg><option>--marcflavor</option> marc21|normarc|unimarc</arg>
29
      <arg><option>--zebralang</option> en|es|fr|gr|nb|ru|uk</arg>
29
      <arg><option>--zebralang</option> el|en|es|fr|nb|ru|uk</arg>
30
      <arg><option>--memcached-servers</option> server:port</arg>
30
      <arg><option>--memcached-servers</option> server:port</arg>
31
      <arg><option>--memcached-prefix</option> namespace_prefix</arg>
31
      <arg><option>--memcached-prefix</option> namespace_prefix</arg>
32
      <arg><option>--elasticsearch-server</option> server:port</arg>
32
      <arg><option>--elasticsearch-server</option> server:port</arg>
(-)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 cs, en (default), es, fr, gr, nb, ru and uk.
55
                            values are cs, el, en (default), es, fr, nb, ru and uk.
56
  --elasticsearch-server s  Enforce the use of the specified Elasticsearch server(s)
56
  --elasticsearch-server s  Enforce the use of the specified Elasticsearch server(s)
57
                            (default: localhost:9200).
57
                            (default: localhost:9200).
58
  --memcached-servers str   Set a comma-separated list of host:port memcached servers.
58
  --memcached-servers str   Set a comma-separated list of host:port memcached servers.
(-)a/debian/templates/koha-sites.conf (-1 / +1 lines)
Lines 28-34 DEFAULTSQL="" Link Here
28
# default: 'marc21'
28
# default: 'marc21'
29
ZEBRA_MARC_FORMAT="marc21"
29
ZEBRA_MARC_FORMAT="marc21"
30
30
31
# ZEBRA_LANGUAGE: 'cs' | 'en' | 'es' | 'fr' | 'gr' | 'nb' | 'ru' | 'uk'
31
# ZEBRA_LANGUAGE: 'cs' | 'el' | 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk'
32
# Primary language for Zebra indexing
32
# Primary language for Zebra indexing
33
# default: 'en'
33
# default: 'en'
34
ZEBRA_LANGUAGE="en"
34
ZEBRA_LANGUAGE="en"

Return to bug 25149