[koha-commits] main Koha release repository branch master updated. v3.22.00-783-g77e1e7c

Git repo owner gitmaster at git.koha-community.org
Thu Mar 3 22:40:39 CET 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  77e1e7c4ef9ae5b811cd9692a4e751bf0c649626 (commit)
       via  ed882397da52b09be56e61567ed1c59fc8b12552 (commit)
       via  3691bd8419ee9a481b95af525bc7e0c08f4c4640 (commit)
      from  d53daa339212c025be637adf37df732e1ba08e5b (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 77e1e7c4ef9ae5b811cd9692a4e751bf0c649626
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Sun Feb 14 12:55:08 2016 +0000

    Bug 15548 [QA Followup] - More new uses of Koha::Borrower
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jesse Weaver <jweaver at bywatersolutions.com>

commit ed882397da52b09be56e61567ed1c59fc8b12552
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Jan 15 18:38:03 2016 +0000

    Bug 15548 [QA Followup] - Catch a couple new Koha::Borrower uses
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jesse Weaver <jweaver at bywatersolutions.com>

commit 3691bd8419ee9a481b95af525bc7e0c08f4c4640
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Jan 11 15:57:59 2016 +0000

    Bug 15548: Move new patron related code to Patron*
    
    The 'borrower' should not be used anymore, especially for new code.
    This patch move files and rename variables newly pushed (i.e. in the Koha
    namespace).
    
    Test plan:
    1/
      git grep Koha::Borrower
    should not return code in use.
    
    2/
    Prove the different modified test files
    
    3/ Do some clicks in the member^Wpatron module to be sure there is not
    an obvious error.
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    Works as described. Tested with Circulation, Members/Patrons, Discharge,
    Restrictions modules and the must common functionalities
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jesse Weaver <jweaver at bywatersolutions.com>

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

Summary of changes:
 C4/Circulation.pm                                  |   12 +-
 C4/Members.pm                                      |    4 +-
 C4/Passwordrecovery.pm                             |    2 +-
 Koha/Hold.pm                                       |    6 +-
 Koha/Item.pm                                       |    6 +-
 Koha/Misc/Files.pm                                 |    2 +-
 Koha/{Borrower.pm => Patron.pm}                    |    8 +-
 Koha/{Borrower => Patron}/Debarments.pm            |    8 +-
 Koha/{Borrower => Patron}/Discharge.pm             |    6 +-
 Koha/{Borrower => Patron}/Files.pm                 |   12 +-
 Koha/{Borrower => Patron}/Modifications.pm         |   30 +-
 Koha/{Borrowers.pm => Patrons.pm}                  |    8 +-
 Koha/REST/V1.pm                                    |    4 +-
 Koha/REST/V1/Patrons.pm                            |    6 +-
 Koha/SMS/Provider.pm                               |    4 +-
 Koha/Template/Plugin/Borrowers.pm                  |    4 +-
 Koha/Virtualshelf.pm                               |    4 +-
 about.pl                                           |    6 +-
 admin/branches.pl                                  |    4 +-
 admin/categories.pl                                |    4 +-
 circ/circulation.pl                                |    2 +-
 circ/ysearch.pl                                    |    4 +-
 mainpage.pl                                        |    8 +-
 members/discharge.pl                               |   12 +-
 members/discharges.pl                              |    6 +-
 members/files.pl                                   |    6 +-
 members/memberentry.pl                             |    2 +-
 members/members-home.pl                            |    4 +-
 members/members-update-do.pl                       |    6 +-
 members/members-update.pl                          |    4 +-
 members/mod_debarment.pl                           |    2 +-
 members/moremember.pl                              |    3 +-
 misc/cronjobs/cleanup_database.pl                  |    4 +-
 misc/cronjobs/longoverdue.pl                       |    4 +-
 misc/cronjobs/overdue_notices.pl                   |    2 +-
 opac/opac-discharge.pl                             |   12 +-
 opac/opac-memberentry.pl                           |   11 +-
 opac/opac-password-recovery.pl                     |    6 +-
 opac/opac-privacy.pl                               |    4 +-
 opac/opac-registration-verify.pl                   |    8 +-
 opac/opac-reserve.pl                               |    2 +-
 opac/opac-user.pl                                  |    2 +-
 reserve/request.pl                                 |    2 +-
 t/Borrower.t                                       |  343 --------------------
 t/Patron.t                                         |  343 ++++++++++++++++++++
 t/db_dependent/Accounts.t                          |    6 +-
 t/db_dependent/BiblioObject.t                      |    4 +-
 t/db_dependent/Circulation/AnonymiseIssueHistory.t |    4 +-
 .../Circulation/IssuingRules/maxsuspensiondays.t   |    2 +-
 t/db_dependent/Creators/Lib.t                      |    2 +-
 t/db_dependent/Hold.t                              |    4 +-
 t/db_dependent/Koha_borrower_modifications.t       |   40 +--
 t/db_dependent/Passwordrecovery.t                  |    4 +-
 t/db_dependent/{Borrower.t => Patron.t}            |   12 +-
 t/db_dependent/{ => Patron}/Borrower_Debarments.t  |    8 +-
 t/db_dependent/{ => Patron}/Borrower_Discharge.t   |   60 ++--
 t/db_dependent/{ => Patron}/Borrower_Files.t       |    4 +-
 t/db_dependent/{Borrowers.t => Patrons.t}          |   42 +--
 t/db_dependent/Review.t                            |    8 +-
 t/db_dependent/api/v1/patrons.t                    |    2 +-
 tools/import_borrowers.pl                          |    2 +-
 61 files changed, 573 insertions(+), 573 deletions(-)
 rename Koha/{Borrower.pm => Patron.pm} (85%)
 rename Koha/{Borrower => Patron}/Debarments.pm (97%)
 rename Koha/{Borrower => Patron}/Discharge.pm (96%)
 rename Koha/{Borrower => Patron}/Files.pm (88%)
 rename Koha/{Borrower => Patron}/Modifications.pm (88%)
 rename Koha/{Borrowers.pm => Patrons.pm} (89%)
 delete mode 100755 t/Borrower.t
 create mode 100755 t/Patron.t
 rename t/db_dependent/{Borrower.t => Patron.t} (85%)
 rename t/db_dependent/{ => Patron}/Borrower_Debarments.t (94%)
 rename t/db_dependent/{ => Patron}/Borrower_Discharge.t (50%)
 rename t/db_dependent/{ => Patron}/Borrower_Files.t (98%)
 rename t/db_dependent/{Borrowers.t => Patrons.t} (65%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list