[koha-commits] main Koha release repository branch master updated. v3.20.00-beta-42-g159cb0e

Git repo owner gitmaster at git.koha-community.org
Fri May 15 21:01:48 CEST 2015


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  159cb0ed05c631c9082cb2a8e905611c2d829886 (commit)
       via  9495ecaab6777bdd0e92aa0239b9c9cb5759e3e9 (commit)
       via  df8b81678bd26a9b506aef789aa44d4ce8a412ff (commit)
       via  49c384b242016d1a3f7ee13ac4d60a9ad9845900 (commit)
       via  aefcd68ff7105cb72d1aa99e8c31070f84f9e7d5 (commit)
       via  19e0fb460811b739c1ac216e8362ceeb6b508b59 (commit)
       via  47764967d9461624781b7e0cc08d01d6ccd9ac3b (commit)
      from  77930a5945c915e88b25fbac9d1432522b61b3cd (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 159cb0ed05c631c9082cb2a8e905611c2d829886
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Apr 21 14:44:57 2015 -0400

    Bug 13986: Implement fix for OPAC
    
    Tested wit OPAC, full list is printed.
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9495ecaab6777bdd0e92aa0239b9c9cb5759e3e9
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Apr 13 11:23:20 2015 -0400

    Bug 13986: Printing a list only prints the results of the page you are viewing
    
    The print list button only prints the page you are viewing, and not the
    entire list.
    
    Test Plan:
    1) Apply this patch
    2) Create a list with enough items that it will paginate
    3) Browse to that list, click the 'print list' button
    4) Note the entire list prints, not just the visible items
    
    Tested in staff client, works as expected.
    It would be great to have the same for OPAC as well (OPAC still prints first page only).
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit df8b81678bd26a9b506aef789aa44d4ce8a412ff
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri May 15 15:56:55 2015 -0300

    Bug 13673: (QA followup) Add license
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 49c384b242016d1a3f7ee13ac4d60a9ad9845900
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri May 8 17:16:53 2015 -0400

    Bug 13673: Silence noisy warnings in t/db_dependent/Barcodes.t
    
    This last patch catches all the warning messages in tests.
    
    TEST PLAN
    ---------
    1) Apply first two patches
    2) $ prove t/db_dependent/Barcodes.t
       -- still noisy warnings.
    3) apply last patch
    4) $ prove t/db_dependent/Barcodes.t
       -- All noisy warnings are caught.
    5) koha qa test tools.
    
    Signed-off-by: Indranil Das Gupta <indradg at gmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit aefcd68ff7105cb72d1aa99e8c31070f84f9e7d5
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri May 8 16:42:55 2015 -0400

    Bug 13673: Remove diags
    
    TEST PLAN
    ---------
    1) Apply first two patches
    2) $ prove t/db_dependent/Barcodes.t
       -- Diags have been removed, just noisy warnings left.
    3) $ git diff -w origin/master
       -- only excess print's and diag's removed.
    4) koha qa test tools
    
    Signed-off-by: Indranil Das Gupta <indradg at gmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 19e0fb460811b739c1ac216e8362ceeb6b508b59
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri May 8 16:25:32 2015 -0400

    Bug 13673: Fix whitespace issues
    
    Indentation was horrible. Fixed to meet 4 space standard.
    
    TEST PLAN
    ---------
    1) Notice tabs in t/db_dependent/Barcodes.t
    2) $ prove t/db_dependent/Barcodes.t
    3) apply patch
    4) $ prove t/db_dependent/Barcodes.t
       -- same output as before.
    5) $ git diff -w origin/master
       -- code is identical except for indentations.
    6) koha qa test tools
    
    Signed-off-by: Indranil Das Gupta <indradg at gmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 47764967d9461624781b7e0cc08d01d6ccd9ac3b
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Apr 22 11:46:29 2015 +0200

    Bug 10913: The delete basket confirmation page is never displayed
    
    This condition is never reached, the confirmation to delete a basket is
    done with a popup in the template.
    
    Test plan:
    Confirm you don't find any regression when creation/editing and deleting
    a basket.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    NOTE: I didn't create or edit. However, the only perl script that uses
          the template is acqui/basket.pl and the only place delete_confirm
          is set in acqui/basket.pl is in that code which is only called if
          del_basket actually existed anywhere else, which it doesn't.
          I did have two baskets, one with two transfers from the first, so
          I transferred one back, and then proceeded to test the two delete
          buttons in the modal. No issues. Cancel (to close the modal) works
          too.
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/VirtualShelves/Page.pm                          |   15 +-
 acqui/basket.pl                                    |   41 ------
 koha-tmpl/intranet-tmpl/prog/en/css/print.css      |    2 +-
 .../prog/en/includes/virtualshelves-toolbar.inc    |    6 +-
 .../intranet-tmpl/prog/en/modules/acqui/basket.tt  |   23 +--
 .../prog/en/modules/virtualshelves/shelves.tt      |   14 +-
 .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt |   13 +-
 opac/opac-shelves.pl                               |    6 +-
 t/db_dependent/Barcodes.t                          |  146 +++++++++++++-------
 virtualshelves/shelves.pl                          |    1 +
 10 files changed, 139 insertions(+), 128 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list