forked from infrae/pyoai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HISTORY.txt
221 lines (148 loc) · 4.84 KB
/
HISTORY.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
Changelog
=========
2.4.5 (unreleased)
~~~~~~~~~~~~~~~~~~
- Added unofficial GetMetadata verb in server and client. GetMetadata is
identical to GetRecord, but only returns the first element below the
oai:metadata element, it does not return the oai enveloppe.
2.4.4 (2010-09-30)
~~~~~~~~~~~~~~~~~~
* Changed contact info, Migrated code from Subversion to Mercurial
2.4.3 (2010-08-19)
~~~~~~~~~~~~~~~~~~
Changes
-------
* Convert lxml.etree._ElementUnicodeResult and ElementStringResult
to normal string and unicode objects, to prevent errors when these
objects get pickled. (lp #617439)
2.4.2 (2010-05-03)
~~~~~~~~~~~~~~~~~~
Changes
-------
* OAI_DC and DC namespace declarations should not be declared on the document
root, but on the child of the metadata element. According to the OAI spec
2.4.1 (2009-11-16)
~~~~~~~~~~~~~~~~~~
Changes
-------
* When specifying a date (not a datetime) for the until parameter,
default to 23:59:59 instead of 00:00:00
2.4 (2009-05-04)
~~~~~~~~~~~~~~~~
Changes
-------
* Included support for description elements in OAI Identify headers,
added 'toolkit' description by default.
2.3.1 (2009-04-24)
~~~~~~~~~~~~~~~~~~
Changes
-------
* Raise correct error when from and until parameters have different granularities
2.3 (2009-04-23)
~~~~~~~~~~~~~~~~
Changes
-------
* Fixed bug and added tests for handling invalid dateTime formats,
the server will now respond with a BadArgument (XML) error instead
of a python traceback.
* Use buildout to create testrunner and environment as opposed to
``test.py`` script.
Install buildout by:
$ python bootstrap.py
$ bin/buildout
Run the tests by doing:
$ bin/test
To get a python interpreter with the ``oaipmh`` library importable::
$ bin/devpython
2.2.1 (2008-04-04)
~~~~~~~~~~~~~~~~~~
Changes
-------
* Added xml declaration to server output
* Prettyprint xml output
* compatibility fix: should be compatible with lxml 2.0 now
* server resumption tokens now work with POST requests.
* Fix for client code that handles 503 response from server.
2.2 (2006-11-20)
~~~~~~~~~~~~~~~~
Changes
-------
* Support for BatchingServer. A BatchingServer implements the
IBatchingOAI interface. This is very similar to IOAI, but methods
get a 'cursor' and 'batch_size' argument. This can be used to
efficiently implement batching OAI servers on top of relational
databases.
* Make it possible to explicitly pass None as the from or until parameters
for a OAIPMH client.
* an extra nsmap argument to Server and BatchingServer allows the
programmer to specify either namespace prefix to namespace URI mappings
that should be used in the server output.
* fixed a bug where the output wasn't encoded properly as UTF-8.
2.1.5 (2006-09-18)
~~~~~~~~~~~~~~~~~~
Changes
-------
* compatibility fix: it should work with lxml 1.1 now.
2.1.4 (2006-06-16)
~~~~~~~~~~~~~~~~~~
Changes
-------
* Distribute as an egg.
2.1.3
~~~~~
Changes
-------
* Add infrastructure to deal with non-XML compliant OAI-PMH feeds;
an XMLSyntaxError is raised in that case.
* added tolerant_datestamp_to_datetime which is a bit more tolerant
than the normal datestamp_to_datetime when encountering bad
datestamps.
* Split off datestamp handling into separate datestamp module.
2.0
~~~
Changes
-------
* Add support for day-only granularity (YYYY-MM-DD) in client.
calling 'updateGranularity' with the client will check with the
server (using identify()) to see what granularity the server
supports. If the server only supports day level granularity, the
client will make sure only YYYY-MM-DD timestamps are sent.
2.0b1
~~~~~
Changes
-------
* Added framework for implementing OAI-PMH compliant servers.
* Changed package structure: now a oaipmh namespace package. Client
functionality now in oaipmh.client.
* Refactoring of oaipmh.py module to reuse code for both client and
server.
* Extended testing infrastructure.
* Switched over from using libxml2 Python wrappers to the lxml binding.
* Use generators instead of hacked up __getitem__. This means that the
return from listRecords, listIdentifiers and listSets are now not
normal lists but iterators. They can easily be turned into a normal
list by using list() on them, however.
1.0.1
~~~~~
Bugs fixed
----------
* Typo in oaipmh.py
1.0
~~~
Bugs fixed
----------
* Added an encoding parameter to the serialize call, which fixes a
unicode bug.
0.7.4
~~~~~
Bugs fixed
----------
* A harvest can return records with <header status~"deleted"> that
contain no metadata and are merely an indication that that
metadata-set for that resource is no longer on the OAI service.
These records should be used to remove metadata from the catalog if
it is there, bur should never be stored or catalogued
themselves. They aren't now. (Fixed in zope/OAICore/core.py)
0.7
~~~
Initial public release.