X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2Finstallation.xml;h=5af253176b9e5d1dc7358cf8e832130d6e6e9b09;hb=2a793a2ad3c0864d9654be660da329dd34dd44f6;hp=29708bffd81a756b17e82a51e5a014f3b737b44f;hpb=92e6edd8ee7ab998fe525ade78ae7859533bdd56;p=idzebra-moved-to-github.git diff --git a/doc/installation.xml b/doc/installation.xml index 29708bf..5af2531 100644 --- a/doc/installation.xml +++ b/doc/installation.xml @@ -1,4 +1,4 @@ - + Installation @@ -204,9 +204,10 @@ GNU/Debian - GNU/Debian Linux + GNU/Debian Linux on + i686 Platform - Index Data provides pre-compiled GNU/Debian + Index Data provides pre-compiled GNU/Debian i686 Linux packages at our Debian package archive, both for the Sarge and the Etch release. @@ -415,6 +416,61 @@ + + + Upgrading from Zebra version 1.3.x + + Zebra's installation directories have changed a bit. In addition, + the new loadable modules must be defined in the + master zebra.cfg configuration file. The old + version 1.3.x configuration options + + # profilePath - where to look for config files + profilePath: some/local/path:/usr/share/idzebra/tab + + must be changed to + + # profilePath - where to look for config files + profilePath: some/local/path:/usr/share/idzebra2.0/tab + + # modulePath - where to look for loadable zebra modules + modulePath: /usr/lib/idzebra2.0/ + + + + The internal binary register structures have changed; all Zebra + databases must be re-indexed after upgrade. + + + The attribute set defintion files may no longer contain + redirection to other fields. + For example the following snippet of + a custom custom/bib1.att + Bib-1 attribute set definition file is no + longer supported: + + att 1016 Any 1016,4,1005,62 + + and should be changed to + + att 1016 Any + + Similar behaviour can be expressed in the new release by defining + a new index Any:w in all GRS + *.abs record indexing configuration files. + The above example configuration needs to make the changes + from version 1.3.x indexing instructions + + xelm /*/alternative Body-of-text:w,Title:s,Title:w + xelm /*/title Body-of-text:w,Title:s,Title:w + + to version 2.0.0 indexing instructions + + xelm /*/alternative Any:w,Body-of-text:w,Title:s,Title:w + xelm /*/title Any:w,Body-of-text:w,Title:s,Title:w + + +