Fixed configure script.
[idzebra-moved-to-github.git] / CHANGELOG
1 Fixed bug with configure script - used bash-specific features.
2
3 --- 1.0 1999/12/10
4
5 The software was split in two products Zebra (for testing,
6 non-profit use) and the commercial product Z'mbol. Zebra no
7 longer supports INDEX UPDATES, i.e. zebraidx should be invoked only
8 once for each register. Refer to LICENSE.zebra for more info.
9
10 Added support for multiple records in one file for filter grs.sgml.
11
12 Changed record index structure. New layout is incompatible with
13 previous releases. Added setting "recordcompression" to control
14 compression of records. Possible values are "none" (no
15 compression) and bzip2 (compression using libbz2).
16
17 Added XML transfer syntax support for retrieval of structured records.
18 Schema in CompSpec is recognised in retrieval of structured records.
19
20 Changed Tcl record filter so that it attemps to read  <filt>.tflt. If
21 that fails, the filter reads the file <filt>.flt (regx style filter).
22
23 Implemented new Tcl record filter -  use grs.tcl.<filter> to enable it.
24 Zebra's configure script automatically attempts to locate Tcl. For
25 manual Tcl configuration use option --with-tclconfig=<path> to specify
26 where Tcl's library files are located.
27
28 Implemented "compression" of Dictionary and ISAM system. Dictionary
29 format HAS changed.
30
31 Added "tagsysno" directive to zebra.cfg to control under which tag the
32 system ID is placed. Use tagsysno: 0 to disable Zebra's system number
33 entirely.
34
35 Added "tagrank" as above.
36
37 Changed file naming scheme for register files from <name>.mf.<no> to
38 <name>-<no>.mf.
39
40 Implemented "position"-flag for register type (as defined in
41 default.idx). When set to zero no position (or seqence number) is
42 saved in register for each word occurrence, thus saving some register
43 space.
44
45 Implemented database mapping. Using mapdb one can specify a database
46 to be mapped to one or more physical databases. Usage:
47 mapdb <fromdb> <todb> ..
48
49 Added SOIF-filter. Thanks to Peter Valkenburg.
50
51 For the regx-filter "end element -record" may trigger a mark-of-record
52 if outer level is reached.
53
54 Tag sets may be typed in the reference to it. From the .abs-file the
55 "tagset" directive takes a third optional integer type for the tag set
56 referenced. From a .tag-file the "include" directive takes a third
57 optional type as well. The old "type" directive in the tag set itself
58 is still recognized but acts as the default type for the tag set.
59  
60 Zebra supports the specification of arbitrary attributes sets, schemas
61 and tag sets, because of the change in YAZ' OID management system.
62
63 Fixed bug in Sort that caused it NOT to use character mapping as it
64 should.
65
66 Zebra now uses GNU configure to generate Makefile(s).
67
68 Added un-optimised support for left and left/right truncation attributes.
69
70 Added support for relational operators on text when using RPN queries.
71
72 Added support for sort specifications in RPN queries. Type 7 specifies
73 'sort' where value 1=ascending, value 2=descending. The use attribute
74 specifies the field criteria as usual.  The term specifies priority
75 where 0=first, 1=second, ...
76
77 Changed the way use attributes are specified in the recordId
78 specification.
79
80 Maximum number of databases in one Zebra register increased.
81
82 New setting, databasePath, which specifies that first directory during
83 update traversal is the database name (instead of a fixed one).
84
85 New setting, explainDatabase, which specifies that databases are
86 EXPLAIN aware.
87
88 Modified Zebra so that it works with ASN.1 compiled code for YAZ.
89
90 Implemented EXPLAIN database maintenance. Zebra automatically
91 generate - and update CategoryList, TargetInfo, DatabaseInfo,
92 AttributeSetInfo and AttributeDetails records at this stage. The
93 records may be transferred as GRS-1, SUTRS or Explain.
94
95 Fixed register spec so that colon isn't treated as size separator
96 unless followed by [0-9+-] in order to allow DOS drive specifications.
97
98 Fixed two bugs in ISAMC system.
99
100 Changed the way Zebra keeps its maintenance information about attribute
101 sets, available attributes, etc.. Records in "SGML" notation using an
102 EXPLAIN schema is now used when appropriate.
103
104 Bug fix: Index didn't handle update/insert/delete of the same record
105 (i.e. same recordId) in one run (one invocation of zebraidx). Only the
106 first occurence of a record is considered.
107
108 Most searches now return correct number of hits.
109
110 New modular ranking system. Interested programmers are encouraged to
111 inspect rank1.c and improve the algorithm.
112
113 Bug fix: Lock files weren't removed as they should on NT.
114
115 Implemented Z39.50 Sort. Zebra's sort handler uses use attributes to
116 specify a "sort register". Refer to the gils sample records which refer
117 to index type "s" which is specified as "sort" in the default.idx file.
118 Each sort criteria can either be Ascending or Descending and at most
119 three sort elements can be specified.  
120
121 Bug fix: Character mapping didn't work for text files.
122
123 --- 1.0b1 1998/1/29
124
125 Simple ranked searches now return correct number of hits.
126
127 The test option (-s) only makes a read-lock on the index as well
128 as using read-only operations anywhere.
129
130 Moved towards generic character mapping. Configuration file default.idx
131 specifies character map files for register types w, p, u, etc.
132
133 Implemented "begin variant" for the sgml.regx - filter.
134
135 Fixed a few memory leaks.
136
137 Added support for C++, headers uses extern "C" for public definitions.
138
139 Bug fix: The show records facility (-s) only displayed information for
140 the first record in a file (and not for every record in the file).
141
142 Added option "-f <n>" to limit the logging of record operations. After
143 <n> records has been processed no logging is performed (unless errors
144 occur).
145
146 Bug fix: the compressed ISAM system didn't handle update operations
147 correctly.
148
149 Added setting, "maxResultSetSize", to hold the number of records to 
150 save in a result set.
151
152 Bug fix: Complete phrase did't work for search operations.
153
154 Bug fix: temporary result sets weren't deleted.
155
156 Reduced disk space for saved keys (storeKeys = 1).
157
158 Added optional, physical ANY (key replication)
159
160 Implemented proximity operator in search.
161
162 Bug fix: the path name buffers used by file match traversal routines
163 have been extended to support long file names.
164
165 New C(ompressed) ISAM system. To enable it, specify "isam: c" in the
166 configuration file. The resulting register without "storeKeys" is about
167 half the size, and the memory used by zebraidx during phase 2 (merge) is
168 reduced to a minimum.
169
170 Reworked the way Regexp-2 queries with error tolerance are handled and
171 specified. The documentation has been updated accordingly.
172
173 Bug fix: Zebrasrv didn't search correctly when queries contained masking
174 characters. This bug was introduced in 1.0a8.
175
176 Zebrasrv now tag records with the proper database name.
177
178 New settings, memMax and keyTmpDir.
179
180 Changed name of setting lockDir (previously called lockPath) and
181 setTmpDir (previously called tempSetPath).
182
183 Generalized and changed record type specifications. In short, there are:
184        text                plain SUTRS
185        grs.sgml            structured, "SGML-like" syntax
186        grs.regx.<filter>   structured, Regular expression filter
187        grs.marc.<abs>      Reads *MARC records in the ISO2709 format. <abs>
188                            is the name of an abstract syntax file.                           
189 Bug fix: Result sets weren't sorted in operations involving boolean
190 operations with "ranked" operands.
191
192 --- 1.0a8 1996/6/6
193
194 Added national character-handling subsystem.
195
196 Various fixes.
197
198 Small modifications to input filters and profiles.
199
200 Added support for SOIF syntax (with private OID).
201
202 --- 1.0a7 1996/5/16
203
204 Fixed buffer-size problem in indexing.
205
206 Added compression to temporary files for updating.
207
208 Added phrase registers.
209
210 Added dynamic mapping of search attribute to multiple termlists (ANY).
211
212 Scan support in multiple databases/registers.
213
214 Configuration settings are case-insensitive and single dash (-)
215 characters are ignored in comparisons.
216
217 The index processing ignores empty files - warning given.
218
219 New option to zebraidx (-V) displays version information.
220
221 --- 1.0a6 1996/2/24
222
223 Fixed problem in file-update system.
224
225 Fixed problem in shadow system; register was sometimes corrupted after
226 a commit operation.
227
228 --- 1.0a5 1996/2/10
229
230 Fixed problems in the ISAM subsystem. Caused difficulties when updating
231 existing registers.
232
233 Fixed small problem in SUTRS-filter. A newline was sometimes inserted before
234 the rank and record number.
235
236 Fixed bug in the isam subsystem - caused a malfunction when accessing
237 words which occurred more than 10000 times.
238
239 Distribution should now include YAZ (Z39.50 protocol stack) to simplify
240 installation.
241
242 Server can now run under inetd. Use option -i, and -w <directory> to
243 set working directory to desired location.
244
245 New zebraidx command: clean - removes temporary shadow files.
246
247 Fixed bug in ISAM system. Occurred rarely during register updates.
248
249 Logging during index merge phase is improved. The remaining running
250 time is estimated.
251
252 Temporary files generated by zebraidx are removed after each run.
253
254 Bug fix: Dictionary didn't handle 8-bit characters correctly; was obvious
255 when doing scan operations in dictionaries with European characters.
256
257 --- 1.0a4 1996/01/11
258
259 A whole slew of updates, to make the first publicized release. Get the doc
260 and check it out.
261
262 --- 1.0a3 1995/12/06
263
264 Memory-problems in ISAM fixed. More blocktypes added to the default setup
265 to increase performance on larger databases.
266
267 Various minor changes in data management system.
268
269 --- 1.0a2 1995/12/05
270
271 A couple of portability-problems resolved.
272
273 Changed some malloc() to xmalloc().
274
275 --- 1.0a1 1995/11/28
276
277 First release.