View | Details | Raw Unified | Return to bug 11927
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, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
478
  'ZEBRA_LANGUAGE'    => { '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/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|nb|ru|uk</arg>
29
      <arg><option>--zebralang</option> en|es|fr|gr|nb|ru|uk</arg>
30
      <arg><option>--auth-idx</option> dom|grs1</arg>
30
      <arg><option>--auth-idx</option> dom|grs1</arg>
31
      <arg><option>--biblio-idx</option> dom|grs1</arg>
31
      <arg><option>--biblio-idx</option> dom|grs1</arg>
32
      <arg><option>--use-memcached</option></arg>
32
      <arg><option>--use-memcached</option></arg>
(-)a/debian/scripts/koha-create (-2 / +1 lines)
Lines 42-48 Options: Link Here
42
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
42
  --marcflavor flavor       Set the MARC flavor. Valid values are marc21 (default),
43
                            normarc and unimarc.
43
                            normarc and unimarc.
44
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
44
  --zebralang lang          Choose the primary language for Zebra indexing. Valid
45
                            values are en (default), es, fr, nb, ru and uk.
45
                            values are en (default), es, fr, gr, nb, ru and uk.
46
  --auth-idx idx_mode       Set the indexing mode for authority records. Valid
46
  --auth-idx idx_mode       Set the indexing mode for authority records. Valid
47
                            values are dom (default) and grs1.
47
                            values are dom (default) and grs1.
48
  --biblio-idx idx_mode     Set the indexing mode for bibliographic records.
48
  --biblio-idx idx_mode     Set the indexing mode for bibliographic records.
49
- 

Return to bug 11927