[koha-commits] main Koha release repository branch master updated. v3.20.00-858-g5153d04

Git repo owner gitmaster at git.koha-community.org
Fri Oct 23 14:55:05 CEST 2015


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  5153d04e41f2502160d18ae6340c82d5b15e261e (commit)
       via  4ea8280d294dc5fd0953cd8a8148e1e7356595da (commit)
       via  48f869825f715124e02345e2e3bf7d3f6ac5c028 (commit)
       via  57f5332b63f2bc6b7728a4429d37f3de6d46d6ae (commit)
       via  f173c896f2283ee338585e332130af7b1428bf98 (commit)
       via  eb96cc95a6f1b59b6db7e172f3eb87b05fbc7933 (commit)
       via  b0310ac0f6a2dce6c4139944553f547daff1562d (commit)
       via  e9a2c101090d1adbc7a09ae38c438bca64ac2955 (commit)
       via  f86816220edb6c28b58772a551b0533c01ecbcad (commit)
      from  17b3e3c9ebb4ce437a56cee817ee1781ebfce697 (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 5153d04e41f2502160d18ae6340c82d5b15e261e
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Oct 23 09:53:20 2015 -0300

     Bug 12194: (QA followup) remove useless diags
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 4ea8280d294dc5fd0953cd8a8148e1e7356595da
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Thu Oct 22 15:28:50 2015 -0300

    Bug 12194: followup to fix test
    
    This patch adds new column 'oblique_title' to tested
    data structure, and update number of tests
    
    To test:
    1) Run prove t/db_dependent/Labels/*, or specifically
    prove t/db_dependent/Labels/t_Layout.t
    
    It fails
    
    2) apply the patch
    3) Run test again, this time must pass
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 48f869825f715124e02345e2e3bf7d3f6ac5c028
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Oct 23 09:44:21 2015 -0300

    Bug 5685: (RM followup) opac.less and opac.css out of sync
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 57f5332b63f2bc6b7728a4429d37f3de6d46d6ae
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Oct 23 09:32:18 2015 +0100

    Bug 15052: Add diagnostic for the TestBuilder tests
    
    Sometimes t/db_dependent/TestBuilder.t fails with 'TestBuilder can
    create a entry for every sources' but we don't know which ones have
    failed.
    
    Test plan:
    Create the following file: Koha/Schema/Result/Test.pm
     package Koha::Schema::Result::Test;
     use base 'DBIx::Class::Core';
     __PACKAGE__->table("test");
     1;
    
    If you don't have a table named 'test' in your DB,
      prove t/db_dependent/TestBuilder.t
    should return a failure, but without any explanation.
    With this patch you should get a diag and know what's wrong.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit f173c896f2283ee338585e332130af7b1428bf98
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Oct 23 09:34:47 2015 -0300

    Bug 13590: (QA followup) wording change
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit eb96cc95a6f1b59b6db7e172f3eb87b05fbc7933
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Oct 22 14:51:11 2015 -0300

    Bug 13590: (RM followup) DBIx update
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit b0310ac0f6a2dce6c4139944553f547daff1562d
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Oct 22 14:22:43 2015 -0300

    Bug 13590: DBRev 3.21.00.041
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit e9a2c101090d1adbc7a09ae38c438bca64ac2955
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Oct 15 11:33:35 2015 +0100

    Bug 13590: Add missing th in tfoot
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit f86816220edb6c28b58772a551b0533c01ecbcad
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Jan 16 09:07:48 2015 -0500

    Bug 13590: Add ability to charge fines at start of charge period
    
    Right now, Koha only charges fines at the end of a given charge period.
    For example, let us assume a circulation rule has a charge period of one
    week ( 7 days ) and a fine of $5. This means that an item can be overdue
    for 6 days without accruing a fine. Koha should allow circulation rules
    to be configured to place the charge at the start of the end of the
    charge period so the library can decide when the fine should accrue.
    
    Test Plan:
    1) Apply this patch
    2) Run updatedatabase.pl
    3) prove t/db_dependent/Circulation_Issuingrule.t
    4) prove t/db_dependent/Circulation.t
    5) prove t/db_dependent/Fines.t
    6) Ensure you can still create/edit circulation rules
    
    Edit: I removed the DBIx changes after a couple minutes fighting with them.
    Will regenerate as usual in a RM followup / Tomas
    
    Signed-off-by: Daniel Grobani <dgrobani at samuelmerritt.edu>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

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

Summary of changes:
 C4/Overdues.pm                                     |   97 ++++++++++----------
 Koha.pm                                            |    2 +-
 Koha/Schema/Result/Issuingrule.pm                  |   12 ++-
 admin/smart-rules.pl                               |   48 +++++-----
 installer/data/mysql/kohastructure.sql             |    1 +
 installer/data/mysql/updatedatabase.pl             |   10 ++
 .../prog/en/modules/admin/smart-rules.tt           |    9 ++
 koha-tmpl/opac-tmpl/bootstrap/css/opac.css         |    2 +-
 t/db_dependent/Circulation_Issuingrule.t           |   10 +-
 t/db_dependent/Fines.t                             |   56 +++++++++++
 t/db_dependent/Labels/t_Layout.t                   |   56 +++++------
 t/db_dependent/TestBuilder.t                       |    9 +-
 12 files changed, 208 insertions(+), 104 deletions(-)
 create mode 100644 t/db_dependent/Fines.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list