[koha-commits] main Koha release repository branch master updated. v3.16.00-289-gb045c79

Git repo owner gitmaster at git.koha-community.org
Sat Jul 26 14:51:44 CEST 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, master has been updated
       via  b045c79b4abcc8f2cfebac0f72d8496fd34fb3ab (commit)
       via  09905d64a9482936a6bd20134a68d8a7299354a9 (commit)
       via  ba81cdcdb2806e3b60786ed47258a189703ccffb (commit)
       via  7c809faba9e3a756374df5de82d6c98884cbe677 (commit)
       via  564018291e17698aace4f4048b2e3a4875b443e2 (commit)
       via  e86387eee2a6d60d36e5dd22322d06b8be5c91bd (commit)
      from  6e1020015898e0cf72f562361daadd9f7ea723b5 (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 b045c79b4abcc8f2cfebac0f72d8496fd34fb3ab
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Sat Jul 26 10:13:28 2014 -0300

    Bug 12583: (followup) rename new test file
    
    We should reserve the use of dirs for namespaces. Method specific tests
    should be included in a single file with subtests, or stick to Package_method.t.
    
    This should be discussed, so we rearrange the remaining tests.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 09905d64a9482936a6bd20134a68d8a7299354a9
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Jul 16 14:07:33 2014 +0200

    Bug 12583: DelItem prototype - Add unit tests
    
    DelItem should return 1 if the item has been deleted, otherwise 0.
    
    Test plan:
    Verify that t/db_dependent/Items/DelItem.t returns green
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ba81cdcdb2806e3b60786ed47258a189703ccffb
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Jul 16 13:44:39 2014 +0200

    Bug 12583: DelItem prototype - prefer hashref
    
    To delete an item, only the itemnumber should be mandatory. The DelItem
    routine can retrieve the biblionumber from the itemnumber.
    
    Test plan:
    Verify that t/db_dependent/Items/DelItem.t passes
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 7c809faba9e3a756374df5de82d6c98884cbe677
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Jul 16 13:39:07 2014 +0200

    Bug 12583: DelItem prototype - Remove $dbh
    
    Since C4::Context->dbh shares the DB handler, it's useless to pass it to
    routines.
    
    Test plan:
    Try to remove an item from the Koha interface.
    Verify that unit tests pass.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 564018291e17698aace4f4048b2e3a4875b443e2
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Jul 14 09:05:05 2014 -0400

    Bug 9667 - Inventory scrolling to top with every click
    
    An "onclick" attribute on inventory results links causes the page to
    scroll to the top each time. This patch updates the click handling to
    use a progressive-enhancement method.
    
    Unrelated changes: I added use of the Branches T:T plugin to output
    library name instead of branchcode, and put a check around call number
    to prevent output of empty [] in results.
    
    To test, use the inventory tool to check a batch of items. On the
    results page:
    
    - Confirm that branch name is shown instead of code.
    - Confirm that no [] shows for items without call numbers
    - Confirm that clicking a title opens a pop-up window showing details
      for that title.
    - Confirm that clicking a title opens a pop-up window whether you're on
      the first page of results or any subsequent page.
    
    Signed-off-by: Ian Beardslee <ian at catalyst.net.nz>
    
    Tested in Firefox and Chromium.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit e86387eee2a6d60d36e5dd22322d06b8be5c91bd
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jul 23 13:08:36 2014 -0400

    Bug 12639 - Z39.50 administration page should use "message" dialog for adds and updates
    
    This patch changes the style of a couple of message boxes to use the
    "message" style instead of the "alert" style. This better reflects the
    type and priority of the messages being displayed.
    
    To test, got to Administration -> Z39.50 client targets and edit an
    existing server. The confirmation message should be the blue "message"
    type.
    
    Test again by adding a new server. The confirmation message for this
    operation should be of the same blue "message" type.
    
    Signed-off-by: Petter Goksoyr Asen <boutrosboutrosboutros at gmail.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Small template change, tested ok.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Acquisition.pm                                  |    7 ++-
 C4/Items.pm                                        |   40 ++++++++++++----
 .../prog/en/modules/admin/z3950servers.tt          |    4 +-
 .../prog/en/modules/tools/inventory.tt             |   19 ++++++--
 t/db_dependent/Items.t                             |    2 +-
 t/db_dependent/Items_DelItem.t                     |   49 ++++++++++++++++++++
 6 files changed, 102 insertions(+), 19 deletions(-)
 create mode 100644 t/db_dependent/Items_DelItem.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list