[koha-commits] main Koha release repository branch master updated. v3.18.00-110-g4958a8a

Git repo owner gitmaster at git.koha-community.org
Thu Jan 8 00:37:41 CET 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  4958a8a0f67d04c41eb300d9247c915f2346acf0 (commit)
       via  7379f6ee72cb2d22be624c72271ecbb0f3a80d05 (commit)
       via  53923cbd025c163e45680c6fc985f2981e438dae (commit)
       via  e91c39d448668a1771c788966784f6bbbb87737d (commit)
       via  779ef7431a3736c7cc70c78cd2673484ff2afd3e (commit)
       via  2d413ffab1d074ca52bf9afa826e6006ebb7e664 (commit)
       via  ad0711ba32c7ad90ad18607e5a27ece97b8ef7cd (commit)
       via  225432a1f039a9c625e24e3c59643db331fe17b2 (commit)
      from  b4e843615a76d3a9a8516f82a2ebad96aa9c4d1a (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 4958a8a0f67d04c41eb300d9247c915f2346acf0
Author: Chris Nighswonger <chris.nighswonger at gmail.com>
Date:   Fri Dec 19 07:47:40 2014 -0500

    Bug 13407: Bumping required version of PDF::Reuse
    
    Signed-off-by: Chris <chris at bigballofwax.co.nz>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 7379f6ee72cb2d22be624c72271ecbb0f3a80d05
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Dec 2 12:08:04 2014 -0500

    Bug 13407: Removing depricated code included in PDF::Reuse
    
    1. Upgrade PDF::Reuse to 0.35_04. [1]
    2. Run Koha's non-DB dependent test suite. You should notice some non-fatal warnings about
       the redefinition of one or two subs in PDF::Reuse. This should not affect the
       functionality of the tools for the end user.
    3. Verify the functionality of the related tools.
    4. Apply the attached patch.
    5. Re-run Koha's non-DB dependent test suite. You should note no warnings related to PDF::Reuse.
    6. Re-verify the functionality of the related tools.
    
    [1] http://search.cpan.org/CPAN/authors/id/C/CN/CNIGHS/PDF-Reuse-0.35_04.tar.gz
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Chris <chris at bigballofwax.co.nz>
    
    http://bugs.koha-community.org/show_bug.cgi?id=13407
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Nice one! I only corrected the bug number in the subject.

commit 53923cbd025c163e45680c6fc985f2981e438dae
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Jul 29 12:39:15 2014 -0400

    Bug 11872 - Lost overdue items should not generate fines
    
    An item can be marked as lost by longoverdue.pl, but left checked out to
    the patron. In this case, the item will continue to accrue fines.
    
    Test Plan:
    1) Check out an item and back date it so it is overdue and should
       generate fines.
    2) Mark the item as lost by either using longoverdue.pl, or just
       by setting itemlost to 1 by directly accessing the database
    3) Run fines.pl
    4) Note the overdue generated a fine
    5) Repeat steps 1-2
    6) Apply this patch
    7) Run fines.pl
    8) Note a fine was not generated
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit e91c39d448668a1771c788966784f6bbbb87737d
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Dec 22 10:52:02 2014 +0100

    Bug 13487: Fix pagination for the item search
    
    Test plan:
    Go on the catalogue/itemsearch.pl page and verify that the
    pagination button (First, Prev, PAGES, Next, Last) is now correctly styled.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 779ef7431a3736c7cc70c78cd2673484ff2afd3e
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Dec 22 10:51:50 2014 +0100

    Bug 13487: Fix pagination for basketgroup
    
    Test plan:
    Go on the acqui/basketgroup.pl page and verify that the pagination
    button (First, Prev, Next, Last) is now correctly styled.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 2d413ffab1d074ca52bf9afa826e6006ebb7e664
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Dec 22 10:44:26 2014 +0100

    Bug 13487: DT pagination contains '...' for the full_numbers form
    
    Since the DT upgrade (bug 12986), the full_numbers pagination adds a
    span (containing '...'). It is not managed by the css file and is put at
    the end of the page numbers ( "1 2 3 4 5 20 NEXT LAST ...", we expect "1
    2 3 4 5 ... 20 NEXT LAST").
    
    Test plan:
    1/ Go on the member search and launch a search which will return more than
    7 pages
    2/ Without this patch, the '...' span is put at the end of the
    pagination bar.
    3/ With the patch it should be better placed.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ad0711ba32c7ad90ad18607e5a27ece97b8ef7cd
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sat Dec 27 21:13:58 2014 +0100

    Bug 13459: Fix datatables paging for patron lists
    
    The display of the datatables paging options for the
    patron list feature is broken.
    
    To test:
    - Go to tools > patron lists
    - The paging for the 'list of lists' is broken
    - Select a patron list 'Add more patrons'
    - Notice the paging on this page is also broken
    - Apply patch
    - Verify both pages now display the paging correctly
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 225432a1f039a9c625e24e3c59643db331fe17b2
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sat Dec 27 12:58:52 2014 +0100

    Bug 13459: Fix datatables paging for admin > itemtypes
    
    To test:
    - Go to administration > itemtypes
    - Verify the display of the paging options is broken
    - Apply patch
    - Verify the display is now correct and works nicely
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Creators/PDF.pm                                 |   92 +-------------------
 C4/Installer/PerlDependencies.pm                   |    2 +-
 C4/Overdues.pm                                     |    4 +-
 koha-tmpl/intranet-tmpl/prog/en/css/datatables.css |   10 ++-
 .../prog/en/modules/acqui/basketgroup.tt           |    3 +-
 .../prog/en/modules/admin/itemtypes.tt             |    3 +-
 .../prog/en/modules/catalogue/itemsearch.tt        |    3 +-
 .../prog/en/modules/patron_lists/list.tt           |    3 +-
 .../prog/en/modules/patron_lists/lists.tt          |    3 +-
 misc/cronjobs/fines.pl                             |    2 +
 misc/cronjobs/staticfines.pl                       |    1 +
 11 files changed, 24 insertions(+), 102 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list