[koha-commits] main Koha release repository branch master updated. v19.11.00-743-g6a2f70b7e3

Git repo owner gitmaster at git.koha-community.org
Mon Feb 17 15:14:14 CET 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  6a2f70b7e382bc43fc39eda790dcbaf7e1788fbb (commit)
       via  b11678b9053c258898e8320c028dfd95dd3c4a02 (commit)
       via  1e62983653501759c2f1819ac97d20a7912d701d (commit)
       via  68a92c02dfbafa9eea73516cb29ba5e6a311a730 (commit)
       via  dcfedab563fd7bf202a5e70203619dda288c8406 (commit)
      from  f96075d6ec6d9a1e1881d177f0c721e41ecaef86 (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 6a2f70b7e382bc43fc39eda790dcbaf7e1788fbb
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Feb 10 19:04:57 2020 +0000

    Bug 24621: Phase out jquery.cookie.js: Basic MARC editor
    
    This patch removes the use of the jquery.cookie plugin by the basic MARC
    editor for setting two interface preferences: Showing MARC tag numbers
    and showing MARC documentation links.
    
    To test, apply the patch and open the basic MARC editor.
    
     - From the "Settings" menu, select the "Show MARC tag documentation
       links" link. This should toggle the display of the "?" link next to
       MARC tag descriptions.
     - Reload the page to confirm that your selection has been saved.
     - Perform the same test with the "Show tags" menu item.
    
    You can also follow the changes to the cookie using the browser's
    developer console. Look for cookies named 'marcdocs_***' and
    'marctags_***' (where *** is the borrowernumber of the logged-in
    user) and confirm that the value of each flips from "show" to "hide" and
    back.
    
    https://developer.mozilla.org/en-US/docs/Tools/Storage_Inspector
    https://developers.google.com/web/tools/chrome-devtools/storage/cookies
    
    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>

commit b11678b9053c258898e8320c028dfd95dd3c4a02
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Feb 10 17:58:04 2020 +0000

    Bug 24619: Phase out jquery.cookie.js: MARC Frameworks
    
    This patch removes the use of the jquery.cookie plugin on the MARC
    Frameworks page and replaces it with a call to the new js-cookie
    library.
    
    To test, apply the patch and go to Administration -> MARC
    bibliographic frameworks.
    
     - Choose the 'MARC structure' menu item for one of the frameworks
       listed.
     - On the page which lists the tags in the framework, check the box
       labeled "Display only used tags/subfields." The page should reload.
     - The checkbox should remain checked and the list of tags should now
       show only used tags.
     - Uncheck the checkbox and the page should reload again.
    
    You can also follow the changes to the cookie using the browser's
    developer console. Look for a cookie named
    'marctagstructure_selectdisplay' and confirm that the value flips from 0
    to 1 and back.
    
    https://developer.mozilla.org/en-US/docs/Tools/Storage_Inspector
    https://developers.google.com/web/tools/chrome-devtools/storage/cookies
    
    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>

commit 1e62983653501759c2f1819ac97d20a7912d701d
Author: Josef Moravec <josef.moravec at gmail.com>
Date:   Tue Feb 11 19:03:18 2020 +0000

    Bug 21921: Add date publication year to biblio Z39.50 search form in acquisition
    
    Test plan:
    
    1) Apply the patch
    2) Have a Z39.50 endpoint with attr 31 defined - Library of Congress
    supports this
    3) Try to find some biblio records through Z39.50 using the new field
    "Publication year" in acquisition module
    
    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>

commit 68a92c02dfbafa9eea73516cb29ba5e6a311a730
Author: Josef Moravec <josef.moravec at gmail.com>
Date:   Fri Nov 30 09:06:22 2018 +0000

    Bug 21921: Add date publication year to biblio Z39.50 search form
    
    Test plan:
    
    1) Apply the patch
    2) Have a Z39.50 endpoint with attr 31 defined - Library of Congress
    supports this
    3) Try to find some biblio records through Z39.50 using the new field
    "Publication year"
    
    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>

commit dcfedab563fd7bf202a5e70203619dda288c8406
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Dec 16 17:15:19 2019 +0100

    Bug 24389: Better error handle when claiming late orders
    
    A successful message says that the email has been sent and the order has
    been claimed, but nothing happened.
    
    Test plan:
    0. Do not apply this patch
    1. Create a new vendor, does not create a contact
    2. Create some orders, close the basket
    3. Go to the late orders page and claims some orders
    => You get a successful message, but the claim has not been done!
    4. Apply this patch
    5. Claim the orders
    => You get an error
    6. Set a contact for the vendor
    7. Claim the orders
    => Success
    
    In the docker container, you may need to:
    % apt install postfix
    % postfix start
    Edit /etc/hosts
    127.0.0.1       localhost localhost.localdomain
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Joonas Kylmälä <joonas.kylmala at helsinki.fi>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Breeding.pm                                         |  1 +
 acqui/lateorders.pl                                    |  6 +++---
 acqui/z3950_search.pl                                  |  3 +++
 cataloguing/z3950_search.pl                            |  3 +++
 .../prog/en/modules/acqui/z3950_search.tt              |  3 +++
 .../prog/en/modules/admin/marctagstructure.tt          |  3 +--
 .../prog/en/modules/cataloguing/addbiblio.tt           | 18 +++++++++---------
 .../prog/en/modules/cataloguing/z3950_search.tt        |  4 ++++
 8 files changed, 27 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list