[koha-commits] main Koha release repository branch 19.05.x updated. v19.05.02-76-ga4e9131

Git repo owner gitmaster at git.koha-community.org
Tue Aug 6 15:37:45 CEST 2019


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.05.x has been updated
       via  a4e91318dad267cf690935cdf447319d38539767 (commit)
       via  13eddb09b43d7b3939e37d4caacb111560b87c11 (commit)
       via  d08cfbb5eb8c4bf0b40d48bd0aa639963f5fd3fc (commit)
       via  37c68ad1bc92109ebebacb0523cec1cda1b65bdf (commit)
       via  8b9c96308fe063b28123e6081472788f88b9f4e8 (commit)
      from  1923fd376f778b9a7bbab65a7b92914522cbd3e9 (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 a4e91318dad267cf690935cdf447319d38539767
Author: Andrew Isherwood <andrew.isherwood at ptfs-europe.com>
Date:   Fri Jul 12 15:37:26 2019 +0100

    Bug 23308: Change html to filter to $raw
    
    This patch changes the erroneous html filter to $raw
    
    Test plan:
    - Apply patch
    - Enter some HTML into the OpacMaintenanceNotice syspref
    - View the OPAC front page
    => TEST: Observe that the notice displays correctly and the HTML is not
    escaped
    
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: frederik chenier <frederik.chenier at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit f829221f818c1f7b7779f4bd74f633206deda2e1)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 13eddb09b43d7b3939e37d4caacb111560b87c11
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jun 26 17:52:52 2019 +0000

    Bug 23221: (follow-up) Add comments on markup structure
    
    This patch adds a few comments to the markup in order to highlight the
    structure of the page.
    
    Signed-off-by: Mark Tompsett <mtompset 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>
    (cherry picked from commit 4068484650cb76d0fa3d801a4a5f49bd65cffb0b)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit d08cfbb5eb8c4bf0b40d48bd0aa639963f5fd3fc
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jun 26 14:29:24 2019 +0000

    Bug 23221: Reindent tools/manage-marc-import.tt
    
    This patch reformats the template for the Manage staged MARC records
    page. It makes only whitespace changes. It should have no effect on the
    behavior of the page.
    
    In addition to re-indentation, some lines have been broken up. These
    should be the only changes highlighted when using diff while ignoring
    whitespace.
    
    To test, apply the patch and view the Manage staged MARC records page.
    The page should look correct and work correctly:
    
     - Paging through results
     - Viewing batches
     - Cleaning batches
     - Deleting batches
    
    Signed-off-by: Mark Tompsett <mtompset 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>
    (cherry picked from commit cd66074205b571d1db6acbb57d8d8554d3d4fe85)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 37c68ad1bc92109ebebacb0523cec1cda1b65bdf
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Jul 1 11:45:14 2019 +0000

    Bug 13597: Make staff client Amazon no image results match OPAC
    
    The point is to make staff client HTML for missing Amazon cover
    images more equivalent to that of the OPAC
    
    To test:
    1 - Enable Amazon images everywhere
    2 - Search on the staff and OPAC to get some results without
        Amazon covers (missing ISBNs and bad ISBNs)
    3 - Note OPAC missing images are like:
    <span class="no-image">No cover image available</span>
    4 - Note staff client are like:
    <img src="https://images-na.ssl-images-amazon.com/images/G/01/x-site/icons/no-img-sm.gif" alt="" class="thumbnail" />
    5 - The staff links do not lend themselves to easy CSS hiding/styling
    6 - Apply patch
    7 - Repeat
    8 - Note increased consistency
    
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit fcc22df8ff277ac7041d5eb72e83821fb1ef1f37)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 8b9c96308fe063b28123e6081472788f88b9f4e8
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Wed May 31 16:24:51 2017 +0200

    Bug 18707: Background jobs post disabled inputs
    
    For example, in Tools > Batch item modification input of deleted subfields are disabled.
    This form is posted using background job via JS code.
    Looks like this JS code converts a POST form into a GET URL, including inputs that are disabled :
    
    koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js
    function submitBackgroundJob(f) {
    ...
    $(':input', f).each(function() {
    ...
    
    This patch add a :enabled to selector
    
    Test plan :
    <to define>
    
    Signed-off-by: Kyle M Hall <kyle 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>
    (cherry picked from commit e269d6e6e6c9d1e3e11ae43a7773f3026f4d801a)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

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

Summary of changes:
 .../prog/en/modules/catalogue/results.tt           |    8 +-
 .../prog/en/modules/tools/manage-marc-import.tt    |  910 +++++++++++---------
 .../prog/js/background-job-progressbar.js          |    2 +-
 .../opac-tmpl/bootstrap/en/modules/maintenance.tt  |    2 +-
 4 files changed, 488 insertions(+), 434 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list