[koha-commits] main Koha release repository branch master updated. v3.16.00-579-g3fa6bf0

Git repo owner gitmaster at git.koha-community.org
Sun Sep 14 07:03:49 CEST 2014


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  3fa6bf051af4d84d78e6899ea35d18418652b79b (commit)
       via  cc063de044769e047e53d8afc636a22772af1d0e (commit)
       via  10622af4993045afe6d64c15d9f0d7a4bc4a7fc4 (commit)
       via  3e78a908f0fb7c904ab478d1c4f8ede4bab3c9ba (commit)
       via  e261343aac9fab0b737962fe740c9f30b0d8d41b (commit)
       via  d968df4743a50d6ae283977e438843340597b7ca (commit)
      from  8af38d518fe4d3ef9a467b8db15a066c8ef48f9d (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 3fa6bf051af4d84d78e6899ea35d18418652b79b
Author: Dobrica Pavlinusic <dpavlin at rot13.org>
Date:   Wed Sep 10 13:27:20 2014 +0200

    Bug 12898 - Z39.50 title search doesn't work with multiple words
    
    This fixes regression introduced by Bug 6536 so that multiple
    words in title search will work.
    
    Test scenario:
    
    1. try z39.50 search with more than one word
    2. verify that no results apper
    3. apply patch and re-run search
    4. verify that there are results
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit cc063de044769e047e53d8afc636a22772af1d0e
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Sun Sep 14 01:55:33 2014 -0300

    Bug 12898: (regression test) test terms inside double quotes
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 10622af4993045afe6d64c15d9f0d7a4bc4a7fc4
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Sep 10 16:21:09 2014 +0200

    Bug 10226: Add unit tests for GetReservesFromItemnumber
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 3e78a908f0fb7c904ab478d1c4f8ede4bab3c9ba
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Aug 27 08:29:05 2014 -0400

    Bug 10226 - suspended holds still show not available
    
    If you suspend a hold, the item does not show Available.  It still shows
    the person next in line, who isn't eligible for the hold yet because of
    the suspension.  This is not the case for a delayed hold, where you
    originally place the hold and tell it not to start until a future date.
    If you do that, it shows as Available.  This is confusing and
    inconsistent.
    
    Test Plan:
    1) Create an item level suspended hold for a record with no other holds
    2) Note in the record details that the hold shows an item level hold
    3) Apply this patch
    4) Refresh the record details page, note the item is "Available"
    5) Optional: prove t/db_dependent/Holds.t t/db_dependent/Reserves.t
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works as described, passes all tests and QA script.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit e261343aac9fab0b737962fe740c9f30b0d8d41b
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Jul 14 12:49:27 2014 -0400

    Bug 12574 - BiblioDefaultView doesn't affect XSLT results view
    
    The OPAC's XSLT results view does not respect the choice set in the
    BiblioDefaultView system preference. This patch adds a check of the
    preference to the OPAC's results view for MARC21.
    
    To test you must have the OPAC configured to use the XSLT view for
    search results. Perform any search and test the link to a title's detail
    page. Switching the values of the BiblioDefaultView should be correctly
    reflected in the search results links.
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works as described for XSLT view in OPAC.
    
    Notes:
    - maybe we should change the pref text from 'simple form' to 'normal view'.
    - the patch doesn't include changes to the title link generated from an 880
      field - so those links will still lead to the wrong view.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit d968df4743a50d6ae283977e438843340597b7ca
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Jul 14 13:07:42 2014 -0400

    Bug 10571 - IntranetBiblioDefaultView doesn't do anything with MARC21 XSLT
    
    The staff client's XSLT results view does not respect the choice set in
    the IntranetBiblioDefaultView system preference. This patch adds a check
    of the preference to the staff client's results view for MARC21.
    
    To test you must have the staff client configured to use the XSLT view
    for search results. Perform any search and test the link to a title's
    detail page. Switching the value of the IntranetBiblioDefaultView
    preference should be correctly reflected in the search results links.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Work as described, no koha-qa errors.
    
    Only for MARC21 :(
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works as described, no problems found.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Breeding.pm                                     |    2 +-
 C4/Reserves.pm                                     |   41 +++++++++++++-------
 .../prog/en/xslt/MARC21slim2intranetResults.xsl    |   21 +++++++++-
 .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl   |   18 ++++++++-
 t/db_dependent/Breeding.t                          |   15 +++++--
 t/db_dependent/Holds.t                             |    7 +++-
 6 files changed, 83 insertions(+), 21 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list