mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
update changelist for 0.9.2
cdx: include match type in cdx query error
This commit is contained in:
parent
8d686a4a98
commit
41487dd9d4
@ -1,6 +1,13 @@
|
||||
pywb 0.9.2 changelist
|
||||
~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
* Collections Manager: Allow adding any templates to shared directory, fix adding WARCs with relative path.
|
||||
|
||||
* Replay: Remove limit by HTTP ``Content-Length`` as it may be invalid (only using the record length).
|
||||
|
||||
* WARC Revisit-Resolution Improvements: Support indexes and warcs without any ``digest`` field. If no digest is found, attempt to look up
|
||||
the original WARC record from the ``WARC-Refers-To-Target-URI`` and ``WARC-Refers-To-Date`` only, even for same url revisits.
|
||||
(Previously, only used this lookup original url was different from revisit url)
|
||||
|
||||
|
||||
pywb 0.9.1 changelist
|
||||
|
@ -58,6 +58,9 @@ class BaseCDXServer(object):
|
||||
return self.load_cdx(**fuzzy_query_params)
|
||||
|
||||
msg = 'No Captures found for: ' + query.url
|
||||
if not query.is_exact:
|
||||
msg += ' (' + query.match_type + ' query)'
|
||||
|
||||
raise NotFoundException(msg, url=query.url)
|
||||
|
||||
def _calc_search_keys(self, query):
|
||||
|
Loading…
x
Reference in New Issue
Block a user