[koha-commits] main Koha release repository branch 18.05.x updated. v18.05.04-31-g0f2d803

Git repo owner gitmaster at git.koha-community.org
Wed Oct 3 11:56:10 CEST 2018


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, 18.05.x has been updated
       via  0f2d80328d74c661ecd318f603a18743e3c699bb (commit)
       via  20b0ca1f63c6ad97a05476236036996058b784c2 (commit)
       via  419f889bb0e0220d81b9883d27aeea128a5b8888 (commit)
       via  e74f433418e4494c68e996c6d1061d485d67c49e (commit)
       via  362c9331a241bedb3efcab57c0e1287c5ed1c18a (commit)
      from  43b6644818f71c2d3c4bf09c6c40b36f5c0522c2 (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 0f2d80328d74c661ecd318f603a18743e3c699bb
Author: Pasi Kallinen <pasi.kallinen at joensuu.fi>
Date:   Fri Aug 24 11:05:04 2018 +0300

    Bug 20785: Advanced Editor does not honor MarcFieldDocURL
    
    The advanced MARC editor, Rancor, doesn't obey MarcFieldDocURL.
    Make it do so.
    
    Test plan:
    
    1) Enable EnableAdvancedCatalogingEditor
    2) Set MarcFieldDocURL to eg. http://{MARC}.example.com/{LANG}/{FIELD}
    3) Go to Cataloging -> Advanced editor
    4) Go to any field and press Ctrl-H
    5) Marc field documentation on www.loc.gov or ifla.org should open
    6) Apply patch
    7) Repeat 3 and 4. The Marc field docs should open on the URL you set
    
    Signed-off-by: Pasi Kallinen <pasi.kallinen at joensuu.fi>
    Signed-off-by: Michal Denar <black23 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit ca839922fd4bf3c455454f6dd9182203b1481831)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 20b0ca1f63c6ad97a05476236036996058b784c2
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Sat Jul 14 14:29:53 2018 +0000

    Bug 21078: overdrive.js Catch error if window.opener is not accessible
    
    To Test:
    0 - Enable overdrive search results on your koha
    1 - From a source develop a link to your koha instance that opens a new
    window:
    <a target="_blank"
    href="http://localhost:8080/cgi-bin/koha/opac-search.pl?q=love">Test</a>
    2 - Click that link
    3 - Note Overdrive results do not load
    4 - Note error in JS console
    5 - Apply patch
    6 - Click the link again
    7 - Note OD results load
    8 - Note no error in console
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 6975a6836a21f42675a9394602246891c19d9522)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 419f889bb0e0220d81b9883d27aeea128a5b8888
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat Aug 11 23:55:35 2018 +0000

    Bug 20241: Fix display of publication year in subscription record search for MARC21
    
    The old problem: UNIMARC uses biblio.publicationyear, MARC21 uses
    biblio.copyrightdate. Patch adds a fallback, if there is nothing
    in publicationyear, copyrightdate will be displayed.
    
    To test:
      - In a MARC21 database
      - Add a new subscription
      - Search for records
      - Verify the publication year column remains empty
      - Apply patch
      - Repeat search
      - Verify that the year now shows
    
    https://bugs.koha-community.org/show_bug.cgi?id=20421
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 8df47bdde678773f028f312b4cd8000a12425281)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit e74f433418e4494c68e996c6d1061d485d67c49e
Author: Ere Maijala <ere.maijala at helsinki.fi>
Date:   Fri Oct 13 14:07:21 2017 +0300

    Bug 21362: Advanced editor: Fix tab navigation in fixed fields
    
    Also minor tweaks to how the fields look.
    
    Test plan:
    
    1. Try moving from field to field and inside control fields with tab/shift-tab.
    2. Make sure focus doesn't get stuck in any position.
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 024643f51c4e0ca1803dd5013bb857e98cd924e5)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 362c9331a241bedb3efcab57c0e1287c5ed1c18a
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Sep 21 17:55:40 2018 -0300

    Bug 21396: Add 2 missing use statements in Koha::Account
    
    1. require C4::Letters must be use C4::Letters (from bug 19191)
    
    2. There is call to C4::Circulation::ReturnLostItem, but no use of
    C4::Circulation (from bug 20631)
    
    Test plan:
    finger crossed, I ran the tests from t/db_dependent/Koha and they all
    passed
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 1b56e446ed64cad9d4dd42a8cb3f1953f424e0aa)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 Koha/Account.pm                                    |    1 +
 .../intranet-tmpl/lib/koha/cateditor/widget.js     |   37 ++++++++++++++------
 koha-tmpl/intranet-tmpl/prog/css/cateditor.css     |    5 ++-
 .../prog/en/includes/cateditor-ui.inc              |    9 ++++-
 koha-tmpl/opac-tmpl/bootstrap/js/overdrive.js      |    3 +-
 serials/subscription-bib-search.pl                 |    2 +-
 6 files changed, 43 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list