[koha-commits] main Koha release repository branch 17.11.x updated. v17.11.13-24-gbf7a883

Git repo owner gitmaster at git.koha-community.org
Wed Jan 16 10:19:27 CET 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, 17.11.x has been updated
       via  bf7a883337da1b1cde8cc76c2a65faf571673128 (commit)
       via  992b3cbc29a1b215bae7a62d1c8c52da192a203c (commit)
       via  c31f7f6aa83ce6ce3f44f3a4a14762c644e5bb10 (commit)
       via  a6af3f631722f15396801d60cd5873f1e8c1a9fb (commit)
       via  fc39a7a80106b6ee92122cce1969ade99be9342a (commit)
       via  a4ca88816d650bd56871f37ea45bec0bf5950d88 (commit)
       via  5cf1296795e36eb24af568ba74ef04eaa9f5e657 (commit)
      from  92f5aead92f1ef1c6af30682779d7c7f3e95a8aa (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 bf7a883337da1b1cde8cc76c2a65faf571673128
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Wed Oct 31 12:50:27 2018 +0000

    Bug 22073: Add to diacritics mappings for Ž and ž
    
    To test:
    1 - Find or add a record by author Slavoj Žižek
    2 - Search for 'Zizek'
    3 - No results
    4 - Apply patch
    5 - Reindex
    6 - Search again
    7 - Success!
    
    https://bugs.koha-community.org/show_bug.cgi?id=22073
    
    Signed-off-by: Eric Phetteplace <ephetteplace at cca.edu>
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 5c313bc554a857da29f124957d58459c0ed4c03b)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit aee127e6397db9594c97d06b684cdeabf6f50e0d)
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    (cherry picked from commit 85374828e93d5b978cd13bbbdc583ea2a077a3b3)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 992b3cbc29a1b215bae7a62d1c8c52da192a203c
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Dec 28 18:48:25 2018 +0000

    Bug 22052: Refactor DeleteExpiredOpacReigstrations
    
    This patch changes the sub to use Koha::Objects and updates the tests.
    Previously the sub would die on borrowers with checkouts and would
    delete borrowers if they had fines
    
    To test:
     1 - prove -v t/db_dependent/
     2 - Set your selfreg preferences:
        PatronSelfRegistration: Allow
        PatronSelfRegistrationDefaultCategory: SELFREG (or of your choice)
        PatronSelfRegistrationExpireTemporaryAccountsDelay: 30
     3 - Register a patron into SELFREG or how you set above
     4 - Set their date enrolled to two months ago
     5 - Checkout an item to the patron
     6 - Issue a fine to that patron
     7 - perl misc/cronjobs/cleanup_database.pl --del-exp-selfreg -v
     8 - The job should die with an error
     9 - Check in the item
    10 - run the corn again - patron is deleted, oops
    11 - Apply patch
    12 - Create another patron in the same way
    13 - Checkout and fine the patron
    14 - run the cron
    15 - they are not deleted, and no error
    16 - checkin the item
    17 - run the cron
    18 - they are not deleted and no error
    19 - clear the fine
    20 - run the cron
    21 - patron is deleted, huzzah
    
    Signed-off-by: Charles Farmer <charles.farmer at inLibro.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit b32756a5d7819e13290c2a145f3f0009280785c4)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 8102f6dc70623786c3247e008a0601cfd234d1e6)
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    (cherry picked from commit d95301763e8017d0db18cfd142e2227cbaafaf0c)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit c31f7f6aa83ce6ce3f44f3a4a14762c644e5bb10
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Dec 28 18:48:15 2018 +0000

    Bug 22052: Unit tests
    
    Signed-off-by: Charles Farmer <charles.farmer at inLibro.com>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit f44e37b201d0a8b95b1eee0ac0766bed9c386fc2)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 2bc4f25855819990f5d5fbcd244a0ef6dd3d89e6)
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    (cherry picked from commit 054819fb8ef14fd8164953577e562d0bf06da4a6)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a6af3f631722f15396801d60cd5873f1e8c1a9fb
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Dec 13 14:59:38 2018 +0100

    Bug 21605: (follow-up) Simple ternary boolean to number conversion
    
    Imo it is much easier to do just "$a ? 1 : 0" than testing defined($a) etc.
    in the additional loop.
    Less code, more readable?
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 482b323da1e18324941963359b9a1bd96f297c44)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit fee85191b0be2690cbfada45f4eba54ef0e75c35)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>
    (cherry picked from commit e1050653fba9a2eb0af5926b8cc9326ca721f939)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit fc39a7a80106b6ee92122cce1969ade99be9342a
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Fri Oct 26 10:42:13 2018 +0100

    Bug 21605: Ensure EDI acct fields set to boolean val
    
    Validate the input to the fields indicating account
    functionality. The only valid values are 1 and 0
    non-integer (or integers other than 0/1) are invalid
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit c9c3fc4368ee9d37a45c48167d25d5cee511898b)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit ae409c2fb347f7605e20afb34c6e7fe6a04092bb)
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>
    (cherry picked from commit 4360ba1a247cca6466eb1bcf4e286dd45645d621)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a4ca88816d650bd56871f37ea45bec0bf5950d88
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Dec 12 12:22:47 2018 -0300

    Bug 21990: Replace dialog .error with .alert
    
    <div class="dialog error"> will display a div without background color, the correct class is "dialog alert".
    
    https://wiki.koha-community.org/wiki/Interface_patterns#Error_messages
    
    Test plan:
    Hit /cgi-bin/koha/acqui/parcel.pl
    Notice the background color change with and without this patch
    
    Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault at inLibro.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit d44a42e417b563f501f038cc5226eda0f5fb3ca5)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 1f5aa58a2ce0b6f1bf076a50cbbd2f728b47d0e1)
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    (cherry picked from commit 03631164c5d683c92d4728b416e094994c9fc14a)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 5cf1296795e36eb24af568ba74ef04eaa9f5e657
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 20 19:55:46 2018 -0300

    Bug 22034: Handle default framework for MARC view with framework
    
    To test:
    
    - Create a record in any framework that is not default
    - Search for the record in your catalog
    - Switch to the MARC tab
    - Change framework pull down to default on top
    - Note the page reloads and the framework stay default
    - Verify it works for other frameworks
    
    Also test the "labeled MARC" view (you will need the pref viewLabeledMARC turned on)
    
    Signed-off-by: Nazlı Çetin <nazli at devinim.com.tr>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 54e295e4c14e3d2b3959e3185a54447a9b90d945)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 270138aa678e858b835f65f5533e6b182e07ac76)
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    (cherry picked from commit 2c15a838be5a51b82cb866b261836b7586dfa6a2)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

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

Summary of changes:
 C4/Members.pm                                      |   40 ++++++++++----------
 admin/edi_accounts.pl                              |   10 ++---
 catalogue/MARCdetail.pl                            |    3 +-
 catalogue/labeledMARCdetail.pl                     |    3 +-
 etc/zebradb/etc/word-phrase-utf.chr                |    2 +
 .../intranet-tmpl/prog/en/modules/acqui/parcel.tt  |    4 +-
 .../prog/en/modules/tools/batch_delete_records.tt  |    2 +-
 t/db_dependent/Members.t                           |   35 +++++++++++++++--
 8 files changed, 64 insertions(+), 35 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list