[koha-commits] main Koha release repository branch 3.14.x updated. v3.14.01-77-gb19bd4f

Git repo owner gitmaster at git.koha-community.org
Fri Jan 3 09:31:01 CET 2014


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, 3.14.x has been updated
       via  b19bd4f2a92e7023428cb31d764b133ba4301e44 (commit)
       via  bec64c8274d79fd8add9540d134201cd104fc322 (commit)
       via  d2c9c8837bcf4e1159ee75bdcdc8386d1f394ad7 (commit)
       via  574dc07e0dbed1d397d6a6439baee5737a4b127a (commit)
       via  e55b3900c7427f28596b70a91ba037e1213e1bf8 (commit)
      from  a933169ae1188bf259cf95fd8f494f6ae80ab5c3 (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 b19bd4f2a92e7023428cb31d764b133ba4301e44
Author: Fridolin SOMERS <fridolin.somers at biblibre.com>
Date:   Fri Jan 3 09:47:30 2014 +0100

    Bug 6331: DBRev 3.14.01.004
    
    Signed-off-by: Fridolin SOMERS <fridolin.somers at biblibre.com>

commit bec64c8274d79fd8add9540d134201cd104fc322
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>
    (cherry picked from commit e4f846a866d24779ff18634bd1da2e0c00086fe4)
    Signed-off-by: Fridolin SOMERS <fridolin.somers at biblibre.com>
    
    Conflicts:
    	Koha/Schema/Result/Deleteditem.pm

commit d2c9c8837bcf4e1159ee75bdcdc8386d1f394ad7
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>
    (cherry picked from commit cada676ef3439d2567fa21da415d939f0fc22ee6)
    Signed-off-by: Fridolin SOMERS <fridolin.somers at biblibre.com>

commit 574dc07e0dbed1d397d6a6439baee5737a4b127a
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>
    (cherry picked from commit 2249ee1216ed004e61a34bc821d216f3471ef87b)
    Signed-off-by: Fridolin SOMERS <fridolin.somers at biblibre.com>

commit e55b3900c7427f28596b70a91ba037e1213e1bf8
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>
    (cherry picked from commit e1fb1a658c89ef1356d3b42e264efed71cf81f9f)
    Signed-off-by: Fridolin SOMERS <fridolin.somers at biblibre.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