more info on DOM filter config
[idzebra-moved-to-github.git] / NEWS
1 Fixed bug #884: Entity declarations in input are lost at retrieval time.
2
3 Implemented new filter 'dom'. See test/xslt/dom-config*xml for examples. 
4 This, like alvis, performs indexing and retrieval using XSLT. But Unlike
5 alvis, it allows multiple XSLT steps to be performed and does ISO2709
6 reading. Bug #843.
7
8 --- 2.0.10 2007/01/24
9
10 Staticrank indexing is now an index register type defined in default.idx
11 via directive 'staticrank'. The 'staticrank' directive for grs is no longer
12 supported (was only implemented for Zebra 2.0.8).
13
14 For searches, allow truncmax value to be controlled with attribute 13.
15 If given, that overrides the value of 'truncmax'.
16
17 For truncations being limited (abort at truncmax terms), zebrasrv returns
18 SearchResponse with resultSetStatus=subset.
19
20 For estimated hit counts, zebrasrv returns SearchResponse with 
21 resultSetStatus=estimate.
22
23 --- 2.0.8 2007/01/15
24
25 For searches, do not truncate more than at most 'truncmax' terms in one
26 single term with right-truncation/regular attribute. By default, 'truncmax',
27 is 10000.
28
29 Bug #781: Easier tracking of result sets. We only do this when mkstemp
30 is available (most moderun Unixes supports this). The PID is included
31 in filename : tempdir/zrs_PID_XXXXXX.
32
33 Added support for specification of staticrank for grs-class of filters.
34 This is enabled by using 'staticrank indexname' in .abs. Contents of
35 indexname (elm ... indexname:w) is then used as value for staticrank.
36
37 Implemented sorting via the ISAMB system. To enable, use sortindex:i in
38 zebra.cfg.
39
40 Added special retrieval support for sort keys. These keys can also be
41 fetched using zebra::index:field:s   
42
43 Added support for specification of approximative limits for whole query.
44 This is specified as attribute type 12. Semantics is the same as
45 estimatehits in zebra.cfg.
46
47 --- 2.0.6 2006/11/28
48
49 Fixed bug #736: Updates gets slower.
50
51 Fixed bug #735: Delete fails to process rest of file after a record that
52 does not exist,
53
54 Added RPM package for Zebra 2.
55
56 Improved indexing speed for large documents.
57
58 Added support for special utility retrieval zebra:: which offers retrieval
59 of fundamental properties for record, such as indexed terms, raw record,
60 and system record ID.
61
62 --- 2.0.4 2006/10/16
63
64 Fixed bug #47: Commit needs to check for roll-back.
65
66 Fixed bug #672: Trailing characters in password are ignored
67
68 Added extra presence check for tcl.h, because some systems have
69 tclConfig.sh installed even though Tcl C headers are missing.
70
71 Optimized melm performance.
72
73 Do not use sync(2) during commit (but rely on sync'd individual files).
74
75 Fixed bug in ISAMB's utility function decode_ptr. With gcc -O3 on some
76 platforms the src argument was not updated. Problem was compiler
77 optimization due to strict aliasing rules.
78
79 --- 2.0.2 2006/09/22
80
81 Bug fixes: #638, #647, #657, #669.
82
83 Implement skip of 0 hit counts in scan. Useful for scan operations
84 limited by a result set.
85
86 Honor position attribute, i.e. allow first-in-field search. To
87 enable this, "firstinfield 1" must be given for an index in
88 default.idx. Enabled in tab/default.idx for w. At this stage
89 first-in field is supported for phrase/and-list/or-list searches
90
91 Common stream reader interface for record filters (struct ZebraRecStream).
92
93 Debian package fix: packages idzebra-2.0 + libidzebra-2.0-modules did
94 not depend properly on sub packages.
95
96 --- 2.0.0 2006/08/14
97
98 New record filter (record type) 'alvis' which uses XSLT transformations
99 to drive both indexing as well as retrieval. See example configuration in the
100 'example/alvis-oai' directory.
101
102 'isamb' is now the default ISAM system. In Zebra 1.3, the default ISAM was
103 'isamc'. The type used can still be configured with the 'isam' setting
104 in 'zebra.cfg'.
105
106 Index structure is now 64-bit based, also on 32 bit systems. 
107 There are no more 2GB register file limits.
108
109 Extended search result tuning. Approximate limit for terms can be enabled
110 and specified with attribute 11. The (approx or exact) hit count is returned
111 as part of the search response as in 1.3 series. The subqueryID of a search
112 term hit count can be specified with attribute 10.
113
114 Zebra uses string attributes for indexing internally. Using set+numeric
115 use attribute can still be used. This is a search-only conversion which
116 inspects '*.att'-set files as indicated using attset-directives in 'zebra.cfg'.
117 'attset' references are no longer required, but when used they deserve
118 as "check" for that the index names used are also present in '*.att'.
119
120 Zebra record filters (record type handlers) may be built as loadable
121 modules (.so's) on Unix. In particular the Zebra 2.0 Debian package uses
122 separate packages for each of them. This also means that zebra programs
123 such as zebraidx is no longer depending on Tcl/other..
124
125 Documentation updates, especially on query structure and syntax, SRU, 
126 XSLT support, alvis filter module, and many added examples.
127
128 Improved logging of the 'zebrasrv' and 'zebraidx' binaries.
129
130 Improved debian package structure.
131
132 --- 1.3.16 2004/08/16