[koha-commits] main Koha release repository branch master updated. v19.05.00-710-g7e35c3d

Git repo owner gitmaster at git.koha-community.org
Tue Oct 1 09:08:16 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  7e35c3d14b63a49ea16d248b2d4260555e8fcb3f (commit)
       via  47c2e215875127b843c9720976f2c94e1cd66662 (commit)
       via  62ad053894c57ae990a9724cf58beaa4441448c6 (commit)
       via  d096eeab8a7d23cf460b1ad5f10df746f3d62dda (commit)
       via  3848a3a772e2202ac3339bd241adcef987e48361 (commit)
       via  740d0bde7860c1d67f1612d5fd3c4a68d0714ef0 (commit)
      from  ace678ba6f19821bbdaaa9b31c96db2c2ce5e026 (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 7e35c3d14b63a49ea16d248b2d4260555e8fcb3f
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Mon Sep 30 14:59:20 2019 +0200

    Bug 23689: (follow-up) Use Library limitations to match other occurrences
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 47c2e215875127b843c9720976f2c94e1cd66662
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Sep 27 14:41:51 2019 +0100

    Bug 23689: Fix terminology for branches limitations on authorized values
    
    This patch corrects the terminology and also updates the tooltip to use
    the current bootstrap tooltip library.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 62ad053894c57ae990a9724cf58beaa4441448c6
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Sep 27 07:23:28 2019 -0400

    Bug 23688: System preference uppercasesurnames broken by typo
    
    In the process of moving this feature from memberentry.pl to Patron.pm, the 's' on uppercasesurnames was dropped, breaking the feature.
    
    Test Plan:
    1) Test uppercasesurnames, note it does not work
    2) Apply this patch
    3) Test uppercasesurnames, note it works now!
    
    Signed-off-by: Kyle Hall <kyle at bywatersolutions.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit d096eeab8a7d23cf460b1ad5f10df746f3d62dda
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Sep 26 09:08:40 2019 +0200

    Bug 23679: add Unit Test t/db_dependent/Circulation/transferbook.t
    
    I've choosen to add it to db_dependent because we may add other tests
    to cover transferbook() cases that will change DB
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Bin Wen <bin.wen at inlibro.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 3848a3a772e2202ac3339bd241adcef987e48361
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Sep 26 09:09:15 2019 +0200

    Bug 23679: fix software error when trying to transfer an unknown barcode
    
    When trying to transfer an unknown barcode in
    /cgi-bin/koha/circ/branchtransfers.pl you get the error :
    
    Can't call method "itemnumber" on an undefined value at
    /home/koha/src/C4/Circulation.pm line 319.
    
    This comes from C4::Circulation::transferbook which should stop when
    finding unknown barcode.
    
    Test plan :
    1) Go to /cgi-bin/koha/circ/branchtransfers.pl
    2) Enter a barcode not existing in database
    3) Without patch you get a software error, with patch you get a message
       saying 'No Item with barcode'
    4) Enter a barcode existing in database and check transfer is OK
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Bin Wen <bin.wen at inlibro.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 740d0bde7860c1d67f1612d5fd3c4a68d0714ef0
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu May 2 16:26:55 2019 +0000

    Bug 22804: OPAC Overdrive JavaScript contains untranslatable strings
    
    This patch moves untranslatable strings out of overdrive.js and into
    opac-bottom.inc where other strings are defined for use in JavaScript
    files.
    
    To test you must have OverDrive integration set up, including
    OverDriveCirculation. Test the various Overdrive integration features:
    
     - Placing holds
     - Cancelling holds
     - Checking out
     - Checking in
    
    These features should work as expected.
    
    Signed-off-by: Jesse Maseto <jesse at bywatersolutions.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Circulation.pm                                  |    1 +
 Koha/Patron.pm                                     |    2 +-
 .../prog/en/modules/admin/authorised_values.tt     |   17 ++++---
 .../bootstrap/en/includes/opac-bottom.inc          |   11 ++++-
 koha-tmpl/opac-tmpl/bootstrap/js/overdrive.js      |   47 +++++++++++---------
 .../Database.t => Circulation/transferbook.t}      |   19 ++++++--
 t/db_dependent/Koha/Patrons.t                      |    6 +--
 7 files changed, 66 insertions(+), 37 deletions(-)
 copy t/db_dependent/{Koha/Database.t => Circulation/transferbook.t} (63%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list