[koha-commits] main Koha release repository branch master updated. v18.05.00-1536-g7b16603

Git repo owner gitmaster at git.koha-community.org
Mon Nov 26 14:07:22 CET 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, master has been updated
       via  7b16603b310212cc42d2e06e4b9bcaefa4b066ea (commit)
       via  38481c253ddfa5af061dfe3646650be0e3a52d58 (commit)
       via  9cf79bd0382871787d75d1fc97f7011e7b983434 (commit)
       via  c1ec452e5ce454b99433972a34ec1154e81a19a3 (commit)
       via  e40bb00ab8da87c8c5d6e660de928d24b887df17 (commit)
       via  449116857e65634295d5f114dc47ff85db702d7d (commit)
       via  d6d92f9dc40a7c6933d7c80b745095943415ee6b (commit)
      from  5f34dd06ec66b11a914e49eb611714ea4c72771d (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 7b16603b310212cc42d2e06e4b9bcaefa4b066ea
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Wed Oct 24 14:23:02 2018 +0200

    Bug 21644: better UNIMARC XSLT display of 210 in intranet
    
    In intranet default UNIMARC XSLT display of 210 is tricky.
    It tests each subfield with a complex conditional prefix.
    In OPAC default UNIMARC XSLT display 210 is simply displayed with a loop on all subfields.
    
    I propose to use the same code as OPAC in intranet.
    It allows to display $f and removes strange middle-score character.
    
    Test plan:
    1) Doni't apply patch
    2) Use an UNIMARC database
    3) Use default XSLT in all displays
    4) Configure a framework to allow 210 subfields from 'a' to 'h'
    5) Edit a record with this framework
    6) In each 210 subfield enter its letter : $a a, $b b ...
    7) Save record
    8) Look at record in OPAC, you see : "Publication: a, b : c, d, e, f : g, h"
    9) Look at record in intranet
    10) You see : ""Publication: a, b : c, d - e : g, h
    11) Apply patch
    12) Look at record in intranet
    13) You see : "Publication: a, b : c, d, e, f : g, h"
    
    Signed-off-by: Andreas Roussos <arouss1980 at gmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    This patch makes intranet consistent with staff again on this area.
    Note that we loose some punctuation like "- e".
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 38481c253ddfa5af061dfe3646650be0e3a52d58
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Nov 26 12:49:25 2018 +0000

    Bug 21730: DBRev 18.06.00.062
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 9cf79bd0382871787d75d1fc97f7011e7b983434
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Oct 31 17:42:43 2018 -0300

    Bug 21730: Add missing PA_CLASS authorized values categories
    
    PA_CLASS is missing from the list of AV category
    
    Test plan:
    Execute the update DB entry
    Confirm that you now have PA_CLASS in the AV category list
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit c1ec452e5ce454b99433972a34ec1154e81a19a3
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Fri Nov 23 12:02:51 2018 +0100

    Bug 21874: (QA follow-up) Fix intranet sendshelf
    
    Move encode line below regex line.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit e40bb00ab8da87c8c5d6e660de928d24b887df17
Author: Katrin Fischer <katrin.fischer at bsz-bw.de>
Date:   Fri Nov 23 11:30:49 2018 +0100

    Bug 21874: Fix encoding of cart and list email subjects
    
    The subject of the cart and list emails is not correctly
    encoded and displays incorrectly in some email clients.
    
    To test:
    
    Lists:
    - Create a list, name it using umlauts or other diacritics
      Example:  Jugendbücher (books for youths in German)
    - Add some items to your list
    - Email yourself the list
    - Verify that the email subject is broken
    
    Cart:
    - Install another language with non-latin characters like Greek
    - Fill the cart with some titles
    - Send yourself the cart
    - Verify that the email subject is broken
    
    Note: Some email clients display correctly, others not.
          It's known to be incorrect in Outlook and web.de,
          displaying nicely in Thunderbird.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Tested all four scripts by manipulating the cart text too in templates.
    Follow-up handles intranet sendshelf.
    
    Note: I asked Katrin to remove the encode UTF-8 statements, since we
    convert to MIME and the subject line should never be UTF-8.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit 449116857e65634295d5f114dc47ff85db702d7d
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Nov 19 14:47:04 2018 +0000

    Bug 21649: Pass guarantee info to template when adding child
    
    To test:
    1 - Find an adult patron
    2 - Click 'Add child'
    3 - Note address/phone info does not carry over
    4 - Apply patch
    5 - Repeat
    6 - Note information populates
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Todd <tgoatley at gmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    It works, but the code is ugly and hard to maintain.
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

commit d6d92f9dc40a7c6933d7c80b745095943415ee6b
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Nov 21 16:42:03 2018 +0000

    Bug 21758: Navigation in Z39.50 result pages not working in Acquisitions
    
    This patch makes markup corrections to the acquisitions Z39.50 search
    results template so that the navigation form works correctly.
    
    Also changed: Removed invalid type attributes from style and script
    tags.
    
    To test, apply the patch and go to Acquisitions -> Vendor -> Basket.
    
    - Add to basket -> From an external source
    - Perform a Z39.50 search which will return multiple pages of results
    - On the search results page, use the form at the bottom of the page to
      navigate through results. Confirm that both the "Go" form and the
      next/previous buttons work.
    
    Signed-off-by: David Nind <david at davidnind.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>

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

Summary of changes:
 Koha.pm                                            |    2 +-
 basket/sendbasket.pl                               |    2 +-
 installer/data/mysql/mandatory/auth_val_cat.sql    |    1 +
 installer/data/mysql/updatedatabase.pl             |    7 ++++
 .../prog/en/modules/acqui/z3950_search.tt          |   23 +++++------
 .../prog/en/xslt/UNIMARCslimUtils.xsl              |   41 ++++++++------------
 members/memberentry.pl                             |    2 +-
 opac/opac-sendbasket.pl                            |    2 +-
 opac/opac-sendshelf.pl                             |    2 +-
 virtualshelves/sendshelf.pl                        |    3 +-
 10 files changed, 43 insertions(+), 42 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list