From e782ecb87d4e300bf1473c5b85123468c7c4193b Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Mon, 2 Apr 2012 12:21:23 +0200 Subject: [PATCH] ignore unfilled placeholders, add an atom: namespace to opensearch.xml --- apps/opds/views.py | 5 +++++ lib/librarian | 2 +- wolnelektury/static/opensearch.xml | 3 ++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/opds/views.py b/apps/opds/views.py index e01c17283..bb38b7b6b 100644 --- a/apps/opds/views.py +++ b/apps/opds/views.py @@ -370,6 +370,11 @@ class SearchFeed(AcquisitionFeed): author = request.GET.get('author', '') title = request.GET.get('title', '') translator = request.GET.get('translator', '') + + # Our client didn't handle the opds placeholders + if author == '{atom:author}': author = '' + if title == '{atom:title}': title = '' + if translator == '{atom:contributor}': translator = '' categories = None fuzzy = False diff --git a/lib/librarian b/lib/librarian index b8e34e0e6..9e13b0c99 160000 --- a/lib/librarian +++ b/lib/librarian @@ -1 +1 @@ -Subproject commit b8e34e0e6730ef76a353a15ff653faa9e8c88a77 +Subproject commit 9e13b0c994e9d481008bef7006a74609adfd16f8 diff --git a/wolnelektury/static/opensearch.xml b/wolnelektury/static/opensearch.xml index 1e05889ad..8ccdd269b 100644 --- a/wolnelektury/static/opensearch.xml +++ b/wolnelektury/static/opensearch.xml @@ -1,6 +1,7 @@ + xmlns:atom="http://www.w3.org/2005/Atom" + xmlns:moz="http://www.mozilla.org/2006/browser/search/"> Wolne Lektury WolneLektury.pl, szkolna biblioteka internetowa. UTF-8 -- 2.20.1