[koha-commits] main Koha release repository branch master updated. v3.20.00-85-ge178435

Git repo owner gitmaster at git.koha-community.org
Thu Jun 4 15:57:27 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  e178435ca7d1dc27b71569f0a3606ce86d5e8506 (commit)
       via  42a5ef16806c906111528b9acb5ceed703722d7c (commit)
       via  49c364f94b54fa5db5388d2125d1392581108dc9 (commit)
       via  22c5c4b468b3584ed8bf45039c1494e969f2d66b (commit)
       via  2fa99fc7a0c5fe107d5e29f7f14af0cf6dc6efba (commit)
       via  6882949b1b3bd1284e3d2877244a64edee3883ca (commit)
      from  8e726e3ee1e519d138074a986c27a2c393e23701 (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 e178435ca7d1dc27b71569f0a3606ce86d5e8506
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Thu Jun 4 10:52:39 2015 -0300

    Bug 14024: DBRev 3.21.00.005
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 42a5ef16806c906111528b9acb5ceed703722d7c
Author: Marc Véron <veron at veron.ch>
Date:   Thu Apr 23 08:48:15 2015 +0200

    Bug 14024 - add reports to action logs
    
    See QA comment #5
    
    - new reports log their Id instead of 0
    - format info: <name> | <sql>
    
    Signed-off-by: Nicole Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 49c364f94b54fa5db5388d2125d1392581108dc9
Author: Marc Véron <veron at veron.ch>
Date:   Mon Apr 20 22:13:04 2015 +0200

    Bug 14024 - add reports to action logs
    
    This patch sets adds the possibility to log new, update and delete actions for saved reports.
    
    To test:
    -Apply patch
    -Run updatedatabase.pl
    -Enable system preference ReportsLog
    -Create, duplicate, edit and delete saved reports
    -Go to Home > Tools > Logs
    -Verify that you can select "Reports" in Modules list
    -Verify that your actions were logged
    
    Signed-off-by: Nicole Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Nicole Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 22c5c4b468b3584ed8bf45039c1494e969f2d66b
Author: Marc Véron <veron at veron.ch>
Date:   Tue Jun 2 09:54:15 2015 +0200

    Bug 14313: OPAC - Adding a comment makes result browser disappear
    
    To reproduce:
    
    - Allow commenting in OPAC (Syspref reviewson)
    - Log in to OPAC
    - Do a search with many results
    - Click on a biblio in result list
    - Verify that you can browse the results in detail view ("Browse results")
    - Repeat teh search above
    - Click on the same biblio as above
    - Add a comment (Tab "Comments")
    - Close commenting window
    - Click on "Next" in result browser
    
    Result: The next biblio is displayed, but result browser has disappeared.
    
    To test:
    
    - Apply patch
    - Try to reproduce issue above, verify that result browser does no longer disappear
    
    AMended to remove whitespace chars. / MV
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Bug & solution checked, works well. No koha-qa errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 2fa99fc7a0c5fe107d5e29f7f14af0cf6dc6efba
Author: Jonathan Druart <jonathan.druart at koha-community.org>
Date:   Thu Jun 4 12:05:17 2015 +0200

    Bug 13967: Add a couple of tests for SysPref and Object
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>

commit 6882949b1b3bd1284e3d2877244a64edee3883ca
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Apr 8 06:38:34 2015 -0400

    Bug 13967 - System preferences need a package
    
    System preferences should have a package based on Koha::Object to remove
    the need for direct manipulation via SQL.
    
    Test Plan:
    1) Apply this patch
    2) prove t/db_dependent/sysprefs.t
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Auth.pm                                         |    7 +++-
 C4/Context.pm                                      |   41 +++++++-------------
 C4/Reports/Guided.pm                               |    6 ++-
 Koha.pm                                            |    2 +-
 Koha/{Borrower.pm => Config/SysPref.pm}            |    6 +--
 Koha/{Borrowers.pm => Config/SysPrefs.pm}          |   10 ++---
 Koha/Objects.pm                                    |    2 +
 installer/data/mysql/sysprefs.sql                  |    1 +
 installer/data/mysql/updatedatabase.pl             |   10 +++++
 .../prog/en/modules/admin/preferences/logs.pref    |    6 +++
 .../intranet-tmpl/prog/en/modules/tools/viewlog.tt |    3 +-
 reports/guided_reports.pl                          |    4 ++
 t/db_dependent/Borrowers.t                         |    5 ++-
 t/db_dependent/sysprefs.t                          |   24 +++++++-----
 14 files changed, 77 insertions(+), 50 deletions(-)
 copy Koha/{Borrower.pm => Config/SysPref.pm} (88%)
 copy Koha/{Borrowers.pm => Config/SysPrefs.pm} (84%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list