[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.04-76-gc35acfaebe

Git repo owner gitmaster at git.koha-community.org
Fri Apr 3 20:00:50 CEST 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, 19.11.x has been updated
       via  c35acfaebeb4c1e4bd378a8af64175706cfa3e4c (commit)
       via  04359d9bbb2dabe8eefac60cd5ed68c81d91379c (commit)
       via  59955a13836fba246746ca8aaa2384c800425665 (commit)
       via  46b219864e3ea001d05dc69e960fd77c00c5eed6 (commit)
       via  f641a3d247c23328715e6e091d1e3f8b2fb3f4c6 (commit)
       via  81f32a92ac7e883a98b40511c1d4e3d44b68b480 (commit)
       via  5d4f396c7e9114dbfb0bb45bc2b9e862b2af0ecd (commit)
       via  572c3afef1a3b6dfe3ee4d841737170ee92b7e1f (commit)
       via  37de3685a4d527663f98ca11d09b4d911e00a770 (commit)
       via  16d756791ece7325f4541b7f2b7caaee7c9c12c5 (commit)
      from  2c2e229709e723c7604fecf0a5607486ed1e6d14 (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 c35acfaebeb4c1e4bd378a8af64175706cfa3e4c
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Sun Mar 8 08:39:40 2020 +0000

    Bug 24402: About template corrections
    
    With the 20.05 team we introduced and expanded some roles.  This patch
    adds support for:
    
    * removal of the release maintainer for development releases
    * a list of documentation managers
    * a list of packaging manager
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 04359d9bbb2dabe8eefac60cd5ed68c81d91379c
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Fri Mar 13 08:47:53 2020 +0000

    Bug 22943: Remove unused line from Auth.t
    
    Removes an unnecessary variable declaration from Auth.t
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 59955a13836fba246746ca8aaa2384c800425665
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Mar 9 09:17:50 2020 +0000

    Bug 22943: (QA follow-up) Add new cases
    
    A few additional cases were introduced since the original bug was
    authored. This patch simply catches those cases and makes the same
    change.
    
    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>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 46b219864e3ea001d05dc69e960fd77c00c5eed6
Author: Hayley Mapley <hayleymapley at catalyst.net.nz>
Date:   Mon May 27 13:57:05 2019 +1200

    Bug 22943: Renames the in_ipset function to in_iprange in C4::Auth
    
    Bug 14407 introduced a new system preference to allow limiting the
    online self checkout system to an IP or IP Range. The function that
    handles this is called in_ipset, which is the name of a linux tool. To
    stop confusion, this patch renames the function to 'in_iprange', and the
    variable 'ipset' within it to 'iprange'.
    
    To test, follow the test plans outlined in Bug 14407 and confirm that
    everything works as expected.
    
    Sponsored-by: Catalyst IT
    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>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit f641a3d247c23328715e6e091d1e3f8b2fb3f4c6
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Tue Feb 11 15:10:48 2020 +0000

    Bug 24627: Correct style of clubs search results during hold process
    
    This patch updates some markup and CSS so that the process of selecting
    a club from search results during the hold process looks the same as
    when selecting a patron: Club names should be links (like patron
    names are) and the table row should have a hover color to help indicate
    that it is clickable.
    
    This patch also changes the markup of the Patrons/Clubs tabs a little
    bit to make the information clearer: Superfluous Bootstrap-related tab
    markup has been removed, and the patron and club search results have
    been moved into their respective tab containers. This means that if you
    search for a patron but then switch to the clubs tab the patron list
    doesn't still display.
    
    To test, apply the patch and rebuild the staff client CSS
    (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client)
    
     - You should have more than one patron club defined.
     - Begin the process of placing a hold on a title.
     - Test the process of searching for both patrons and clubs.
       - In each case the name (patron or club) should be an active link.
       - Hovering your mouse over the table rows should change the row
         background to yellow.
       - Clicking the other tab at this stage should hide the search results
         from your last search.
       - Whether you click the linked name or elsewhere in the table row
         you should be correctly redirected to the next step in the holds
         process.
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 81f32a92ac7e883a98b40511c1d4e3d44b68b480
Author: Lucas Gass <lucas at bywatersolutions.com>
Date:   Thu Mar 12 22:38:47 2020 +0000

    Bug 24858: Correct labels on wording in ExcludeHolidaysFromMaxPickUpDelay
    
    TO TEST:
    - Apply patch
    - mark your library closed today and tomorrow
    - set ReservesMaxPickUpDelay to 1 day
    - set ExcludeHolidaysFromMaxPickUpDelay to "Ignore the calendar"
    - place hold, capture hold
    - hold expiration date is set to tomorrow (doesn't skip closed days)
    
    - Set ExcludeHolidaysFromMaxPickUpDelay to "Use the calendar"
    - Place hold, capture hold
    - hold expiration date is set to the day after tomorrow (skips closed days)
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 5d4f396c7e9114dbfb0bb45bc2b9e862b2af0ecd
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Mar 12 07:07:48 2020 -0400

    Bug 24767: Hide the "Claim returned" tab if the feature is turned off
    
    The ability to claim an item "claim returned" is not there if the syspref is empty, however, the Claim Returned tab is stil present on the patrons detail page.
    
    Test Plan:
    1) Ensure ClaimReturnedLostValue is not set
    2) Note the claims tabs on the circulation and patron details pages
    3) Apply this patch
    4) Refresh those pages
    5) The claims tabs should be gone!
    
    Signed-off-by: Sally <sally.healey at cheshiresharedservices.gov.uk>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 572c3afef1a3b6dfe3ee4d841737170ee92b7e1f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Mar 12 15:09:02 2020 +0100

    Bug 5103: Refactor the code to avoid repetition
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 37de3685a4d527663f98ca11d09b4d911e00a770
Author: Aleisha Amohia <aleishaamohia at hotmail.com>
Date:   Wed Mar 11 03:08:12 2020 +0000

    Bug 5103: (follow-up) Using mapped item fields instead of hardcoding subfields
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 16d756791ece7325f4541b7f2b7caaee7c9c12c5
Author: Aleisha Amohia <aleishaamohia at hotmail.com>
Date:   Wed Feb 26 02:52:24 2020 +0000

    Bug 5103: Format dates in MARC detail using dateformat syspref
    
    This patch fixes the formatting of dates on the following pages:
    - catalogue/MARCdetail.pl (staff)
    - cataloguing/additem.pl (staff)
    - opac-MARCdetail.pl (opac)
    
    To test:
    1) Ensure that the following fields are visible in the opac, intranet
    and editor. You may need to edit the subfields in your default
    bibliographic framework
    952$d date accessioned
    952$q date due/on loan
    952$r date last seen
    952$s date last borrowed
    952$w replacement price date
    
    Also ensure you have dateformat system preference set
    
    2) Go to cataloguing/additem.pl for a biblio. Fill in the fields above
    if required. Save
    3) Remain on cataloguing/additem.pl. Notice the items table at the top
    of the page, the dates are in the generic yyyy-mm-dd format
    4) Go to catalogue/MARCdetail.pl for that biblio. Notice dates in wrong
    format
    5) View this biblio in the opac opac-MARCdetail.pl. Scroll to bottom to
    items table. Notice dates in wrong format.
    6) Apply patch, restart memcached and plack and refresh pages
    7) Dates should now be formatted according to dateformat preference
    8) Confirm that changing the preference changes the format of the dates
    
    Sponsored-by: Catalyst IT
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 C4/Auth.pm                                         | 16 ++--
 catalogue/MARCdetail.pl                            |  7 ++
 cataloguing/additem.pl                             | 22 +++++-
 koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss  |  2 +-
 .../intranet-tmpl/prog/css/src/staff-global.scss   |  6 ++
 .../intranet-tmpl/prog/en/includes/about-team.inc  | 32 ++++++--
 .../en/includes/circ-patron-search-results.inc     |  3 +-
 .../intranet-tmpl/prog/en/includes/clubs-table.inc |  4 +-
 .../en/modules/admin/preferences/circulation.pref  |  4 +-
 .../prog/en/modules/circ/circulation.tt            | 41 +++++-----
 .../prog/en/modules/members/moremember.tt          | 40 +++++-----
 .../prog/en/modules/reserve/request.tt             | 89 +++++++++++-----------
 opac/opac-MARCdetail.pl                            |  8 ++
 opac/sco/help.pl                                   |  4 +-
 opac/sco/printslip.pl                              |  4 +-
 opac/sco/sco-main.pl                               |  4 +-
 opac/sco/sco-patron-image.pl                       |  4 +-
 t/Auth.t                                           | 29 ++++---
 18 files changed, 191 insertions(+), 128 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list