[koha-commits] main Koha release repository branch master updated. v19.11.00-355-geed6cc84c3

Git repo owner gitmaster at git.koha-community.org
Wed Jan 15 17:52:47 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  eed6cc84c32eabab354bb515364fc897ef098003 (commit)
       via  e6a6f4237ed108879653a2dbf3d4ca29ae4fca64 (commit)
       via  43c8ca958f217251d8d52eb1f3a3f48fae3051ca (commit)
       via  e7c032e1dd75df48d7192d5a67759fc532ea3a6b (commit)
       via  de0161db1ecbf2106bdf9fbbcf5a4cd9e36a192b (commit)
       via  1906a69e512789ebbf194bd487aa8f88768de4c8 (commit)
       via  d29766433b5291b8cb97607934f6f3476ad516e6 (commit)
      from  8b130c2eed52ba108752269470741c1321c67e96 (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 eed6cc84c32eabab354bb515364fc897ef098003
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Wed Jan 15 16:17:41 2020 +0000

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

commit e6a6f4237ed108879653a2dbf3d4ca29ae4fca64
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Dec 19 13:19:11 2019 +0000

    Bug 24275: Apply anti-the to title column in inventory table
    
    To test:
    1 - Go to Tools->Inventory
    2 - Click submit (or add options to get a subset of titles)
    3 - Try sorting by title, note that titles with leading articles sort including the articles
    4 - Apply patch
    5 - Reload the page
    6 - Note that leading articles are ignored for sorting
    
    Signed-off-by: Deb <dstephen at dubuque.lib.ia.us>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 43c8ca958f217251d8d52eb1f3a3f48fae3051ca
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Mon Jan 13 16:26:30 2020 +0100

    Bug 21520: (QA follow-up): Updatedatabase
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit e7c032e1dd75df48d7192d5a67759fc532ea3a6b
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Fri Jan 3 10:53:34 2020 +0000

    Bug 21520: QA Follow-up: do not build html tags with TT conditions
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit de0161db1ecbf2106bdf9fbbcf5a4cd9e36a192b
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Wed Nov 20 15:59:28 2019 +0100

    Bug 21520: More complex OAI sets mappings
    
    Currently, the rules used to create OAI sets are processed with the 'or'
    boolean operator between each rule.
    
    This patch allows to use 'or' or 'and' between the rules.
    
    The evaluation of the rules is done according to the boolean operators
    precedence: AND has a higher precedence than OR.
    
    For example:
    
    A and B or C and D
    
    will be evaluated as follow:
    
    (A and B) or (C and D)
    
    Test plan:
    
     - Apply the patch
     - Apply the atomicupdate
     - Prove t/db_dependant/OAI/AndSets.t
     - Check that existing mappings still work
     - Try modifying existing mappings
     - Try creating new mappings
     - Check that the boolean operators precedence is correctly taken into account
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 1906a69e512789ebbf194bd487aa8f88768de4c8
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jan 14 10:34:48 2020 +0100

    Bug 20567: Count found holds for holds limit
    
    Signed-off-by: Hans Palsson <hans.palsson at hkr.se>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit d29766433b5291b8cb97607934f6f3476ad516e6
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jan 14 10:33:03 2020 +0100

    Bug 20567: Add tests
    
    Signed-off-by: Hans Palsson <hans.palsson at hkr.se>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/OAI/Sets.pm                                     | 100 ++++++++----
 C4/Reserves.pm                                     |   1 -
 Koha.pm                                            |   2 +-
 Koha/Schema/Result/OaiSetsMapping.pm               |  20 ++-
 admin/oai_set_mappings.pl                          |  13 +-
 installer/data/mysql/kohastructure.sql             |   2 +
 installer/data/mysql/updatedatabase.pl             |  30 ++++
 .../prog/en/modules/admin/oai_set_mappings.tt      |  48 +++++-
 .../prog/en/modules/tools/inventory.tt             |   3 +-
 t/db_dependent/OAI/AndSets.t                       | 181 +++++++++++++++++++++
 t/db_dependent/Reserves/MultiplePerRecord.t        |   7 +-
 11 files changed, 357 insertions(+), 50 deletions(-)
 create mode 100644 t/db_dependent/OAI/AndSets.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list