[koha-commits] main Koha release repository branch master updated. v3.18.00-635-g27b534d

Git repo owner gitmaster at git.koha-community.org
Mon Apr 13 15:36:24 CEST 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  27b534dc56f139d10a45375f2273510ac6222874 (commit)
       via  229db83ee0e32b320ca5f66947ab8e6d7d08b922 (commit)
       via  61926f71c8d7a63a496006ee81231c8f0ebfe05f (commit)
       via  b1b1f8f9153ebbd3f79369f875b8416818d9bad3 (commit)
       via  ce7107843539844096f3982056226f5afab71730 (commit)
       via  eb2c2bee378e871fc50733c499588f12dbe515a0 (commit)
       via  742a12e41d63d9e4753b1111639b0a2e0a6281ad (commit)
       via  cbd02540f4767e0fa1df9da011138ff076b69716 (commit)
       via  18c6b4e237032126d767ad98a66b6d80db2d8270 (commit)
       via  9b44647509e4d08029760bae25703b049a4bda30 (commit)
      from  653686cee9cd3032642933427d86ec9331612607 (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 27b534dc56f139d10a45375f2273510ac6222874
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Dec 4 15:23:17 2013 +0100

    Bug 11337: Remove the C4::Serials::GetSubscriptions routine
    
    Since SearchSubscriptions is the way to search subscriptions, each call
    to GetSubscriptions could be replaced by a call to SearchSubscriptions.
    
    Test plan:
    Verify following pages display the same thing as before this patch:
    - catalogue/detail.pl
    - opac/opac-ISBDdetail.pl
    - opac/opac-detail.pl
    
    Verify the following page returns correct results:
    - serials/checkexpiration.pl
    
    Verify the Serials UT file still passes:
    - prove t/db_dependent/Serials.t
    
    Note: The title filter on checkexpiration now only searches on the title
    DB field. I don't think it is a regression, it should be the way to use
    this field. Maybe should we add new search fields on this form.
    Bug 5337 reintroduces a bug fixed by bug 5864, this patch restore the
    right way to search subscription (based on biblionumber).
    
    Signed-off-by: Aleisha <aleishaamohia at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 229db83ee0e32b320ca5f66947ab8e6d7d08b922
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 13 10:33:59 2015 -0300

    Bug 2806: (RM followup) DBIx schema update
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 61926f71c8d7a63a496006ee81231c8f0ebfe05f
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 13 10:30:15 2015 -0300

    Bug 2806: 3.19.00.021
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit b1b1f8f9153ebbd3f79369f875b8416818d9bad3
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Mon Feb 23 16:39:08 2015 +0100

    Bug 2806: Remove issuingbranch columns
    
    This column is not in used in the Koha code and could be removed.
    
    Test plan:
    Verify the branch is correctly displayed on the circulation history
    (members/readingrec.pl) and that both reports Most-cisulated items
    (cat_issues_top.pl) and Avg checkout (issues_avg_stats.pl) work as
    before.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    No problems found.
    Fixed wrong table name on updatedatabase.pl and a tab char.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes tests and QA script.
    Checked issues and returns are still working correctly.
    There is no mention of issuingbranch in the codebase.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ce7107843539844096f3982056226f5afab71730
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 13 10:19:40 2015 -0300

    Bug 11008: (RM followup) DBIx schema update
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit eb2c2bee378e871fc50733c499588f12dbe515a0
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 13 10:14:24 2015 -0300

    Bug 11008: DBRev 3.19.00.020

commit 742a12e41d63d9e4753b1111639b0a2e0a6281ad
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Fri Jul 18 12:54:28 2014 +0200

    Bug 11008: Drop column aqorders.supplierreference
    
    It seems that this column has never been used.
    
    Test plan:
    1/ Execute the updatedatabase entry.
    2/ git grep supplierreference should not return occurrence in the code (except
    in Koha/Schema/*
    3/ prove t/db_dependent/Acquisition.t should return green.
    
    Signed-off-by: Nicolas Legrand <nicolas.legrand at bulac.fr>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit cbd02540f4767e0fa1df9da011138ff076b69716
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Mar 18 13:16:43 2015 +0100

    Bug 13865: Columns configuration - Orders search
    
    This patch adds the ability to hide columns on the orders search page
    (acqui/histsearch.pl).
    
    Test plan:
    Go on the orders search page and confirm you are able to hide columns.
    You can also play with the columns configuration admin page and confirm
    that the behaviors are consistent.
    
    Signed-off-by: Nicole <nicole at bywatersolutions.com>
    
    http://bugs.koha-community.org/show_bug.cgi?id=13685
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 18c6b4e237032126d767ad98a66b6d80db2d8270
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Sat Oct 11 16:53:41 2014 +0200

    Bug 13069 - (follow-up) Enable sort by title to ignore articles
    
    This should affect the relatives' checkouts table too.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    
    NOTE: This is the one later in the javascript file.
          Checkout tab on the patron details page.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9b44647509e4d08029760bae25703b049a4bda30
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Oct 9 15:22:29 2014 +0000

    Bug 13069 - Enable sort by title to ignore articles on circulation and patron detail pages
    
    With the conversion of the circulation and patron detail checkout
    summary tables to AJAX recently we lost the ability to sort by title
    while ignoring articles.
    
    This patch corrects the problem by adding the "anti-the" configuration
    to the relevant column in the DataTables initializtion script.
    
    To test, apply the patch and clear your cache if necessary. Check out to
    a patron who has multiple checkouts, some of which have titles beginning
    with "a," "an," and "the." Sorting those checkouts by title should
    ignore articles.
    
    Test the patron detail page for that patron as well.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    
    NOTE: This is the one early in the javascript file.
          This is the one visible by having multiple checkouts
          where the title excluding the articles is a different
          order than titles including the articles.
          Patrons -> Details (scroll down to check out area, view
          checkouts and toggle the title sort)
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Serials.pm                                      |   88 ++------------------
 Koha/Schema/Result/Aqorder.pm                      |   11 +--
 Koha/Schema/Result/Issue.pm                        |   12 +--
 Koha/Schema/Result/OldIssue.pm                     |   12 +--
 admin/columns_settings.yml                         |   31 +++++++
 catalogue/detail.pl                                |    2 +-
 installer/data/mysql/kohastructure.sql             |    5 --
 installer/data/mysql/updatedatabase.pl             |   21 +++++
 koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js    |    6 +-
 .../prog/en/modules/acqui/histsearch.tt            |    7 +-
 .../prog/en/modules/members/readingrec.tt          |    3 +-
 .../prog/en/modules/reports/cat_issues_top.tt      |    2 +-
 .../prog/en/modules/reports/issues_avg_stats.tt    |    8 --
 kohaversion.pl                                     |    2 +-
 members/readingrec.pl                              |    3 -
 opac/opac-ISBDdetail.pl                            |    2 +-
 opac/opac-detail.pl                                |    2 +-
 serials/checkexpiration.pl                         |    2 +-
 t/db_dependent/Acquisition.t                       |    3 -
 t/db_dependent/Serials.t                           |    8 +-
 20 files changed, 85 insertions(+), 145 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list