<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body>A new request with request id 12245 has been created by koha-devel-request@lists.koha-community.org. Short info on the request is : <br><br>Title : Koha-devel Digest, Vol 195, Issue 10<br>Category : <br>Description : <div>Send Koha-devel mailing list submissions to<br>    koha-devel@lists.koha-community.org<br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>    https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel<br>or, via email, send a message with subject or body 'help' to<br>    koha-devel-request@lists.koha-community.org<br><br>You can reach the person managing the list at<br>    koha-devel-owner@lists.koha-community.org<br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of Koha-devel digest..."<br><br><br>Today's Topics:<br><br>   1. Re: Elasticsearch query with suppress:false not returning<br>      expected results (Kevin Carnes)<br>   2. Re: Staff interface redesign: Update (Fridolin SOMERS)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Fri, 18 Feb 2022 14:33:48 +0000<br>From: Kevin Carnes <kevin.carnes@ub.lu.se><br>To: "koha-devel@lists.koha-community.org"<br>    <koha-devel@lists.koha-community.org><br>Subject: Re: [Koha-devel] Elasticsearch query with suppress:false not<br>    returning expected results<br>Message-ID: <8a0cec63e9fb4e04bb69dfa37417221d@ub.lu.se><br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Hi Philippe,<br><br>Your second query appears to be correct. Is it possible that one of the "expropriation" records is suppressed in the the OPAC? Try searching for "title:expropriation AND suppress:true" (without QueryAutoTruncate).<br><br>It's possible to automatically add parentheses to both the query and the limits by editing the Koha/SearchEngine/Elasticsearch/QueryBuilder.pm file. After "$search_param_query_str = join( ' ', $self->_create_query_string(@search_params) );" add:<br>        if ($search_param_query_str) {<br>            $search_param_query_str = "($search_param_query_str)";<br>        }<br>        my $search_param_limits_str = $self->_join_queries( $self->_convert_index_strings(@$limits) );<br>        if ($search_param_limits_str) {<br>            $search_param_limits_str = "($search_param_limits_str)";<br>        }<br><br>And then change the "$query_str" to:<br>        $query_str = join( ' AND ',<br>            $search_param_query_str || (),<br>            $search_param_limits_str || () );<br><br>Hopefully that will produce the correct results.<br><br>Regards,<br>Kevin<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <http://lists.koha-community.org/pipermail/koha-devel/attachments/20220218/f6ff600e/attachment-0001.htm><br><br>------------------------------<br><br>Message: 2<br>Date: Fri, 18 Feb 2022 11:12:10 -1000<br>From: Fridolin SOMERS <fridolin.somers@biblibre.com><br>To: koha-devel@lists.koha-community.org<br>Subject: Re: [Koha-devel] Staff interface redesign: Update<br>Message-ID: <8c7c8392-8ff2-faa6-b91f-4eb6865a83c5@biblibre.com><br>Content-Type: text/plain; charset=UTF-8; format=flowed<br><br>Continuing in this mood I've created the new feature :<br><br>https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30136<br>Add back to top button when scrolling<br><br>This is a feature we often see custom Javascript.<br>It whould be great to have it in OPAC and staff interface.<br><br>Best regards,<br><br>Le 19/01/2022 à 22:18, Paul Poulain a écrit :<br>> Hi Cab,<br>> <br>> Of course end users are more than welcomed ! I agree that we need not to <br>> be too many, but a end user, that's a great idea ! I'll add you to our <br>> next meeting invitation, you should get an email.<br>> <br>> Le 19/01/2022 à 20:01, Cab Vinton a écrit :<br>>> If there's a time that makes sense for end-users to chime in, let me <br>>> know.<br>>><br>>> I know less is more at certain project stages. I'm sure there'll be<br>>> interest among librarians to provide feedback when the timing's right.<br>>><br>>> All best,<br>>><br>>> Cab Vinton, Director<br>>> Plaistow Public Library<br>>> Plaistow, NH<br>>> _______________________________________________<br>>> Koha-devel mailing list<br>>> Koha-devel@lists.koha-community.org<br>>> https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel<br>>> website : https://www.koha-community.org/<br>>> git : https://git.koha-community.org/<br>>> bugs : https://bugs.koha-community.org/<br>> <br><br>-- <br>Fridolin SOMERS <fridolin.somers@biblibre.com><br>Software and system maintainer 🦄<br>BibLibre, France<br><br><br>------------------------------<br><br>Subject: Digest Footer<br><br>_______________________________________________<br>Koha-devel mailing list<br>Koha-devel@lists.koha-community.org<br>https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel<br>website : https://www.koha-community.org/<br>git : https://git.koha-community.org/<br>bugs : https://bugs.koha-community.org/<br><br><br>------------------------------<br><br>End of Koha-devel Digest, Vol 195, Issue 10<br>*******************************************<br></div><br><br>NOTE: You are receiving this mail because, the Requester/Technician wanted you to get notified on this request creation.<br></body></html>