[koha-commits] main Koha release repository branch 3.12.x updated. v3.12.01-77-g60a67bb

Git repo owner gitmaster at git.koha-community.org
Tue Jul 16 20:11:50 CEST 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, 3.12.x has been updated
       via  60a67bb1f74e46d85125ff3707c926c41b58d814 (commit)
       via  47df7c9641321b70cd132790d4cfeab500bc34be (commit)
       via  a8ed0e52c65f3fed53108fc1cbe9b860e63f98b5 (commit)
       via  8f0ce3c1a0e43e6fb8b7bae56e4d658bfc315631 (commit)
       via  f56768adba9fb1d39861e04796fac2be8cfdf914 (commit)
       via  3fcf60e3e2e68f73e9a6292576b6dbc35e450145 (commit)
       via  2a6b1a40bd2561368ee53fe4e063bc3ed63aa81b (commit)
      from  5207c513c36fb0e66ed5a8390fc30119e194fad1 (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 60a67bb1f74e46d85125ff3707c926c41b58d814
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Jul 16 15:16:28 2013 -0300

    Bug 10490: DBrev 3.12.01.004
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 47df7c9641321b70cd132790d4cfeab500bc34be
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Mon Jul 1 21:58:57 2013 +0200

    Bug 10490: Overdue fines cap can't store decimal values
    
    When overduefinescap was added to the issuingrules the datatype
    given was decimal. This translates in MySQL to decimal(10,0).
    This doesn't allow you to store decimal values and therefore
    values like 4.5 are saved as 5 in the database.
    
    To test:
    
    On a current installation:
    1) Try to enter 4.5 as Overdue fines cap. Verify that the value
       is not correctly saved.
    2) Apply patch and run database update.
    3) Try adding/changing an issuing rule setting Overdue fines cap
       to 4.5 again.
    4) Verify the value is saved correctly.
    
    Create a new Koha installation from scratch:
    1) Verify that the issuingrules table has been created correctly
       and that you can add/mofidy issuingrules correctly.
    
    Because this bug can create data loss, the old database update
    has also been changed to avoid this problem for people updating
    at a later point in time. Checkout an older version of Koha
    pre 3.09.00.027.
    
    1) Run the database updates.
    2) Verify again, that adding/modifying issuingrules works correctly.
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 16c57940441aac62c1c90538f3c7b7cd386e6d92)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit a8ed0e52c65f3fed53108fc1cbe9b860e63f98b5
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri Jul 12 14:57:11 2013 +0000

    Bug 10560: add regression test
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit e2bb7af21666ca61f65fb3163d8449823f5cab4b)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 8f0ce3c1a0e43e6fb8b7bae56e4d658bfc315631
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Nov 30 15:48:50 2012 +1300

    Bug 10560: make it possible for default interface language to not be English
    
    If you enable another translation, and disable English, then if you dont
    have a cookie set, or your browser is not set to that language, you will
    get English. So you can not disable English in either the staff client
    or the OPAC.
    
    This patch fixes the language selection to do the right thing.
    
    To test you must have at least one other language installed besides
    English. Apply the patch and disable the en translation. Koha should
    fall back to one of the enabled translations.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    I added a patch description and test plan, missing from the
    original patch.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    I have tested with various combinations of activated languages
    and have found no regression. If the cookie is set, the right
    language is shown accordingly. Else the first language in the
    list seems to be picked. It did never fall back to English
    in my tests, when English was explicitly deactivated.
    
    Passes all tests and QA script.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 38f596d48e19c8f7890caea7a6eb59b6174cf5fa)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Works as advertised.

commit f56768adba9fb1d39861e04796fac2be8cfdf914
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Wed Jul 3 14:24:23 2013 +0200

    Bug 10535: by default sort funds by name
    
    In parcels.pl, and other acquisition pages, the funds are not sorted
    by name in combo-box.  With a great number of funds, it is difficult
    to find one.
    
    This patch adds a default value to $orderby arg of C4::Budgets::GetBudgets.
    
    Test plan :
    - Create a new fund with a name beginning with 'z' and set you as owner.
    - Create a new fund with a name beginning with 'a' and set you as owner.
    - Go to a vendor and click "Receive shipments"
    - Look at fund combobox
    => Funds are sorted by name
    
    Signed-off-by: Silvia Simonetti <s.simonetti at cineca.it>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes all tests and QA script.
    When testing make sure your funds would sort the other way
    around when sorting by code instead of description.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit aa6cdb60a9ab2581ffef08796a349242d3d2ff66)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 3fcf60e3e2e68f73e9a6292576b6dbc35e450145
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Sat Jul 6 15:50:54 2013 -0400

    bug 10548: fix count of missing required dependencies by koha_perl_deps.pl
    
    To test:
    
    [1] ./koha_perl_deps.pl -m -u
    
    If you have nothing missing, uninstall an optional component.
    
    [2] ./koha_perl_deps.pl -m -u
    
    You should get a number missing of at least 1.
    
    [3] ./koha_perl_deps.pl -m -u -r
    
    You should get the same number, even though the output is less.
    
    [4] Apply patch
    
    [5] ./koha_perl_deps.pl -m -u
    
    Same results as in step 2.
    
    [6] ./koha_perl_deps.pl -m -u -r
    
    The number should differ from the results in step 3.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 0134341d9a9883013b7eee3bdc84aa339e618bcc)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 2a6b1a40bd2561368ee53fe4e063bc3ed63aa81b
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Jun 28 14:11:48 2013 -0400

    Bug 10496 - CCSR theme OPAC tabs to not show correct active state
    
    When jQueryUI was updated in the CCSR theme the corresponding CSS
    changes were not copied over at the same time, causing style problems
    with jQueryUI widgets. This patch makes the necessary changes.
    
    To test, apply the patch, clear your browser cache, and view any page
    which uses jQueryUI tabs (advanced search, bibliographic detail page).
    Tabs should look correct and correctly show which tab is active.
    
    Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    CSS changes only.
    Confirmed problem in CCSR OPAC templates.
    Tested advanced search and detail pages in CCSR and prog.
    In order to fully test advanced search I added location and
    collection to AdvancedSearchTypes.
    Also tested the branch tooltip as I spotted some CSS added for that.
    
    Works beautifully, no problems found.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 7010fd1d29fec8ba3b6a212943cae573b056d3f4)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Budgets.pm                            |    3 +-
 C4/Templates.pm                          |    4 ++
 installer/data/mysql/kohastructure.sql   |    2 +-
 installer/data/mysql/updatedatabase.pl   |   10 +++++-
 koha-tmpl/opac-tmpl/ccsr/en/css/opac.css |   37 ++++++++++++++++-----
 koha_perl_deps.pl                        |    3 +-
 kohaversion.pl                           |    2 +-
 t/Templates.t                            |   51 ++++++++++++++++++++++++++++++
 8 files changed, 98 insertions(+), 14 deletions(-)
 create mode 100644 t/Templates.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list