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

(-)a/Makefile.PL (-1 / +1 lines)
Lines 476-482 my %valid_config_values = ( Link Here
476
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
476
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
477
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
477
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
478
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
478
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
479
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
479
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'gr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
480
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
480
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
481
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
481
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
482
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
482
  '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 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, nb, ru and uk.
55
                            values are 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.
59
- 

Return to bug 11927