[koha-commits] main Koha release repository branch master updated. v16.05.00-283-g0527388

Git repo owner gitmaster at git.koha-community.org
Fri Jul 8 15:49:02 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  0527388924b20bb63f38a2a4eccf9cf794faaac7 (commit)
       via  32b1d0386acac268fb65d81a66ffe1561f830c2d (commit)
       via  e82e4bfc073be6c419fe79f3653bb01c72bd2135 (commit)
       via  fd622dc73d5b0d37aa588fbcaa0e5ed6e84610f0 (commit)
       via  7276a38c2b67b7ef48b85f544527648b358efa6d (commit)
      from  9e1542eb84a0c8b02eae6ca3ff3616d0a5d412da (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 0527388924b20bb63f38a2a4eccf9cf794faaac7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jun 28 14:37:57 2016 +0100

    Bug 14757: Remove obsolete occurrence of is_tt
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 32b1d0386acac268fb65d81a66ffe1561f830c2d
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Jun 27 13:43:59 2016 +0000

    Bug 14757 [QA Followup] - Don't overload new for Modifications
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit e82e4bfc073be6c419fe79f3653bb01c72bd2135
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Jun 24 15:28:43 2016 +0100

    Bug 14757: Add tests for new modules
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit fd622dc73d5b0d37aa588fbcaa0e5ed6e84610f0
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Jan 22 12:43:12 2016 +0000

    Bug 14757 [QA Followup] - Add Unit Tests
    
    Signed-off-by: Sean McGarvey <seanm at pascolibraries.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 7276a38c2b67b7ef48b85f544527648b358efa6d
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Dec 2 13:32:44 2015 +0000

    Bug 14757 - Allow the use of Template Toolkit syntax for slips and notices
    
    This bug is the beginning of a conversion from our current bespoke
    syntax for slips and notices to Template Toolkit syntax.
    
    This patch is the initial seed which will evolve over time.
    With this addition, we can take advantage of our Koha Objects
    to greatly simplify the processing of Slips and Notices over time.
    
    Test Plan:
    1) Apply this patch
    2) Ensure you have the default CHECKOUT notice
    3) Check out and return an item for a patron
    4) Note the text of the CHECKOUT notice
    5) Replace your CHECKOUT notice with the following:
    
    The following items have been checked out:
    ----
    [% biblio.title %]
    ----
    Thank you for visiting [% branch.branchname %].
    
    6) Repeat step 3
    7) Note the CHECKOUT notice text matches the previous CHECKOUT notice text
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    New notice syntax works, no koha-qa errors
    
    Signed-off-by: Sean McGarvey <seanm at pascolibraries.org>
    
    Bug 14757 [QA Followup] - Change method type() to _type() for Koha objects
    
    Signed-off-by: Sean McGarvey <seanm at pascolibraries.org>
    
    Bug 14757 [QA Followup] - Change all references to Koha::Borrower to Koha::Patron
    
    Signed-off-by: Sean McGarvey <seanm at pascolibraries.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:
 C4/Letters.pm                                    |  163 +++++++++++++-
 Koha/{Serial.pm => Checkout.pm}                  |    6 +-
 Koha/{Serials.pm => Checkouts.pm}                |   14 +-
 Koha/{Serials.pm => News.pm}                     |   14 +-
 Koha/{Subscription.pm => NewsItem.pm}            |    8 +-
 Koha/{Subscription.pm => Patron/Modification.pm} |    8 +-
 Koha/Patron/Modifications.pm                     |   18 +-
 Koha/{Serial.pm => Suggestion.pm}                |    6 +-
 Koha/{Serials.pm => Suggestions.pm}              |   14 +-
 t/db_dependent/Koha/Checkouts.t                  |   63 ++++++
 t/db_dependent/Koha/News.t                       |   56 +++++
 t/db_dependent/Koha/Suggestions.t                |   60 ++++++
 t/db_dependent/Letters/TemplateToolkit.t         |  249 ++++++++++++++++++++++
 13 files changed, 641 insertions(+), 38 deletions(-)
 copy Koha/{Serial.pm => Checkout.pm} (91%)
 copy Koha/{Serials.pm => Checkouts.pm} (85%)
 copy Koha/{Serials.pm => News.pm} (86%)
 copy Koha/{Subscription.pm => NewsItem.pm} (85%)
 copy Koha/{Subscription.pm => Patron/Modification.pm} (86%)
 copy Koha/{Serial.pm => Suggestion.pm} (90%)
 copy Koha/{Serials.pm => Suggestions.pm} (84%)
 create mode 100644 t/db_dependent/Koha/Checkouts.t
 create mode 100644 t/db_dependent/Koha/News.t
 create mode 100644 t/db_dependent/Koha/Suggestions.t
 create mode 100644 t/db_dependent/Letters/TemplateToolkit.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list