[koha-commits] main Koha release repository branch master updated. v3.18.00-358-g8770d37

Git repo owner gitmaster at git.koha-community.org
Fri Feb 20 15:05:18 CET 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  8770d37de70ea935702139ca955b4dd9d4ff38fa (commit)
       via  9cc7ac68e1c2993b7780a6fe1c361ddd434a595b (commit)
       via  79e1008cef66345106328487c712ef6dde7f3507 (commit)
       via  acc7da6a5f93e12704acdfd7981481c9ef07904b (commit)
       via  a303cdec4871d3d3740d419c972eea7faf8e5a8a (commit)
       via  8804598f3dcff3ccacc34723939cf072d8451fac (commit)
       via  f82064286d3bc97031ad784901716a7a327839bc (commit)
       via  e8f9000fcca4fd542f7f82e2288d3a627053dd77 (commit)
       via  07f9dd9f8c2abb43a031c91449661a779ff53746 (commit)
      from  6b26f8858e5069a2fae21fb28692a8eeb37fa0a8 (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 8770d37de70ea935702139ca955b4dd9d4ff38fa
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Feb 19 15:50:37 2015 +0100

    Bug 13593: (follow-up) 'stock number' should be 'inventory number'
    
    Add one more.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9cc7ac68e1c2993b7780a6fe1c361ddd434a595b
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Jan 18 20:04:15 2015 +0100

    Bug 13593: 'stock number' should be 'inventory number'
    
    To make Koha easier to use, we should use terms consistently.
    This patch fixes some occurrences of 'stock number' to be
    'inventory number' as this is also the term used in the frameworks.
    
    Item search, accessible via the link from staff's advanced search
    1) Do a search for items, but choose CSV as output
    2) Verify that the header row says 'inventory number'
    
    Acquisition
    3) Set AcqCreateItem to 'order'
    4) Create a new order, check the labels on the item table in the order
    
    5) Receive the order, check the labels on the item table on receive
    
    6) Set AcqCreateItem to 'receive'
    7) Check the item table on receiving an order
    
    Followed test plan (including item search with JavaScipt disabled). Headers / labels display as expected.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 79e1008cef66345106328487c712ef6dde7f3507
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 20 07:23:15 2015 -0500

    Bug 12858 [QA Followup] - Don't call webservice if we have no data
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit acc7da6a5f93e12704acdfd7981481c9ef07904b
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Tue Sep 2 09:14:03 2014 +0000

    Bug 12858: Add error handling to Syndetics Index
    
    * Syndetics routines include a statement to check that the returned
      content from Syndetics is xml. The get_syndetics_index routine was
      missing this check and so when a 'not found' html page was returned
      the opac-detail page would take a long time to load whilst xml::simple
      attempted to parse the large html document.
    
      Test Plan
      1. Enable Syndetics indexes on opac.
      2. Head over to an opac-detail page on the opac.
      3. Remove the ISBN from the same item in the staff client.
      4. Reload the opac-detail page for the item noticeing a much slower
      page load.
      5. Apply the patch
      6. Reload the opac-detail page for the item and note that it now laods
      in a reasonable timescale again.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit a303cdec4871d3d3740d419c972eea7faf8e5a8a
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Jan 19 13:48:42 2015 +0000

    BUG 13596: Prevent utf8mb4 -> utf8 convertion
    
    utf8mb4 is a superset of utf8 and thus is compatible.  We should not
    force an entire db change upon people who have proactively set utf8mb4
    encoding before now.
    
    This patch also removed the deprecated use of ->tables stanza in favour
    of the table_info stanza.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 8804598f3dcff3ccacc34723939cf072d8451fac
Author: Marc Véron <veron at veron.ch>
Date:   Tue Feb 10 18:16:45 2015 +0100

    Bug 13682 - Capitalization: Holds Queue
    
    This patch changes capitalization of Holds Queue to Holds queue in koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueu$
    
    To test:
    Apply patch
    Go to Circulation > Holds queue page
    Verify that the capitalization is correct
    
    Signed-off-by: Magnus Enger <magnus at enger.priv.no>
    Works as advertised.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit f82064286d3bc97031ad784901716a7a327839bc
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Tue Sep 16 13:15:57 2014 +0200

    Bug 12669: Centralize the timezone handle into Koha::DateUtils
    
    This patch adds unit tests for the previous changes and centralize the
    timezone handle into the Koha::DateUtils module.
    Like that the behavior will affect all date manipulations using this
    module (should be all dates in Koha).
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit e8f9000fcca4fd542f7f82e2288d3a627053dd77
Author: Rolando Isidoro <rolando.isidoro at gmail.com>
Date:   Fri Aug 1 09:42:30 2014 +0100

    Bug 12669: Use floating timezone when handling dates without hours, minutes and seconds.
    
    Test plan:
    
    1. Create a new serial record or pick an existing one;
    2. Add a "New subscription" and set the "First issue publication date"
       and "Frequency" values so that the "Planned date" for a given issue
       hits a day where a transition to Daylight Saving Time (DST) occurs
    
       ex:. 1979-04-01 in Europe/Lisbon (http://www.timeanddate.com/time/change/portugal/lisbon?year=1979)
       ... use this website page as a source http://www.timeanddate.com/time/dst/2014.html
       to find a suitable transition to DST in your timezone in the current year.
    
    3. From the "Subscription detail" page in Koha for the given record click
       the "Serial collection" link on the left side context menu.
    
    Expected result:
    Prior to applying the patch the error described in this bug report should occur.
    After the patch is applied the "Serial collection" page should load correctly.
    
    Signed-off-by: Colin Campbell <colin.campbell at ptfs-europe.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 07f9dd9f8c2abb43a031c91449661a779ff53746
Author: Chris Cormack <chris at bigballofwax.co.nz>
Date:   Sat Feb 7 17:04:40 2015 +1300

    Bug 13679 : Bug in listing overdues
    
    To test
    1/ Create some overdues and some issues due in the future
    2/ Run the overdues script
    3/ Notice item due in the future is in the list
    4/ Apply patch
    5/ Run script again
    6/ Notice in the future not in the list
    
    Signed-off-by: Nick <Nick at quechelibrary.org>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/External/Syndetics.pm                           |    9 ++++--
 Koha/DateUtils.pm                                  |   27 +++++++++++++-----
 Koha/Template/Plugin/KohaDates.pm                  |    2 ++
 installer/data/mysql/updatedatabase.pl             |   14 ++++++---
 .../en/includes/catalogue/itemsearch_items.inc     |    2 +-
 .../prog/en/modules/acqui/neworderempty.tt         |    2 +-
 .../prog/en/modules/acqui/orderreceive.tt          |    4 +--
 .../prog/en/modules/catalogue/itemsearch.csv.tt    |    2 +-
 .../prog/en/modules/circ/view_holdsqueue.tt        |    2 +-
 misc/cronjobs/overdue_notices.pl                   |    2 ++
 t/DateUtils.t                                      |   22 +++++++++++++-
 t/db_dependent/Koha_template_plugin_KohaDates.t    |   30 ++++++++++++++++----
 12 files changed, 93 insertions(+), 25 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list