[koha-commits] main Koha release repository branch master updated. v19.11.00-954-g9a9e9fb95e

Git repo owner gitmaster at git.koha-community.org
Mon Mar 2 12:41:41 CET 2020


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  9a9e9fb95e52390451d774835e60903a89647a4d (commit)
       via  6321c7220ee485783cf31124d21ddcbfcc2a9d0c (commit)
       via  52e95fff34e1c6da967a4d86fbb99bec748ccb31 (commit)
      from  35b47f0119ba124d63542e10e564c2dc61fa1ecc (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 9a9e9fb95e52390451d774835e60903a89647a4d
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Mar 2 11:15:04 2020 +0000

    Bug 24735: DBRev 19.12.00.032
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 6321c7220ee485783cf31124d21ddcbfcc2a9d0c
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Feb 26 15:59:02 2020 +0100

    Bug 24735: Remove more code from tests
    
    That was use by QP tests
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 52e95fff34e1c6da967a4d86fbb99bec748ccb31
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Feb 26 13:28:27 2020 +0100

    Bug 24735: Remove QueryParser-related code
    
    At the last development meeting we have voted to remove the
    QueryParser-related code
    https://wiki.koha-community.org/wiki/Development_IRC_meeting_19_February_2020
    
    Hea tells us that it has not been adopted, and the code/bug tracker that
    it is not really usable as it. As nobody is willing to work on it, we
    decided to remove it instead.
    
    Test plan:
     % prove t/db_dependent/Search.t
    must return green
    
    See commits from bug 9239 and confirm that the code is removed in this
    patch.
    
    Also play with the search on the UI and confirm that you do not see
    obvious regressions
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/AuthoritiesMarc.pm                              |   34 +-
 C4/Context.pm                                      |   47 -
 C4/Matcher.pm                                      |   28 +-
 C4/Search.pm                                       |  174 +-
 C4/UsageStats.pm                                   |    1 -
 Koha.pm                                            |    2 +-
 Koha/QueryParser/Driver/PQF.pm                     |  925 --------
 Koha/QueryParser/Driver/PQF/Util.pm                |   54 -
 Koha/QueryParser/Driver/PQF/query_plan.pm          |   70 -
 Koha/QueryParser/Driver/PQF/query_plan/facet.pm    |   46 -
 Koha/QueryParser/Driver/PQF/query_plan/filter.pm   |   51 -
 Koha/QueryParser/Driver/PQF/query_plan/modifier.pm |   50 -
 Koha/QueryParser/Driver/PQF/query_plan/node.pm     |  106 -
 .../QueryParser/Driver/PQF/query_plan/node/atom.pm |   49 -
 OpenILS/QueryParser.pm                             | 2242 --------------------
 about.pl                                           |   29 -
 cataloguing/addbooks.pl                            |   11 +-
 .../value_builder/marc21_linking_section.pl        |    9 +-
 cataloguing/value_builder/unimarc_field_4XX.pl     |    9 +-
 debian/templates/koha-conf-site.xml.in             |    1 -
 etc/koha-conf.xml                                  |    1 -
 etc/searchengine/queryparser.yaml                  | 1647 --------------
 installer/data/mysql/sysprefs.sql                  |    1 -
 installer/data/mysql/updatedatabase.pl             |   10 +
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |   23 +-
 .../en/modules/admin/preferences/cataloguing.pref  |    4 +-
 .../en/modules/admin/preferences/searching.pref    |    9 +-
 labels/label-item-search.pl                        |   21 +-
 misc/migration_tools/bulkmarcimport.pl             |   18 +-
 serials/subscription-bib-search.pl                 |    2 +-
 t/QueryParser.t                                    |  136 --
 t/db_dependent/QueryParser.t                       |   70 -
 t/db_dependent/Search.t                            |  133 +-
 t/db_dependent/UsageStats.t                        |    1 -
 t/db_dependent/default_search_class.pl             |   37 -
 t/db_dependent/zebra_config.pl                     |    1 -
 36 files changed, 46 insertions(+), 6006 deletions(-)
 delete mode 100644 Koha/QueryParser/Driver/PQF.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/Util.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan/facet.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan/filter.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan/modifier.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan/node.pm
 delete mode 100644 Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm
 delete mode 100644 OpenILS/QueryParser.pm
 delete mode 100644 etc/searchengine/queryparser.yaml
 delete mode 100644 t/QueryParser.t
 delete mode 100644 t/db_dependent/QueryParser.t
 delete mode 100755 t/db_dependent/default_search_class.pl


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list