[koha-commits] main Koha release repository branch master updated. v19.11.00-1863-g37e6fe6ae5

Git repo owner gitmaster at git.koha-community.org
Wed Apr 22 15:12:15 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, master has been updated
       via  37e6fe6ae59469aeb2078c52b4419c1fe5f3dea8 (commit)
       via  7283a3a3e7777b1d34a7bf8c3974a4efc6fbe3d7 (commit)
       via  16a030ebf64ce2a43af097f235cee1bc78a760e3 (commit)
       via  fb9268417bfd9e39f50053e948291c77530609a1 (commit)
       via  bfa921665abfc4fcf8c5c3bc5f115769bf2c9f55 (commit)
       via  10b60d577053843c2b8935be696ecbf762d7f584 (commit)
       via  a40ef6ece7211ef139e9440a3022ebda7492ff47 (commit)
       via  41b5db64b352a9cf33595171ca9c2bee70ca4f1a (commit)
       via  5f586e3d963be70dc1d3b5f55494f40227e43adf (commit)
       via  74b8c05cfb72146c738d41e88da13346c47d4d22 (commit)
      from  82090e2673f44aea18a205ee3cf9deb04bd91c80 (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 37e6fe6ae59469aeb2078c52b4419c1fe5f3dea8
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Apr 20 13:16:11 2020 -0400

    Bug 25172: Add missing filter
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 7283a3a3e7777b1d34a7bf8c3974a4efc6fbe3d7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Apr 16 17:16:59 2020 +0200

    Bug 25172: Identify and display possible problems on the about page
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 16a030ebf64ce2a43af097f235cee1bc78a760e3
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Apr 16 16:50:50 2020 +0200

    Bug 25172: Adjust tests
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit fb9268417bfd9e39f50053e948291c77530609a1
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Apr 16 16:12:32 2020 +0200

    Bug 25172: Remove _recheck_logfile
    
    I don't understand how that could be useful. We do not want to test if
    the logfile is writable every time we log something!
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit bfa921665abfc4fcf8c5c3bc5f115769bf2c9f55
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Apr 16 16:11:02 2020 +0200

    Bug 25172: Make Koha::Logger explode if init went wrong
    
    We do not want to fail silently for the logger.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 10b60d577053843c2b8935be696ecbf762d7f584
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat Apr 11 14:43:41 2020 +0000

    Bug 5614: Organize 'patron' system preferences
    
    Until now, there was only "General" and "Privacy". This patch
    breaks the "General" prefs up into multiple sections.
    
    To test:
    - Go to Administration > Patrons
    - Verify the current state of things
    - Apply patch
    - Reload patch
    - Verify headings make sense and groups make sense as well
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit a40ef6ece7211ef139e9440a3022ebda7492ff47
Author: Nick <nick at bywatersolutions.com>
Date:   Wed Oct 2 14:53:42 2019 +0000

    Bug 20816: Make SIP tests pass under ES
    
    Signed-off-by: Andrew Fuerste-Henry <andrew at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 41b5db64b352a9cf33595171ca9c2bee70ca4f1a
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Wed Jun 19 17:59:14 2019 +0000

    Bug 20816: Add ability to define custom templated fields in SIP patron responses
    
    To test:
     1 - You will need to enable SIP on your testing instance
        cp etc/SIPconfig.xml /etc/koha/sites/kohadev/
        sudo koha-start-sip
        add a user listed in the SIPconfig to your system and give them permissions (superlibrarian works)
        on koha-testing-docker you should be able to start sip with user koha/koha without any adjustments
     2 - If you copied the above file you should be set to get custom field DE with dateexpiry
         Otherwise edit the sip login for the user to have a custom section like:
    		  <login id="koha"   password="koha"  delimiter="|" error-detect="enabled" institution="kohalibrary" encoding="utf8" >
    			  <custom_patron_field field="DE" template="[% patron.dateexpiry %]" />
    		  </login>
     3 - send a status test using the sip cli tester:
         perl misc/sip_cli_emulator.pl -a 127.0.0.1 -p 6001 -su koha -sp koha -l kohalibrary --patron 23529001000463 -m patron_status_request
     4 - send an information test using the sip cli tester:
         perl misc/sip_cli_emulator.pl -a 127.0.0.1 -p 6001 -su koha -sp koha -l kohalibrary --patron 23529001000463 -m patron_information
     5 - confirm you receive the DE field with a dateexpiry
     6 - Add your own custom fields and confirm it works with several
             <custom_patron_field field="EW" template="Phone: [% patron.phone %] Email: [% patron.email %]" />
     7 - prove -v t/db_dependent/SIP/Patron.t
     8 - prove -v t/db_dependent/SIP/
    
    Signed-off-by: Andrew Fuerste-Henry <andrew at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 5f586e3d963be70dc1d3b5f55494f40227e43adf
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Tue Mar 17 18:44:23 2020 +0000

    Bug 16962: Remove the use of "onclick" from serial collection template
    
    This patch removes the use of event attributes like "onclick" from the
    serial collection template. Events are now defined in JavaScript.
    
    To test, apply the patch and go to Serials
    
    - Locate or create a subscription for which an item record is NOT
      created when receiving.
      - On the serial collection page for this subscription, test that the
        "Multi receiving" button works correctly.
      - For any subscription, test that the "Generate next" button works
        correctly.
      - In each tab, test that the "select all" and "clear all" links work
        correctly and affect only that tab.
      - On a subscription which has expired, test that the "Renew" button
        works correctly.
    
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 74b8c05cfb72146c738d41e88da13346c47d4d22
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Apr 20 11:13:40 2020 +0200

    Bug 25186: Fix accordion sections height in columns configuration page
    
    The height for each section was the height of the highest section.
    Now the height is set to the length of the section.
    
    Test plan:
    Go to Administration > Column configuration
    Open the sections and confirm that the height fits its content.
    
    QA: note that I guess "autoHeight: false" was meant to achieve that,
    but it does not exist in the API of the plugin.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/SIP/ILS/Patron.pm                               |  47 ++-
 C4/SIP/Sip.pm                                      |   1 -
 C4/SIP/Sip/MsgType.pm                              |  17 +-
 Koha/Logger.pm                                     |  88 +----
 about.pl                                           |  20 ++
 etc/SIPconfig.xml                                  |   1 +
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |  15 +-
 .../prog/en/modules/admin/columns_settings.tt      |   2 +-
 .../prog/en/modules/admin/preferences/patrons.pref | 396 +++++++++++----------
 .../prog/en/modules/serials/serials-collection.tt  |  65 ++--
 t/Logger.t                                         |  41 +--
 t/db_dependent/SIP/Message.t                       |  17 +-
 t/db_dependent/SIP/Patron.t                        |  46 ++-
 t/db_dependent/SIP/Transaction.t                   |  21 +-
 14 files changed, 424 insertions(+), 353 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list