[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.03-27-ga2fe9fa991

Git repo owner gitmaster at git.koha-community.org
Thu Mar 5 03:09:37 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, 19.11.x has been updated
       via  a2fe9fa991bc074c4703729b0f459a40a2cc0eb4 (commit)
       via  fb45f5bb98c07ac544184b8ffa029f1f5702e993 (commit)
       via  c2c7c6e754c0cf44ce0f99798f5115731a61868e (commit)
       via  329796c7a95ed30a4e0ff4963518bf6f88a0f679 (commit)
       via  c64ac9504fc72ee8e6b95ac26b679dc1701ca2bf (commit)
       via  0f7d7a8c2faf5777655a9b67c8cea8ffade56071 (commit)
      from  eae26a21671e800d7d9ca822fa00561dc10e781d (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 a2fe9fa991bc074c4703729b0f459a40a2cc0eb4
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>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit fb45f5bb98c07ac544184b8ffa029f1f5702e993
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>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit c2c7c6e754c0cf44ce0f99798f5115731a61868e
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>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 329796c7a95ed30a4e0ff4963518bf6f88a0f679
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat Feb 15 01:15:35 2020 +0000

    Bug 18499: (QA follow-up) Add missing colon after label description
    
    To match the line above, a colon (:) was added after the description:
    
    Callnumber classification scheme: [pull down]
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit c64ac9504fc72ee8e6b95ac26b679dc1701ca2bf
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Feb 14 17:59:38 2020 +0000

    Bug 18499: (follow-up) Add missing filters
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 0f7d7a8c2faf5777655a9b67c8cea8ffade56071
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Feb 6 13:14:30 2020 +0000

    Bug 18499: Use items cn_source in cn_browser.pl
    
    This does a few things:
     * We fetch the cn_sort from the DB and use this rather than calculating based on DefaultClassificationSource
       We were already pulling based on the items source, so this should not change things
     * Rather than using JS to submit the form, it submits via html
     * Fix subtitle display and add barcode (it was retrieved in one query but not used)
     * Add option to apply different classification scheme to the search
    
    To test:
     1 - Add cn_browser.pl to the 'plugin' field in a framework for 952$o
     2 - Edit an item on a record in that framework
     3 - Enter an itemcallnumber
     4 - Click the two dots to launch the callnumber browser
     5 - Note the results
     6 - Apply patch
     7 - Repeat
     8 - Note subtitles and barcodes are displayed in results
     9 - Note callnumbers are appropriate
    10 - Try changing the class source used
    11 - Try this with differing dewey,lcc, and other callnumbers
    12 - Ensure results are as expected
    
    Signed-off-by: Myka Kennedy Stephens <mkstephens at lancasterseminary.edu>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 acqui/lateorders.pl                                |  6 ++--
 cataloguing/value_builder/cn_browser.pl            | 21 ++++++++------
 .../prog/en/modules/admin/marctagstructure.tt      |  3 +-
 .../prog/en/modules/cataloguing/addbiblio.tt       | 18 ++++++------
 .../cataloguing/value_builder/cn_browser.tt        | 33 ++++++++++++----------
 5 files changed, 44 insertions(+), 37 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list