[koha-commits] main Koha release repository branch master updated. v19.05.00-476-gb400309

Git repo owner gitmaster at git.koha-community.org
Tue Aug 13 12:54:51 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, master has been updated
       via  b400309ae54a70021fb8bc1414939bbf173551a0 (commit)
       via  2931eaba10980e0fde0addecc9e70be7d47ca77a (commit)
       via  0548bfcd67ab8e0445ff7f0f52d3c7c10b98ed1b (commit)
       via  2782a039aa7883107c74ab6e446aa51b9f555683 (commit)
       via  b9ab00515902e05a1598597d2e3a334c357c5a13 (commit)
       via  a8ddf55667f60a3cdc23ef0b6272921bc975bc73 (commit)
       via  cec6f46b47ae9625222f35014f6693ba7bb365e8 (commit)
       via  52885ff55b1cac4b09129cc504bb23d169b22c13 (commit)
      from  78c2800bc833759302bf68e1dc3a4fed26a5163e (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 b400309ae54a70021fb8bc1414939bbf173551a0
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Fri Aug 9 09:05:08 2019 +0000

    Bug 23413: (QA follow-up) Fix terminology
    
    Changed the POD of the new method to use holds.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 2931eaba10980e0fde0addecc9e70be7d47ca77a
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Aug 1 18:11:19 2019 +0000

    Bug 23413: Add a holds method to Koha::Items
    
    To test;
    1 - prove -v t/db_dependent/Koha/Items.t
    
    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>

commit 0548bfcd67ab8e0445ff7f0f52d3c7c10b98ed1b
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Aug 1 11:44:39 2019 +0000

    Bug 23408: Move relatives-issues-table to an include
    
    TO test:
    1 - Find and adult patron
    2 - Add a child account
    3 - Check out some things to the child
    4 - View the adults account, click 'Relatives checkouts'
    5 - Observe table is oddly formatted
    6 - View on both the 'Check out' and 'Details' tabs
    7 - Apply patch
    8 - Tables are displayed correctly
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 2782a039aa7883107c74ab6e446aa51b9f555683
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Jul 15 17:46:36 2019 +0000

    Bug 23319: Implement blocking errors for neworderbiblio and basket.pl
    
    To test:
    1 - Hit neworderbiblio with a query and no vendor
        http://localhost:8081/cgi-bin/koha/acqui/neworderbiblio.pl?q=cat
        Or, add to basket from existing record with a search
        Refresh the page (url has no parameters)
    2 - Get an internal server error
    3 - Add bookseller
        http://localhost:8081/cgi-bin/koha/acqui/neworderbiblio.pl?q=cat&booksellerid=1
    4 - Click 'Order' on a result
    5 - Internal server error
    6 - Apply patch
    7 - Repeat 1-4, you get 'Vendor not found' or 'Basket not found'
    
    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>

commit b9ab00515902e05a1598597d2e3a334c357c5a13
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Aug 9 11:43:42 2019 +0000

    Bug 23441: Export should not include the 'actions' column in Z3950 results.
    
    This patch adds the "noExport" class to the table header for the Z39.50
    search results "Actions" column. This class prevents the column from
    being included in DataTables export operations.
    
    To test, apply the patch and perform a Z39.50 search from Cataloging. On
    the search results page, click the "Export or print" button. Choose one
    of the export options and verify that in the resulting data there is no
    "Actions" column.
    
    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>

commit a8ddf55667f60a3cdc23ef0b6272921bc975bc73
Author: Alex Arnaud <alex.arnaud at biblibre.com>
Date:   Wed Aug 7 10:57:01 2019 +0200

    Bug 23436: add a label for duplicate backend
    
    Reproduce issue:
     - Enable "EnableAdvancedCatalogingEditor" preference
     - Go to cataloguing and click on advanced editor
     - Click on the down arrow in "Save to catalog" menu
     - You should see an undefined named save backend
    
    Test patch:
     - Enable "EnableAdvancedCatalogingEditor" preference
     - Go to cataloguing and click on advanced editor to save preference to
       the cookie
     - Click on the down arrow in "Save to catalog" menu
     - You should see a "Duplicate" named backend
    
    Test Bug 16232 for no regression:
     - Search for a biblio in catalog
     - Click in "Edit record"
     - Advanced editor should appear.
       SUCCESS => browser url ends with #duplicate/{original biblionumber}
               => Title above toolbar is "Editing duplicate record of
                  #{original biblionumber}"
     - Save
       SUCCESS => browser url ends with #catalog/{new biblionumber}
               => Title above toolbar is "Editing catalog record #{new
    biblionumber}"
    
    More test:
     - Search for a biblio in catalog
     - Click on "Edit record"
     - Advanced editor should appear
     - Click on the down arrow in "Save to catalog" menu and click on
       Duplicate,
     - Record should be saved as a new one (same behavior)
    
    Signed-off-by: cori <corilynn.arnold 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 cec6f46b47ae9625222f35014f6693ba7bb365e8
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Aug 5 10:54:57 2019 -0500

    Bug 22142: Do not revert data if 'unchanged' was set
    
    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>

commit 52885ff55b1cac4b09129cc504bb23d169b22c13
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Thu Jun 13 14:20:25 2019 +0000

    Bug 22142: Highlight the issue
    
    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>

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

Summary of changes:
 C4/CourseReserves.pm                               |    1 +
 Koha/Item.pm                                       |   17 +++++
 acqui/neworderbiblio.pl                            |    2 +
 acqui/neworderempty.pl                             |    3 +
 .../prog/en/includes/blocking_errors.inc           |    2 +
 .../prog/en/includes/cateditor-ui.inc              |    1 +
 .../prog/en/includes/relatives-issues-table.inc    |   25 +++++++
 .../prog/en/modules/acqui/neworderbiblio.tt        |    2 +
 .../prog/en/modules/acqui/neworderempty.tt         |    2 +
 .../prog/en/modules/cataloguing/z3950_search.tt    |    2 +-
 .../prog/en/modules/circ/circulation.tt            |   24 +------
 .../prog/en/modules/members/moremember.tt          |   23 +------
 t/db_dependent/CourseReserves/CourseItems.t        |   71 +++++++++++++++++++-
 t/db_dependent/Koha/Items.t                        |   21 +++++-
 14 files changed, 148 insertions(+), 48 deletions(-)
 create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/relatives-issues-table.inc


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list