[koha-commits] main Koha release repository branch master updated. v3.22.00-1438-g64e3914

Git repo owner gitmaster at git.koha-community.org
Fri Apr 29 16:21:54 CEST 2016


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  64e391491edca79a7e3e7f749792b3d07812185d (commit)
       via  e73aab40dea379f5948326931038d32e51172624 (commit)
       via  ba49225e25b28a7da1d8afaf7bdca51a2efc600a (commit)
       via  1c9b9e3e0e1eb3235b20d95afbe5d26b8279a2c2 (commit)
       via  27770b7c8f9a0d75f7dc17c6b1face67c71533a3 (commit)
      from  0b6bc2b5983f0e66c13902e74352cdcd68971a7f (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 64e391491edca79a7e3e7f749792b3d07812185d
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Apr 22 09:01:26 2016 -0400

    Bug 16238 [Follow-up] Upgrade jQuery in staff client: use .prop() instead of .attr()
    
    This patch corrects some tabs which should have been replaced with
    spaces.
    
    To test, diff against the previous commit with the '-w' flag. There
    should be no visible changes.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Space changes, no errors.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit e73aab40dea379f5948326931038d32e51172624
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Wed Apr 13 20:51:06 2016 +0200

    Bug 16238: Use .prop() instead of .attr() for 'readonly'
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit ba49225e25b28a7da1d8afaf7bdca51a2efc600a
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Wed Apr 13 20:27:49 2016 +0200

    Bug 16238: Use .prop() instead of .attr() for 'disabled'
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 1c9b9e3e0e1eb3235b20d95afbe5d26b8279a2c2
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Wed Apr 13 10:31:05 2016 +0200

    Bug 16238: QA fix: remove tab characters
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 27770b7c8f9a0d75f7dc17c6b1face67c71533a3
Author: Julian Maurice <julian.maurice at biblibre.com>
Date:   Sat Apr 9 07:58:42 2016 +0200

    Bug 16238: Use .prop() instead of .attr() for 'checked'
    
    According to https://jquery.com/upgrade-guide/1.9/#attr-versus-prop-
    .attr() is no longer correct to access the checked state of a checkbox.
    
    This patch do the following replacements:
      .attr('checked')               =>  .prop('checked')
      .attr('checked, '')            =>  .prop('checked', false)
      .attr('checked, 'checked')     =>  .prop('checked', true)
      .attr('checked', boolValue)    =>  .prop('checked', boolValue)
      .removeAttr('checked')         =>  .prop('checked', false)
      .attr('checked') == 'checked'  =>  .is(':checked')
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

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

Summary of changes:
 .../prog/en/includes/messaging-preference-form.inc |   46 ++++++++++----------
 koha-tmpl/intranet-tmpl/prog/en/js/acq.js          |    8 ++--
 koha-tmpl/intranet-tmpl/prog/en/js/ajax.js         |    4 +-
 koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js    |   14 +++---
 .../prog/en/js/marc_subfields_structure.js         |   16 +++----
 koha-tmpl/intranet-tmpl/prog/en/js/merge-record.js |   12 ++---
 .../intranet-tmpl/prog/en/js/pages/batchMod.js     |   16 +++----
 .../intranet-tmpl/prog/en/js/pages/circulation.js  |   10 ++---
 .../intranet-tmpl/prog/en/js/pages/preferences.js  |    4 +-
 .../prog/en/modules/acqui/addorderiso2709.tt       |    6 +--
 .../intranet-tmpl/prog/en/modules/acqui/basket.tt  |    2 +-
 .../intranet-tmpl/prog/en/modules/acqui/invoice.tt |    2 +-
 .../prog/en/modules/acqui/invoices.tt              |    4 +-
 .../prog/en/modules/acqui/lateorders.tt            |    4 +-
 .../prog/en/modules/acqui/newordersubscription.tt  |    2 +-
 .../prog/en/modules/acqui/orderreceive.tt          |    4 +-
 .../prog/en/modules/acqui/supplier.tt              |   14 +++---
 .../intranet-tmpl/prog/en/modules/admin/aqplan.tt  |    2 +-
 .../prog/en/modules/admin/currency.tt              |    6 +--
 .../prog/en/modules/admin/smart-rules.tt           |   12 ++---
 .../prog/en/modules/admin/transport-cost-matrix.tt |    6 +--
 .../prog/en/modules/catalogue/detail.tt            |    4 +-
 .../prog/en/modules/catalogue/itemsearch.tt        |    6 +--
 .../prog/en/modules/catalogue/results.tt           |    4 +-
 .../prog/en/modules/cataloguing/additem.tt         |    2 +-
 .../prog/en/modules/cataloguing/merge.tt           |    4 +-
 .../prog/en/modules/circ/circulation.tt            |    4 +-
 .../intranet-tmpl/prog/en/modules/circ/returns.tt  |    6 +--
 .../prog/en/modules/members/member-flags.tt        |   10 ++---
 .../prog/en/modules/members/member.tt              |   10 ++---
 .../prog/en/modules/members/memberentrygen.tt      |    8 ++--
 .../prog/en/modules/patroncards/edit-layout.tt     |   12 ++---
 .../prog/en/modules/reports/catalogue_stats.tt     |   12 ++---
 .../en/modules/reports/guided_reports_start.tt     |   36 +++++++--------
 .../prog/en/modules/reserve/request.tt             |   42 +++++++++---------
 .../prog/en/modules/serials/claims.tt              |    2 +-
 .../en/modules/serials/showpredictionpattern.tt    |    6 +--
 .../prog/en/modules/serials/subscription-add.tt    |   20 ++++-----
 .../intranet-tmpl/prog/en/modules/tags/review.tt   |   12 ++---
 .../prog/en/modules/tools/batchMod-edit.tt         |    4 +-
 .../prog/en/modules/tools/batch_delete_records.tt  |    4 +-
 .../prog/en/modules/tools/modborrowers.tt          |    4 +-
 42 files changed, 203 insertions(+), 203 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list