[koha-commits] main Koha release repository branch 3.10.x updated. v3.10.01-18-ge6356e0

Git repo owner gitmaster at git.koha-community.org
Tue Jan 1 20:09:29 CET 2013


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, 3.10.x has been updated
       via  e6356e0dd051d539e183c8748923c2fd1d0b32c2 (commit)
       via  43f7db894b354f2c85d9f19a91a57f83cd88aa4a (commit)
       via  05ff289a3de9426569a12c330d66e91816d1f537 (commit)
       via  c88cbf7695ea52e7216bdafb78082b5dcbdcab16 (commit)
       via  aabc512372322b13ffd57f93f06d4dfba24ac015 (commit)
       via  19e18105f39512bd01c9bb222cccdfd1ed3db0b4 (commit)
      from  0f130725333f707e850ad95bb0670249361b7e8d (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 e6356e0dd051d539e183c8748923c2fd1d0b32c2
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Thu Dec 27 20:14:57 2012 -0500

    Bug 9209: Skip tests for older DBD::Mock
    
    Because the calendar tests require a more recent version of DBD::Mock
    than has been packaged by Debian, it makes sense to skip all the tests
    requiring the database when only an older version is present.
    
    Signed-off-by: Liz Rea <liz at catalyst.net.nz>
    Works as advertised
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 43f7db894b354f2c85d9f19a91a57f83cd88aa4a
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Dec 4 15:14:59 2012 -0300

    Bug 9209 - Mocked Koha::Calendar tests
    
    Using specific method for populating the internal data structures from Koha::Calendar
    has yielded to the non-detection of several bugs. There are also several tests that where
    db_dependent which is not always desirable.
    
    I propose the use of DBD::Mock (::Session) for using the actual code used by Koha in production
    for testing, mocking the DB queries itselves.
    
    I also took the time to repeat several tests in different syspref configurations (they applied
    only to daysMode=Calendar, and now cover all confs).
    
    Notes:
    - I used DBD:Mock 1.45 as previous version (1.43, from 12.04) was broken
    - Some tests revealed a bug on days_between as I see it... reporting as Bug #9211
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Elliott Davis <elliott at bywatersolutions.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 05ff289a3de9426569a12c330d66e91816d1f537
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Dec 13 15:56:21 2012 -0500

    Bug 9284 - JavaScript should follow rules recommended by JSHint
    
    Coding style corrections to members.js:
    
    - Mixed tab/space indentation converted to spaces.
    - Converted "!=" and "==" to "!==" and "===" for comparisons with ''.
    - Adding missing semicolons.
    
    To test, create or edit a patron and confirm that validation hasn't been
    broken by the changes to members.js: Invalid date, empty required
    fields, guarantor popup, restricted-until field display, etc.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit c88cbf7695ea52e7216bdafb78082b5dcbdcab16
Author: Mason James <mtj at kohaaloha.com>
Date:   Wed Dec 12 02:43:29 2012 +1300

    Bug 8299 - overdue_notice.pl shows error messages
    
    fixes 2 warnings...
    
     Use of uninitialized value in pattern match (m//) at /usr/share/koha/bin/cronjobs/overdue_notices.pl line 659.
     Use of uninitialized value in pattern match (m//) at /usr/share/koha/bin/cronjobs/overdue_notices.pl line 670.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit aabc512372322b13ffd57f93f06d4dfba24ac015
Author: Srikanth Dhondi <srikanth at catalyst.net.nz>
Date:   Wed Oct 17 12:10:05 2012 +1300

    Bug 8712 - We should use WAI-ARIA guidelines to help with accessibility
    
    Added title to the search box
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 19e18105f39512bd01c9bb222cccdfd1ed3db0b4
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Dec 14 12:45:04 2012 -0500

    Bug 9289 - Adjacent checkbox behavior broken on circulation.pl
    
    This patch fixes the behavior of adjacent checkboxes in the list of
    checkouts on circulation.pl. Checkboxes in both the "renew" and "check
    in" columns should not be able to be checked at the same time.
    
    A line was commented out (by me) which was necessary to this working
    correctly. I'm guessing it was done in debugging and left by mistake.
    
    To test, load a patron for checkout who has items checked out. You
    should not be able to check boxes in both the "renew" and "check in"
    columns in the same row, whether you click the checkbox itself or the
    containing table cell.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

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

Summary of changes:
 Koha/Calendar.pm                                   |   30 +-
 koha-tmpl/intranet-tmpl/prog/en/js/members.js      |  216 ++++++------
 .../prog/en/modules/circ/circulation.tt            |    2 +-
 koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc  |    4 +-
 misc/cronjobs/overdue_notices.pl                   |    6 +-
 t/Calendar.t                                       |  357 ++++++++++++++------
 6 files changed, 385 insertions(+), 230 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list