[koha-commits] main Koha release repository branch master updated. v19.11.00-722-g94393690ef

Git repo owner gitmaster at git.koha-community.org
Mon Feb 17 12:11:43 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  94393690ef6a17d70890bde445b3ef1c700cb06d (commit)
       via  82716a01727f143ba2c167cd86233a531f330390 (commit)
       via  8aec7aa5fa7e5c2e7921cf9e0e8ec06961fa80af (commit)
       via  5a685aa78fda1c8b3693da5fbb846b2e50f21475 (commit)
       via  932596cc479f637ed276d10b5a012b915da91e9e (commit)
       via  6fcbf109d6e0139d9379e52c6b6abf3c11f3f7f8 (commit)
       via  7383bf3959cfd0381fa455736993ef80dde9c55c (commit)
       via  46b5849f30c102177033e349c5cda791b5d66f0e (commit)
      from  7c9680749fa3a56ee65e823b318b22876a95edce (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 94393690ef6a17d70890bde445b3ef1c700cb06d
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Jan 6 16:26:33 2020 +0000

    Bug 15850: Correct eslint errors in cataloging.js
    
    This patch makes corrections to cataloging.js so that there are no
    issues flagged by eslint. The fewer eslint warnings we have to see makes
    it more likely that real problems will be noticed.
    
    Some functions were unused have been removed.
    
    To test, apply the patch and clear your browser cache if necessary.
    
     - Open a MARC record for editing in the basic cataloging editor.
     - Test the JavaScript-driven functionality affected by the changed
       file:
        - Open the authority browser from a field (e.g. 100a) which is
          linked to an authority type.
        - Clone a repeatable tag.
        - Clone a repeatable subfield
        - "Unclone" a tag or subfield: This should remove the tag or
          subfield (if possible) or clear the contents of the tag or
          subfield if not.
        - Clone a subfield on the item edit page (In my MARC21 installation
          I had to modify the default framework in order to have a
          repeatable item subfield to test with).
    
    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 82716a01727f143ba2c167cd86233a531f330390
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Jun 19 20:54:40 2019 -0500

    Bug 23084: Replace grep {^$var$} with grep {$_ eq $var}
    
    We certainly faced 3 similar bugs due to this syntax: bug 23006, bug
    22941 and bug 17526.
    
    To prevent other issues related to this syntax this patch suggests to
    replace them all in one go.
    
    Test plan:
    Confirm that the 2 syntaxes are similar
    Eyeball the patch and confirm that there is no typo!
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel 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 8aec7aa5fa7e5c2e7921cf9e0e8ec06961fa80af
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Feb 17 10:43:37 2020 +0000

    Bug 20882: DBRev 19.12.00.022
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 5a685aa78fda1c8b3693da5fbb846b2e50f21475
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Mon Feb 10 14:28:51 2020 +0000

    Bug 20882: Move items.uri to mediumtext
    
    Applies to items and deleteditems.
    
    Test plan:
    Run new install or upgrade. Check field size.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 932596cc479f637ed276d10b5a012b915da91e9e
Author: Andreas Jonsson <andreas.jonsson at kreablo.se>
Date:   Fri Jan 24 10:13:05 2020 +0000

    Bug 24506: Multibranch limit does not work with ElasticSearch
    
    Test plan
    1. Set up a system with ElasticSearch
    2. Set up or make sure ther are at least two branches
    3. create a group of branches
    4. make sure there are items associated with any library in the group
    5. make a search in opac limited by the library group
    6. make an advanced search in intra limited by the library group
    7. change SearchEngine system preference to Zebra and repeat 5. and 6.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 6fcbf109d6e0139d9379e52c6b6abf3c11f3f7f8
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Mon Feb 10 15:17:38 2020 +0000

    Bug 13574: Fix display of repeatable item subfields
    
    Applies to OPAC and staff: opac-MARCdetail and catalogue/MARCdetail.
    
    Test plan:
    [1] Pick an item. Pick two fields say URI and copy number, and fill these
    with a value like A | B. (The pipe char is important.)
    [2] Verify that the display of the item block on opac-MARCdetail shows
    both A and B in those columns. (Previously only B was shown.)
    [3] Verify the same on catalogue MARC detail, items tab.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Holly Cooper <hc at interleaf.ie>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 7383bf3959cfd0381fa455736993ef80dde9c55c
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Feb 13 09:27:26 2020 +0000

    Bug 24649: Fix two other missing <li> tags for cloned subfields
    
    Same problem as previous patch in Batch item modification as well as
    serial-edit.pl.
    
    Test plan:
    [1] Go to Tools/Batch item modification.
        Test cloning subfield on batchMod-edit.
    [2] Go to a serial with "Create item when receiving".
        Receive an issue. Click add item.
        Test cloning subfield.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Aleisha Amohia <aleishaamohia at hotmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 46b5849f30c102177033e349c5cda791b5d66f0e
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Feb 13 08:56:35 2020 +0000

    Bug 24649: Fix missing <li> tag on item editor for cloned subfield
    
    Instead of the parentNode (which is a div), we need the parent of the div
    (which is a li).
    So a simple fix.
    
    Test plan:
    To see the difference, test first without patch applied:
    Mark item subfield, say URI, as repeatable.
    Clone that subfield in item editor.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Aleisha Amohia <aleishaamohia at hotmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Acquisition.pm                                  |   8 +-
 C4/ImportBatch.pm                                  |   2 +-
 C4/Items.pm                                        |   8 +-
 C4/Members/Statistics.pm                           |   2 +-
 C4/OAI/Sets.pm                                     |   4 +-
 C4/Overdues.pm                                     |   2 +-
 C4/Search.pm                                       |   6 +-
 C4/Serials.pm                                      |   2 +-
 C4/Stats.pm                                        |   2 +-
 C4/Tags.pm                                         |   6 +-
 C4/Utils/DataTables/Members.pm                     |   2 +-
 Koha.pm                                            |   2 +-
 Koha/Object.pm                                     |   6 +-
 Koha/Objects.pm                                    |   2 +-
 Koha/Schema/Result/Deleteditem.pm                  |   9 +-
 Koha/Schema/Result/Item.pm                         |   9 +-
 acqui/duplicate_orders.pl                          |   4 +-
 admin/preferences.pl                               |   2 +-
 admin/searchengine/elasticsearch/mappings.pl       |   4 +-
 catalogue/ISBDdetail.pl                            |   4 +-
 catalogue/MARCdetail.pl                            |  24 +++--
 catalogue/detail.pl                                |   4 +-
 catalogue/imageviewer.pl                           |   4 +-
 catalogue/itemsearch.pl                            |   2 +-
 catalogue/labeledMARCdetail.pl                     |   4 +-
 catalogue/moredetail.pl                            |   4 +-
 catalogue/search.pl                                |   2 +-
 circ/circulation.pl                                |   2 +-
 clubs/templates-add-modify.pl                      |   4 +-
 installer/data/mysql/kohastructure.sql             |   4 +-
 installer/data/mysql/updatedatabase.pl             |   9 ++
 .../prog/en/modules/cataloguing/additem.tt         |   2 +-
 .../prog/en/modules/serials/serials-edit.tt        |   4 +-
 .../prog/en/modules/tools/batchMod-edit.tt         |   2 +-
 koha-tmpl/intranet-tmpl/prog/js/cataloging.js      | 100 ++++++---------------
 misc/cronjobs/gather_print_notices.pl              |   2 +-
 misc/cronjobs/longoverdue.pl                       |   8 +-
 misc/migration_tools/rebuild_zebra.pl              |   4 +-
 misc/translator/LangInstaller.pm                   |   2 +-
 misc/translator/translate                          |   2 +-
 opac/opac-MARCdetail.pl                            |  13 ++-
 opac/opac-detail.pl                                |   2 +-
 opac/opac-memberentry.pl                           |   2 +-
 opac/opac-reserve.pl                               |   2 +-
 opac/opac-search-history.pl                        |   2 +-
 opac/opac-search.pl                                |   4 +-
 opac/opac-shelves.pl                               |   2 +-
 reports/borrowers_stats.pl                         |   8 +-
 tools/export.pl                                    |   2 +-
 tools/letter.pl                                    |   2 +-
 tools/modborrowers.pl                              |   4 +-
 virtualshelves/shelves.pl                          |   4 +-
 52 files changed, 151 insertions(+), 171 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list