[koha-commits] main Koha release repository branch 17.05.x updated. v17.05.07-32-gd170129

Git repo owner gitmaster at git.koha-community.org
Fri Jan 19 11:00:34 CET 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, 17.05.x has been updated
       via  d17012973e117c5ffdbc62c27ef4f8d6b50bdade (commit)
       via  db7aa4cc3782b01da21e7739c72c77febcb3d527 (commit)
       via  b8b5084b3d911f0cda5d89779449dd3fd0a9256f (commit)
       via  a2ac6ac7ddb9494290afb8e1eff9d91ddb704ed1 (commit)
       via  1dc9d35487bfaf85f43a92d7de50a9584981bd78 (commit)
       via  67b04b433abc10b1f055cb6f978b901566ccd1ae (commit)
       via  04398df3726febe830519418014ca0dbc1ba967f (commit)
      from  4c597ca7aac7615482ddd7a0e02eb4342f416161 (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 d17012973e117c5ffdbc62c27ef4f8d6b50bdade
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Dec 22 14:04:52 2017 -0300

    Bug 19760: Fix Config.t test
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 9924fa4bd287ac665eb6e0c2adc7e7cea165f3f7)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit db7aa4cc3782b01da21e7739c72c77febcb3d527
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Dec 6 13:58:04 2017 -0300

    Bug 19760: Die if koha-conf is not accessible
    
    We got a lot of support questions because scripts are executed without
    the correct environment/user.
    We could die and provide more useful information
    
    Tested on my kohadevbox VM by:
    
    1) sudo chmod a-rx /etc/koha/sites/kohadev/koha-conf.xml
    2) run help.pl from the command line to produce the desired die message
    3) sudo chmod a+rx /etc/koha/sites/kohadev/koha-conf.xml
    4) rerun help.pl successfully
    
    Signed-off-by: Jon Knight <J.P.Knight at lboro.ac.uk>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Bug 19760: Change wording
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit be960cc0cda7bb8dbe9a55a3a6e5e1aa0812f006)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit b8b5084b3d911f0cda5d89779449dd3fd0a9256f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 21 14:45:51 2017 -0300

    Bug 19867: Prevent HouseboundRoles.t to fail randomly
    
    Here is just a guess but we need to tell TestBuilder the values of
    housebound_deliverer and housebound_chooser to make sure it will not be
    1
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    I manually tested setting to the opposite values in the tests, and
    verified those values made the tests fail due to count problems.
    The fix is valid.
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit d17e661d30ed614a0790b54cf385da3b539f4a34)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a2ac6ac7ddb9494290afb8e1eff9d91ddb704ed1
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Dec 20 18:59:39 2017 -0300

    Bug 19756: Fix encoding issues during the update DB process
    
    To display the output of the updatedatabase.pl under Plack, we redirect
    the output to a temporary file, read it, then display it.
    We need to open it specifying the correct encoding (utf-8).
    
    Test plan:
    1. MariaDB [koha_kohadev]> update systempreferences set value="17.1100000"
    where variable="version";
    2. restart plack
    3. Login
    4. Make the update from the interface
    => Without this patch you will see encoding issue:
    Upgrade to 17.12.00.000 done (Tē tōia, tē haumatia)
    => With this patch applied you will see :
    Upgrade to 17.12.00.000 done (Tē tōia, tē haumatia)
    
    Signed-off-by: Liz Rea <liz at catalyst.net.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit e52486eeba13987c926ecf0c952644e5bacdc2b0)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 1dc9d35487bfaf85f43a92d7de50a9584981bd78
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Nov 9 15:54:12 2017 +0000

    Bug 19573: Link to make a new list in masthead in OPAC only appears / works if no other list already exists
    
    This patch corrects the OPAC masthead include file so that the "New
    list" link will appear whether or not the logged-in user has existing
    private lists.
    
    To test, apply the patch and log into the OPAC as both a user with
    private lists and a user without private lists. The header's "Lists"
    dropdown menu should include a "New list" link in both cases.
    
    Signed-off-by: Simon Pouchol <simon.pouchol at biblibre.com>
    
    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>
    (cherry picked from commit f4c1712f58b8e90704893fb501c5cfc9d12f02a2)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 67b04b433abc10b1f055cb6f978b901566ccd1ae
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Fri Dec 1 15:21:56 2017 +0000

    Bug 19725: OAI-PMH - Use biblio_metadata.timestamp
    
    Since bug 17196, biblioitems.timestamp is not always updated after a
    change in the MARC record.
    Filtering should be based on biblio_metadata.timestamp instead.
    
    Test plan:
    1. prove t/db_dependent/OAI/Server.t
    2. Verify that it SUCCEEDS
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 4ea54b678256b164fe9a951a44889ab3502c63b5)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 04398df3726febe830519418014ca0dbc1ba967f
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Fri Dec 1 15:18:04 2017 +0000

    Bug 19725: Add failing test
    
    Also fix tests for UNIMARC
    
    Test plan:
    1. prove t/db_dependent/OAI/Server.t
    2. Verify that it FAILS
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 55824b09d63ee83a8358c6e6f7740f664d3b86e3)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

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

Summary of changes:
 Koha/Config.pm                                     |    2 +-
 Koha/OAI/Server/ListBase.pm                        |    6 +-
 installer/install.pl                               |    4 +-
 .../opac-tmpl/bootstrap/en/includes/masthead.inc   |    2 +-
 t/Koha/Config.t                                    |    6 +-
 t/db_dependent/OAI/Server.t                        |   62 ++++++++++++--------
 t/db_dependent/Patron/HouseboundRoles.t            |    4 +-
 7 files changed, 51 insertions(+), 35 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list