[koha-commits] main Koha release repository branch 18.05.x updated. v18.05.01-101-gca4a096

Git repo owner gitmaster at git.koha-community.org
Sun Jul 15 22:57:05 CEST 2018


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, 18.05.x has been updated
       via  ca4a096e03179d8ececd19e6bc6bd75d0eaf6631 (commit)
       via  220a9adea9891c62cb3fcff33bc08bbc1cd2e89f (commit)
       via  7130267d64dd230efd78afba1a831514276a82c6 (commit)
       via  d8042175c82220622f40729745fedc26501268f9 (commit)
       via  9da004c46e7824c82015519c29f096dc0d78aeab (commit)
       via  fe02563aa6c15939b273e9249187424a213cdb03 (commit)
       via  a277da701d8250907afa5ed69447236a78f65ad8 (commit)
      from  49db39c060163c3d46de4eff283919cc9af30a97 (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 ca4a096e03179d8ececd19e6bc6bd75d0eaf6631
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Jun 29 11:15:22 2018 -0300

    Bug 21022: (follow-up) Move overloaded full_message method to subclass
    
    We shouldn't have it overloaded on the base class, as it could get huge
    and difficult to find things, and read.
    
    This patch moves things to Koha::Exceptions::Object. We should overload
    the full_message method on each exceptions class, as needed.
    
    To test:
    - Run:
      $ kshell
     k$ prove t/Koha/Exceptions.t
    => SUCCESS: Tests still pass!
    - Sign off :-D
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 220a9adea9891c62cb3fcff33bc08bbc1cd2e89f
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Jun 29 11:02:57 2018 -0300

    Bug 21022: Use passed message if present
    
    This patch makes 'full_message' use the passed exception message instead
    of trying to build it from the parameters. This is particularly useful
    for some situations in which we don't have all the information but would
    like to keep using the same exception.
    
    To test:
    - Apply this patchset
    - Run:
      $ kshell
     k$ prove t/Koha/Exceptions.t
    => SUCCESS: Tests pass!
    - Sign off
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 7130267d64dd230efd78afba1a831514276a82c6
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Jun 29 11:02:40 2018 -0300

    Bug 21022: Unit tests
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit d8042175c82220622f40729745fedc26501268f9
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Jun 28 11:00:57 2018 -0300

    Bug 21008: Use Koha::Patron->is_child
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Edit: I removed the category parameter as it is not really used.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 9da004c46e7824c82015519c29f096dc0d78aeab
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Jun 28 10:31:30 2018 -0300

    Bug 21008: Use patron object to get category_type
    
    This patch makes borrower_add_additional_fields() in both pay.pl and
    paycollect.pl use the right object to pick the category_type.
    
    It also populates the extendedattributes template variable in pay.pl
    which was missed by a change.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit fe02563aa6c15939b273e9249187424a213cdb03
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu May 24 18:51:03 2018 +0000

    Bug 20814: Display issue with 'Saved reports' tabs when memcached is off
    
    This patch changes the configuration of the saved reports table so that
    columns which were previously excluded from the table altogether are now
    hidden. This prevents a JavaScript error when DataTables tries to
    reference a missing column.
    
    To test, apply the patch and go to Reports -> Use saved. You should have
    at least one report category configured and assigned to reports in order
    for the tabs display to be visible.
    
    Test the table of saved reports under a variety of these circumstances:
    
     - memcached disabled or enabled
     - reports exist or don't exist which require update from the old
       marcxml syntax
     - cache_expiry and/or update columns are configured in Administration
       -> Columns settings to be shown or hidden
    
    The report category tabs and the table should render correctly under all
    circumstances.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit a277da701d8250907afa5ed69447236a78f65ad8
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed May 23 12:43:55 2018 +0000

    Bug 20805: Update child to adult patron process broken on several patron-related pages
    
    This patch fixes a problem with several patron-related pages, where the
    "Update child to adult patron" menu item doesn't work. With some pages,
    the right category information wasn't being passed from the script to
    the template. With some, the right JavaScript variable weren't being
    passed from the template to the included JavaScript file.
    
    To test, apply the patch locate some patrons with "child" type patron
    categories. With each patron, go to one of the following pages and test
    the "update child" process in the toolbar's "More" menu.
    
     - Circulation ->
       - Batch check out
       - Notices
       - Statistics
       - Files
       - Housebound
       - Delete (test from the deletion confirmation screen).
    
    All test should be performed on a system with multiple adult patron
    categories configured AND on a system with only a single adult patron
    category.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 Koha/Exceptions/Exception.pm                       |   13 ----
 Koha/Exceptions/Object.pm                          |   67 ++++++++++++++++++++
 .../en/modules/circ/circulation_batch_checkouts.tt |   13 ++++
 .../prog/en/modules/members/deletemem.tt           |   11 ++++
 .../prog/en/modules/members/housebound.tt          |   13 +++-
 .../prog/en/modules/members/notices.tt             |   13 +++-
 .../en/modules/reports/guided_reports_start.tt     |   19 ++++--
 members/deletemem.pl                               |    7 ++
 members/files.pl                                   |    7 ++
 members/housebound.pl                              |    6 ++
 members/notices.pl                                 |   10 ++-
 members/pay.pl                                     |    9 +--
 members/paycollect.pl                              |    9 +--
 members/statistics.pl                              |    7 ++
 t/Koha/Exceptions.t                                |    7 +-
 15 files changed, 179 insertions(+), 32 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list