[koha-commits] main Koha release repository branch master updated. v3.22.00-271-gf0ac732

Git repo owner gitmaster at git.koha-community.org
Thu Jan 14 17:14:42 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  f0ac73292b85714937a8c2b66bee2c486573a5db (commit)
       via  61ba35c2b33c4f7aedaf1701814f3c783c54a19c (commit)
       via  5881da0bb4aa5683b8346bc2f1f7023cd267e693 (commit)
       via  141200794da9f27e0231e1c2dad4bcb994d650f3 (commit)
       via  5dfb4426f79984cf468f839ef293e8867ac1d374 (commit)
       via  9e4a46b4a4f8bdd9b54a29e2b4f4054d111e900d (commit)
       via  717d14c74e1f3abafacd9b38db61019cc6e164d3 (commit)
       via  3117f621f112bd68b766db3a23c4a6b9982d8fb7 (commit)
      from  5c110a394de7f2837d6ccc1beb2d82cef9e6f416 (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 f0ac73292b85714937a8c2b66bee2c486573a5db
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 15:02:35 2015 +0000

    Bug 15295! Koha::Libraries - Remove ModBranchCategoryInfo
    
    This has been replaced with Koha::Library->update_categories and
    Koha::Library->add_to_categories
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 61ba35c2b33c4f7aedaf1701814f3c783c54a19c
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:47:50 2015 +0000

    Bug 15295: Koha::Libraries - Remove GetBranchesCount
    
    This is replaced with Koha::Libraries->search->count.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 5881da0bb4aa5683b8346bc2f1f7023cd267e693
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:42:11 2015 +0000

    Bug 15295: Koha::Libraries - Remove GetCategoryTypes
    
    'searchdomain' and 'properties' were hardcoded in this subroutine.
    Now there are in the admin script. Not a big deal, we could improve that
    later if someone wants to add a third values.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 141200794da9f27e0231e1c2dad4bcb994d650f3
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:35:05 2015 +0000

    Bug 15295: Koha::Libraries - Remove GetBranchCategories
    
    Test plan
    1/ enable OpacAddMastheadLibraryPulldown
    2/ Defined a group of libraries as searchdomain
    and tick 'show in pull down'
    3/ At the OPAC, go on the advanced search form, limit by the group of
    libraries you have just created.
    4/ The group should be selected by default in the dropdown list
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 5dfb4426f79984cf468f839ef293e8867ac1d374
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:12:22 2015 +0000

    Bug 15295: Koha::Libraries - Remove GetBranchCategory
    
    This has been replaced with Koha::Libraries->find
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 9e4a46b4a4f8bdd9b54a29e2b4f4054d111e900d
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:09:36 2015 +0000

    Bug 15295: Koha::Libraries - Remove CheckBranchCategorycode
    
    This verification is now done in admin/branches.pl, no need for a
    special subroutine/method, it's 1 line only called once.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 717d14c74e1f3abafacd9b38db61019cc6e164d3
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:06:13 2015 +0000

    Bug 15295: Koha::Libraries - Remove CheckCategoryUnique
    
    This subroutine is not used anymore and was not really useful.
    The branchcategories table has a primary key defined on categorycode.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=15294
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 3117f621f112bd68b766db3a23c4a6b9982d8fb7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Dec 3 14:04:06 2015 +0000

    Bug 15295: Koha::Libraries - Remove DelBranch and DelBranchCategory
    
    These 2 subroutines are not used anymore, there were only used from the
    admin script rewrote on bug 15294.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

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

Summary of changes:
 C4/Auth.pm                                         |    5 +-
 C4/Branch.pm                                       |  198 +-------------------
 C4/Koha.pm                                         |    7 +-
 catalogue/search.pl                                |    3 +-
 .../opac-tmpl/bootstrap/en/includes/masthead.inc   |    2 +-
 opac/opac-search.pl                                |    7 +-
 t/db_dependent/Branch.t                            |  112 +++--------
 7 files changed, 42 insertions(+), 292 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list