[koha-commits] main Koha release repository branch master updated. v3.14.00-185-ge4f846a

Git repo owner gitmaster at git.koha-community.org
Mon Dec 23 17:22:02 CET 2013


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  e4f846a866d24779ff18634bd1da2e0c00086fe4 (commit)
       via  2d46dc95030dfe15c12f6f888938cea786c7e428 (commit)
       via  cada676ef3439d2567fa21da415d939f0fc22ee6 (commit)
       via  2249ee1216ed004e61a34bc821d216f3471ef87b (commit)
       via  e1fb1a658c89ef1356d3b42e264efed71cf81f9f (commit)
      from  be55359877a0e4d9e772670ce841316a82bef765 (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 e4f846a866d24779ff18634bd1da2e0c00086fe4
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Dec 23 16:39:58 2013 +0000

    Bug 6331: (follow-up) update DBIC schema classes
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 2d46dc95030dfe15c12f6f888938cea786c7e428
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Mon Dec 23 16:38:20 2013 +0000

    Bug 6331: DBRev 3.15.00.010
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit cada676ef3439d2567fa21da415d939f0fc22ee6
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Thu Dec 5 15:34:44 2013 +0100

    Bug 6331: (follow-up) update timestamp when deleting items
    
    When item is transfered from items table to deleted items, all fields
    must be copies but "timestamp".
    
    This value must be updated to know when the item was deleted.
    
    Test plan:
    - Look a an item timestamp :
    mysql> select timestamp from items where itemnumber = 2690;
    +---------------------+
    | timestamp           |
    +---------------------+
    | 2011-09-09 15:30:21 |
    +---------------------+
    1 row in set (0.00 sec)
    - Delete this item in cataloguing module
    - Check it is not in items table anymore :
    mysql> select timestamp from items where itemnumber = 2690;
    Empty set (0.00 sec)
    - Look in deleteditems table :
    mysql> select timestamp from deleteditems where itemnumber = 2690;
    +---------------------+
    | timestamp           |
    +---------------------+
    | 2013-12-05 15:33:20 |
    +---------------------+
    1 row in set (0.00 sec)
    => timestamp as been set to actual date/time
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Patch set passes koha-qa.pl, works as advertised!
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 2249ee1216ed004e61a34bc821d216f3471ef87b
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Tue Dec 3 11:39:43 2013 +0000

    Bug 6331: (follow-up) do not populate deleteditems.marc
    
    This is supplementary to the main patch for
    bug 6331. Having removed the attribute marc from
    items DelItem, we should not try to populate it.
    
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit e1fb1a658c89ef1356d3b42e264efed71cf81f9f
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Wed Nov 20 14:42:04 2013 +0100

    Bug 6331: remove obsolete column deleteditems.marc
    
    There is a difference between "items" and "deleteditems" tables
    in "kohastructure.sql"
    "deleteditems" has a field "marc" not existing in "items".
    
    This patch removes this obsolete column.
    
    Test :
    - after deleting an item, check that the deleted item is properly
      stored in deleteditems table
    - check that the column marc has been deleted from deleteditems table
    
    Signed-off-by: Mathieu Saby <mathieu.saby at univ-rennes2.fr>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/Items.pm                            |    6 +-----
 Koha/Schema/Result/Deleteditem.pm      |   11 ++---------
 installer/data/mysql/kohastructure.sql |    1 -
 installer/data/mysql/updatedatabase.pl |    7 +++++++
 kohaversion.pl                         |    2 +-
 5 files changed, 11 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list