[koha-commits] main Koha release repository branch master updated. v19.05.00-736-g3227e5a

Git repo owner gitmaster at git.koha-community.org
Wed Oct 2 15:11:49 CEST 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  3227e5ae443a5aefaeed84554ddd7c4f19f1205a (commit)
       via  ab54b5458d9cfe2db7b5290a301513355c3fdd3b (commit)
       via  72fcd4c7f2956a374986d5683e52f6bb4c2ff90d (commit)
       via  8d630cd786e86b0ef023a79d7b6fc84be14bfa60 (commit)
       via  1b902612af69dadf4c13deb8bc6c59950eb493e3 (commit)
       via  91947546f7d1baae3e8f5bf297dda3240a968cde (commit)
      from  6c92612c15b3a62356d09c5719a245e52097afbb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3227e5ae443a5aefaeed84554ddd7c4f19f1205a
Author: David Gustafsson <david.gustafsson at ub.gu.se>
Date:   Mon Sep 30 15:15:35 2019 +0200

    Bug 20589: DBRev 19.06.00.032
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit ab54b5458d9cfe2db7b5290a301513355c3fdd3b
Author: Nick <nick at bywatersolutions.com>
Date:   Tue Oct 1 09:02:20 2019 +0000

    Bug 20589: Remove expanded_facet variable and fix tests
    
    Thi is a rebase from 14419 to remove an unused variable
    
    Also update tests to expect the new expected result
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 72fcd4c7f2956a374986d5683e52f6bb4c2ff90d
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Aug 23 16:45:05 2019 +0000

    Bug 20589: Add option for searching entire record if record stored as array
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 8d630cd786e86b0ef023a79d7b6fc84be14bfa60
Author: David Gustafsson <david.gustafsson at ub.gu.se>
Date:   Mon Jan 14 15:59:55 2019 +0100

    Bug 20589: Exclude boolean fields from search fields
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 1b902612af69dadf4c13deb8bc6c59950eb493e3
Author: David Gustafsson <david.gustafsson at ub.gu.se>
Date:   Thu Apr 4 15:14:19 2019 +0200

    Bug 20589: fix QueryBuilder tests
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 91947546f7d1baae3e8f5bf297dda3240a968cde
Author: David Gustafsson <david.gustafsson at ub.gu.se>
Date:   Fri Apr 13 15:46:55 2018 +0200

    Bug 20589: Add field boosting and use query_string fields parameter
    
    Generate a list of fields for the query_string query fields parameter,
    with possible boosts, instead of using "_all"-field. Also add "search"
    flag in search_marc_to_field table so that certain mappings can be
    excluded from searches. Add option to include/exclude fields in
    query_string "fields" parameter depending on searching in OPAC or staff
    client. Refactor code to remove all other dependencies on "_all"-field.
    
    How to test:
    1) Reindex authorities and biblios.
    2) Search biblios and try to verify that this works as expected.
    3) Search authorities and try to verify that this works as expected.
    4) Go to "Search engine configuration"
    5) Change some "Boost", "Staff client", and "OPAC" settings and save.
    6) Verify that those settings where saved accordingly.
    7) Click the "Biblios" or "Authorities" tab and change one or more
       "Searchable" settings
    8) Verfiy that those settings where saved accordingly.
    9) Try to verify that these settings has taken effect by peforming
       some biblios and/or authorities searches.
    
    Sponsorded-by: Gothenburg Univesity Library
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

-----------------------------------------------------------------------

Summary of changes:
 Koha.pm                                            |    2 +-
 Koha/Schema/Result/SearchField.pm                  |   20 +-
 Koha/Schema/Result/SearchMarcToField.pm            |   12 +-
 Koha/SearchEngine/Elasticsearch.pm                 |   71 ++++--
 Koha/SearchEngine/Elasticsearch/QueryBuilder.pm    |  243 ++++++++++++++++----
 Koha/SearchField.pm                                |    1 -
 Koha/SearchFields.pm                               |   15 --
 admin/searchengine/elasticsearch/field_config.yaml |   34 ++-
 admin/searchengine/elasticsearch/index_config.yaml |   12 +-
 admin/searchengine/elasticsearch/mappings.pl       |   76 ++++--
 catalogue/search.pl                                |    9 +-
 installer/data/mysql/kohastructure.sql             |    3 +
 installer/data/mysql/updatedatabase.pl             |   23 ++
 .../admin/searchengine/elasticsearch/mappings.tt   |   66 +++++-
 .../prog/en/modules/catalogue/advsearch.tt         |    5 +
 opac/opac-search.pl                                |   24 +-
 .../Koha/SearchEngine/Elasticsearch/QueryBuilder.t |  152 ++++++++----
 17 files changed, 565 insertions(+), 203 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list