Update NEWS WRT XML header
[pazpar2-moved-to-github.git] / NEWS
1 For WS responses Pazpar2 creates XML header. Exception: raw record.
2
3 Setting XML files are now stored in etc/settings instead of etc. This
4 reflects the layout with the Debian package layout.
5
6 Settings may be posted for command=settings. The POSTed settings must
7 have root element 'settings' like regular setting files. In order to be
8 recognized, the POST request must use Content-Type=text/xml.
9
10 A service may be posted for command=init. This service will be used
11 during the session. The service may have its own target settings,
12 ICU config, timeout, etc. In order to be recognized, the POST request
13 must use Content-Type=text/xml.
14
15 Timeout values may be given per-service. That's element 'timeout' 
16 which takes three attribute values (a subset may be given): 'session',
17 'z3950_operation', 'z3950_session'. Option -T is no longer supported
18 - used to specify session timeout.
19
20 Option -t tests the Pazpar2 configuration and returns exit code
21 (0=success, non-zero=failure). In previous version of Pazpar2, -t
22 specified local settings.
23
24 In version 1.2.0 the configuration file - after include processing -
25 was dumped to stdout. Now, the configuration is only dumped to the
26 yaz log file if option -d is given.
27
28 --- 1.2.0 2009/09/10
29
30 Configuration may now have multiple server areas. This means that a
31 Pazpar2 instance may listen on multiple ports. Virtual hosting is not
32 yet supported - on a server basis. Configuration may also have multiple
33 services .. That is repeating service elements inside a server. Each
34 has an attribute 'id' which serves as service ID. This ID in turn may
35 be used in a Pazpar2 session, by specifying parameter service=ID for
36 command init. There can be at most one unnamed service inside a server
37 which can be referred to by not specifying an service ID for command
38 init (backwards compatible). In order to partition multiple servers and
39 services a new include directive has been added. This takes an attribute
40 'src' which specifies one or more sub-files. For example to include
41 service files, one might use:
42   <server >.. <include src=/"etc/pazpar2/conf.d/*.xml"/> .. </server>.
43 It is the intention that that completely makes the settings directive
44 redundant.
45
46 Fix problem where the record command would wait forever if there were
47 no targets to wait for (activeclients == 0).
48
49 --- 1.1.1 2009/08/28
50
51 One result set is created per session (last search) rather than for
52 each connection which happen to be shared (bug #3009).
53
54 marc21 stylesheets changed for efficiency.
55
56 --- 1.1.0 2009/08/19
57
58 Session timeout may be specified on the command-line as option -T.
59
60 Pazpar2 may now be operated in a no-merged mode for records.. All records
61 will be considered unique. This mode is enabled if no mergekey is
62 generated by the normalization stylesheet (pz:xslt). 
63
64 Pazpar2 caches original records from each target and the 'record' command
65 with offset returns the original record if 'syntax' and 'esn' are NOT
66 specified. This speeds up retrieval of original records but also means
67 that Pazpar2 uses more memory. The cached records will be freed when the
68 session terminates or a new search is executed.
69
70 Pazpar2 no longer uses its own ICU wrapper. Instead the ICU wrapper
71 library part of YAZ is used.
72
73 Added SRU client support.
74
75 Automatically computes pz:nativesyntax if not provided. Works for XML and
76 MARC.
77
78 --- 1.0.13 2008/11/24
79
80 Command bytarget returns name of target (if defined).
81
82 --- 1.0.12 2008/11/04
83
84 Fixed bug #2021.. location now holds all brief elements.
85
86 --- 1.0.11 2008/10/15
87
88 Fixed check for application/x-www-form-urlencoded parameters.
89
90 --- 1.0.10 2008/10/14
91
92 Fixes for IE in pz2.js.
93
94 Fixed bug #2021: non-merged, brief meta data NOT included for command=show.
95
96 --- 1.0.9 2008/05/23
97
98 Changed the JS library pz2.js to use POST for long URL (+ params).
99
100 Added installation instructions for Windows. Note: NT services is
101 NOT available until we make a new release of YAZ.
102
103 Preserve order of repeated metadata fields (they were reversed before).
104
105 More MARC21 information extracted for metadata.
106
107 --- 1.0.8 2008/04/22
108
109 Fixed bug #1162: HTML entities are not escaped properly.
110
111 Native Windows port of Pazpar2. Makefile for Visual Studio provided.
112
113 --- 1.0.7 2008/04/14
114
115 Marc21 stylesheet updated to reflect multiple full text fields
116
117 --- 1.0.6 2008/03/12
118
119 Fixed bug in pz2.js WRT DOMElement attributes on IE.
120
121 Fixed bug 2100: Database wildcards not working
122
123 --- 1.0.5 2007/11/09
124
125 Added support for retrieval of records in binary.
126
127 Fixed bug 1794: Pazpar2 does not return valid XML.
128
129 Deal with ICU not returning sortkey (resulted in SEGV before).
130
131 --- 1.0.4 2007/09/28
132
133 JavaScript library pzw2.js throws error if WS response (from Pazpar2 or
134 other) is malformed (non-wellformed XML or missing Pazpar2 OK status).
135
136 Improved diagnostics when Pazpar2 HTTP decoding fails.
137
138 Pazpar2 requests may be POSTed as using Content-Type
139 application/x-www-form-urlencoded.
140
141 Pazpar2 honors LF in HTTP headers.
142
143 Handle targets that handle negative hit counts (should not happen, but it
144 does).
145
146 --- 1.0.3 2007/09/19
147
148 ICU is used for tokenization and normalization of the following: mergekey,
149 sorting, relevance terms.
150
151 Debian package now enables ICU tokenization and normalization by default.
152
153 --- 1.0.2 2007/08/22
154
155 Exposed user setting values (i.e. non-pz: names) to the record systems in two
156 ways: Either as parameters to the normalization stylesheets (which would allow the
157 programmer to postprocess or use the values in any way) or after the normalization
158 step, in which case values are made part of the normalized record (and available for
159 sorting, termlists, display, or other interface-related use.
160
161 Implemented sorting by year.
162
163 Option -d dumps records to the current log file instead of stderr.
164
165 Fixes for compilation on cygwin.
166
167 Z39.50 client code uses pz:elements. pz:elements was recognized in
168 earlier Pazpar2 versions but it was not used for anything.
169
170 icu_chain_test is using fgets instead of getline - fixes compilation
171 on MacOSX .
172
173 Loosen the CCL query parsing so that Pazpar2 only returns error if _all_
174 query conversions fail (rather than _any_). This means targets that do
175 not support some fields are ignored in a search.
176
177 --- 1.0.1 2007/07/03
178
179 Improved handling of socket timeout for Z39.50 connections. 
180
181 Misc documentation updates and spell fixes.
182
183 Debian package pazpar2 creates log rotate entry.
184
185 Debian package pazpar2-apache2 reloads Apache2.
186
187 jsdemo included in distribution. It illustrates the use of the js/pz2.js
188 JavaScript library.
189
190 --- 1.0.0 2007/06/20
191
192 First public release.
193