Bugzilla – Attachment 56566 Details for
Bug 17278
Limit to available items returns 0 results
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 17278: Use available limit when requesting zebra when ccl query is used
SIGNED-OFF-Bug-17278-Use-available-limit-when-requ.patch (text/plain), 3.60 KB, created by
Josef Moravec
on 2016-10-16 08:11:49 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 17278: Use available limit when requesting zebra when ccl query is used
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2016-10-16 08:11:49 UTC
Size:
3.60 KB
patch
obsolete
>From 40a023d3308181c03402069a256ccd3422622cfa Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 3 Oct 2016 10:45:13 +0100 >Subject: [PATCH] [SIGNED-OFF] Bug 17278: Use available limit when requesting > zebra when ccl query is used > >When a ccl query is used, the buildQuery subroutine does not handle >the available limit (not an index). >This available limit is handle later in the subroutine. >This affect the author links on the detail page for instance (an=xx). >A much better solution would be to keep an 'available' zebra index up-to-date. > >Test plan: >(OPAC or staff interface, it does not matter) >- Launch a search, click on a result and then on an author link to > launch another query (an:xx) >- Limit to available items without the 'facet' >=> Without this patch you won't get any results >=> With this patch applied you should get relevant result (regarding the >known bugs 16970, 13715, 13658, 5463, etc.) > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > C4/Search.pm | 9 +++++++-- > t/db_dependent/Search.t | 10 ++++++++-- > 2 files changed, 15 insertions(+), 4 deletions(-) > >diff --git a/C4/Search.pm b/C4/Search.pm >index ef61338..8245f07 100644 >--- a/C4/Search.pm >+++ b/C4/Search.pm >@@ -1476,10 +1476,15 @@ sub buildQuery { > # This is needed otherwise ccl= and &limit won't work together, and > # this happens when selecting a subject on the opac-detail page > @limits = grep {!/^$/} @limits; >+ my $original_q = $q; # without available part > if ( @limits ) { >- $q .= ' and '.join(' and ', @limits); >+ if ( grep { /^available$/ } @limits ) { >+ $q .= q| and ( ( allrecords,AlwaysMatches:'' not onloan,AlwaysMatches:'') and (lost,st-numeric=0) )|; >+ delete $limits['available']; >+ } >+ $q .= ' and '.join(' and ', @limits) if @limits; > } >- return ( undef, $q, $q, "q=ccl=".uri_escape_utf8($q), $q, '', '', '', 'ccl' ); >+ return ( undef, $q, $q, "q=ccl=".uri_escape_utf8($q), $original_q, '', '', '', 'ccl' ); > } > if ( $query =~ /^cql=/ ) { > return ( undef, $', $', "q=cql=".uri_escape_utf8($'), $', '', '', '', 'cql' ); >diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t >index f051655..088664d 100644 >--- a/t/db_dependent/Search.t >+++ b/t/db_dependent/Search.t >@@ -603,6 +603,12 @@ if ( $indexing_mode eq 'dom' ) { > ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0); > is($results_hashref->{biblioserver}->{hits}, undef, "Search for 'pressed' returns no matches when stemming is off"); > >+ ( $error, $query, $simple_query, $query_cgi, >+ $query_desc, $limit, $limit_cgi, $limit_desc, >+ $query_type ) = buildQuery([], [ 'ccl=an:42' ], [], ['available'], [], 0, 'en'); >+ is( $query, 'an:42 and ( ( allrecords,AlwaysMatches:'' not onloan,AlwaysMatches:'') and (lost,st-numeric=0) )', 'buildQuery should add the available part to the query if requested with ccl' ); >+ is( $query_desc, 'an:42', 'buildQuery should remove the available part from the query' ); >+ > # Let's see what happens when we pass bad data into these routines. > # We have to catch warnings since we're not very good about returning errors. > >@@ -948,12 +954,12 @@ sub run_unimarc_search_tests { > } > > subtest 'MARC21 + GRS-1' => sub { >- plan tests => 107; >+ plan tests => 109; > run_marc21_search_tests('grs1'); > }; > > subtest 'MARC21 + DOM' => sub { >- plan tests => 107; >+ plan tests => 109; > run_marc21_search_tests('dom'); > }; > >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17278
:
55337
|
55968
|
55972
|
56566
|
56567
|
57626
|
57627
|
57689
|
57710
|
57711
|
57712