[koha-commits] main Koha release repository branch master updated. v3.22.00-beta-31-g6ea1fbe

Git repo owner gitmaster at git.koha-community.org
Tue Nov 17 13:52:37 CET 2015


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  6ea1fbe8c7c28e0427366c90bea8192a1033e3d5 (commit)
       via  78c1b0198841d832f8aca2c1a8e7d8baffe8a08c (commit)
       via  621f2ce9ac960d93466c9da5b4c6559e71519e3d (commit)
       via  7be97133eeb350fa65fea667a149d000bf348ecc (commit)
       via  defcfd050ebb0a4b6734274f7710f23944abf852 (commit)
       via  cc65a5fed2afd27b2a45af49d6fe08d54fef7de9 (commit)
       via  be1ed5218636eab75c9f030e0b688aba422d67e7 (commit)
       via  1801a9462e190231f3303b01247b834f6e1d99bd (commit)
      from  c0adb88d0a55ac5625bd5973bb7053b14769bd41 (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 6ea1fbe8c7c28e0427366c90bea8192a1033e3d5
Author: Zeno Tajoli <z.tajoli at cineca.it>
Date:   Wed Nov 11 15:00:36 2015 +0100

    Bug 15070: Update MARC21 it-IT frameworks to Update 21 (September 2015)
    
    To test it:
    
    - drop and recrate Koha DB
    - Run the Koha web installer for it-IT
    - Run MARC bibliographic framework test
    
    http://bugs.koha-community.org/show_bug.cgi?id=15070
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Tested with it-IT installer
    All files load without problem, save for FastAdd (see Bug 15181)
    but the file loads Ok
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 78c1b0198841d832f8aca2c1a8e7d8baffe8a08c
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Nov 11 09:36:16 2015 +0000

    Bug 15171: Display subscriptions which will expire in the future
    
    Since the form on the subscription check expiration page let the user choose an
    expiration date > today, there is no sense to hide subscriptions which will expire in the future.
    
    Test plan:
    0/ Make sure you have at least subscription with an expiration date > today
    1/ Start a seach on the check expiration page (serials/checkexpiration.pl)
    with a date < today, = today and > today
    => The subscription won't never be displayed without this patch.
    With this patch, it will.
    
    Note that you will get a "No results for your query" message only if you
    have search for something.
    
    Followed testplan, works as expected.
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 621f2ce9ac960d93466c9da5b4c6559e71519e3d
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 13 15:45:04 2015 +0000

    Bug 15114: Fix typo in opac-suggestion template
    
    There is a $ in front of the loggedinusername variable, which is
    obviously not what is expected here.
    
    It fixes the wrong warning message "You are not authorized to see
    pending purchase suggestions." when it should be "There are no pending
    purchase suggestions."
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 7be97133eeb350fa65fea667a149d000bf348ecc
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 13 16:22:03 2015 +0000

    Bug 15189: Do not close STDERR when running in background mode
    
    The batch records modification tool close STDERR, it's useless and hide
    warnings/errors.
    
    Like the other processes using the BackgroundJob module, this one should
    let it open.
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit defcfd050ebb0a4b6734274f7710f23944abf852
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 13 09:18:43 2015 +0000

    Bug 15109: Make name the default sort order for all patron searches
    
    Find another place where there is a patron search (add user to a basket,
    add users to a fund or edit owner of a fund, set a guarantor to a child,
    etc.).
    Do a search a confirm that the results are now sorted by name instead of
    cardnumber.
    
    Signed-off-by: Nicole Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit cc65a5fed2afd27b2a45af49d6fe08d54fef7de9
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Nov 13 09:17:49 2015 +0000

    Bug 15109 - Regression in patron search results ordering
    
    In Koha 3.16 or earlier, before the introduction of the ajax datatable
    for patron searching, the search results were ordered by name. In
    master, the results are currently ordered by cardnumber, which is not
    very useful.
    
    Test Plan:
    1) Do a "browse by last name" or a patron search
    2) Note the results are sorted by card number
    3) Apply this patch
    4) Reload the page, start a new search
    5) Note the results are sorted by name
    
    Signed-off-by: Nicole Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit be1ed5218636eab75c9f030e0b688aba422d67e7
Author: Jesse Weaver <pianohacker at gmail.com>
Date:   Tue Nov 10 12:12:43 2015 -0700

    Bug 15197: In Rancor, multiple &/</" characters not escaped on saving
    
    Test plan:
    
      1) On current master, create a record in Rancor containing multiple &, < or " characters ("A & B & C", for example).
      2) Try to save the record, it will silently fail.
      3) Apply this patch.
      4) The record should now save correctly.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Works well, record saved
    No errors
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 1801a9462e190231f3303b01247b834f6e1d99bd
Author: David Cook <dcook at prosentient.com.au>
Date:   Tue Nov 17 12:36:16 2015 +1100

    Bug 15182: Conditionally load Koha::NorwegianPatronDB
    
    This patch loads Koha::NorwegianPatronDB if it can, or adds a warning
    to the log if it can't load it.
    
    Since the Koha::NorwegianPatronDB functionality in C4::Members is
    wrapped in system preferences, the loading of the module is
    irrelevant unless one actually wants to use the module and its
    associated functionality.
    
    NOTE:
    
    This patch fixes a problem where we were getting errors saying
    Crypt::GCrypt couldn't be loaded even though it's not a required
    dependency.
    
    This patch will likely only affect people not using Debian-based
    systems where libcrypt-gcrypt-perl is available. The current
    version of Crypt::GCrypt doesn't build so it's not an option
    for most non-Debian users to install this not required
    dependency in order to work around this issue...
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    Works as advertised for Debian-based systems
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

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

Summary of changes:
 C4/Members.pm                                      |    6 +-
 acqui/add_user_search.pl                           |    1 +
 admin/add_user_search.pl                           |    1 +
 .../marc21/mandatory/authorities_normal_marc21.sql |  155 +-
 .../marc21/mandatory/marc21_framework_DEFAULT.sql  |  117 +-
 .../optional/marc21_default_matching_rules.sql     |    8 +
 .../optional/marc21_holdings_coded_values.sql      |    2 +-
 .../optional/marc21_sample_fastadd_framework.sql   |  222 +-
 .../optional/marc21_simple_bib_frameworks.sql      |32549 +-------------------
 .../lib/koha/cateditor/marc-record.js              |    2 +-
 .../prog/en/modules/common/patron_search.tt        |    1 +
 .../prog/en/modules/members/member.tt              |    4 +-
 .../prog/en/modules/serials/checkexpiration.tt     |    2 +-
 .../bootstrap/en/modules/opac-suggestions.tt       |    2 +-
 members/guarantor_search.pl                        |    1 +
 patroncards/add_user_search.pl                     |    1 +
 serials/add_user_search.pl                         |    1 +
 serials/checkexpiration.pl                         |    4 +-
 tools/batch_record_modification.pl                 |    1 -
 19 files changed, 747 insertions(+), 32333 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list