[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.01-49-g6bec75a

Git repo owner gitmaster at git.koha-community.org
Sun Jan 12 22:29:07 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  6bec75ac565ff1f4b87a2fefb0207dcc9248fec2 (commit)
       via  eb95d427b456bed253b805c99e30b6b4483022ba (commit)
       via  1f1ad0ddf980610e9cf6766b9e056334b904a63b (commit)
       via  374b627ff7db3445c280e40ee08724726166db00 (commit)
       via  802211213ad0bb43b4b21ad4687b0fe711392328 (commit)
       via  57b6cc1364314a5bc73b666a35d26a893d98d469 (commit)
      from  2e11fc4ef9087ee9f28fd12ae80eff74e604b9a5 (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 6bec75ac565ff1f4b87a2fefb0207dcc9248fec2
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sat Nov 2 00:19:33 2019 +0000

    Bug 23783: Show languages from MARC21 field 041 in OPAC
    
    This copies the changes made in bug 20364 for the staff
    interface to the OPAC.
    
    Some slight changes have been made in comparison:
    - OPAC uses the class "separator" for the characters
      that are used between repeatable tags. "sep" as
      used in the original patch set has some CSS rules
      attached to it that break display, so it makes
      double sense to change it.
    - We revently removed ending . from the display in
      OPAC - so it's done here too.
    
    To test:
    1) Apply patch
    2) Do a search in the OPAC and check the results look correct
    3) Check some biblio detail pages and verify that they look correct
    4) Add some 041 subfields (a, b, d, h, j) in any combinations
    5) Repeat 2 and 3
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit eb95d427b456bed253b805c99e30b6b4483022ba
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jan 2 12:18:48 2020 +0000

    Bug 24282: Compiled CSS
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 1f1ad0ddf980610e9cf6766b9e056334b904a63b
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Dec 20 08:40:37 2019 +0100

    Bug 24282: SCSS conversion broke style in search results item status
    
    Before SCSS conversion, there was a style for search results item status :
      #searchresults span.status {
    Conversion to SCSS added ul :
      #searchresults ul span.status {
    Now style does not apply anymore.
    You can see that items on loan are not red anymore.
    
    To test, apply the patch and regenerate your CSS
    (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client).
    Clear your browser cache if necessary.
    
    All rules using #searchresults in 17.11 :
        font-size : 90%;
        list-style: url(../img/item-bullet.gif);
        padding : .2em 0;
            clear : left;
    }
    
        clear : left;
        color : #900;
        display : block;
    }
    
        clear : left;
        display : block;
    }
    
        display : block;
    }
    
        float : left;
        margin : 3px 5px 3px -5px;
    }
    
        vertical-align : top;
    }
    
    Apply patch update intranet CSS file and check you see the same rules.
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 374b627ff7db3445c280e40ee08724726166db00
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Dec 13 19:58:52 2019 +0000

    Bug 24244: Send null instead of empty string if branch not set
    
    Fix NewSuggestion if branchcode is passed with an empty string.
    Error was "Broken FK constraint"
    
    Test plan:
    Create a new suggestion, select "any" for the library.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    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 802211213ad0bb43b4b21ad4687b0fe711392328
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Sun Dec 15 12:43:25 2019 +0100

    Bug 24244: Add test
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    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 57b6cc1364314a5bc73b666a35d26a893d98d469
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Dec 30 06:52:03 2019 -0500

    Bug 24317: Sample patron data not loading for non-English installations
    
    Bug 14570 removed the guarantorid column from the English sample data but missed the other translated installers. This means the sample patrons can no longer be installed for other languages.
    
    Test Plan:
    1) Attempt to install the sample patron data in German, Spanish, Norwegian, and Polish
    2) Note the error
    3) Apply this patch
    4) Repeat step 1
    5) No error!
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    On top of Bug 24316 + followup
    
    Tested doing clean install for de-DE es-ES fr-CA it-IT nb-NO pl-PL
    up to loading of all mandatory & optional data.
    All languages load without problems.
    A small qa error fixed in commit message.
    
    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:
 C4/Suggestions.pm                                  |    2 +
 .../data/mysql/de-DE/optional/sample_patrons.sql   |  102 ++++++++++----------
 .../data/mysql/es-ES/optional/sample_patrons.sql   |  102 ++++++++++----------
 .../mysql/nb-NO/2-Valgfritt/sample_patrons.sql     |  102 ++++++++++----------
 .../data/mysql/pl-PL/optional/sample_patrons.sql   |  102 ++++++++++----------
 .../intranet-tmpl/prog/css/src/staff-global.scss   |   28 +++---
 koha-tmpl/intranet-tmpl/prog/css/staff-global.css  |    2 +-
 .../bootstrap}/en/xslt/MARC21Languages.xsl         |    0
 .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl    |    2 +
 .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl   |    2 +
 .../bootstrap/en/xslt/MARC21slimUtils.xsl          |   52 ++++++++++
 t/db_dependent/Suggestions.t                       |    1 +
 12 files changed, 278 insertions(+), 219 deletions(-)
 copy koha-tmpl/{intranet-tmpl/prog => opac-tmpl/bootstrap}/en/xslt/MARC21Languages.xsl (100%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list