[koha-commits] main Koha release repository branch master updated. v3.20.00-beta-87-g48d793a

Git repo owner gitmaster at git.koha-community.org
Fri May 22 16:16:31 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  48d793a0de9229463026444b3f919af9522d2211 (commit)
       via  b119dfcc0f6a7e676685e62193da0e1c138f0831 (commit)
       via  7ad39b6fc950a0cfd68f1ea77caeab36630bd445 (commit)
       via  b9a063f1718acb25b71d9a1df8b8db7d0717139a (commit)
       via  36385e2373a286f94b2fbd06d8568e2b6f3c829f (commit)
       via  cdcba6846c76e19e09a503f9b9cda9905b13a6a4 (commit)
       via  5d8aa7b70b51ed0d2dd480391c7a9fcb23f5a3bd (commit)
       via  16d7ba09f3705e56ae03beda1dd15111f2583de9 (commit)
      from  f52084df0e395fdf89d80ca2fd77844273a8cf7c (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 48d793a0de9229463026444b3f919af9522d2211
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri May 22 13:48:13 2015 +1200

    Bug 14106: patch existing zebra configs with new modulePath
    
    This patches the zebra configuration of existing Koha installations so
    that their modulePath will work on newer Debian (and presumably Ubuntu)
    releases.
    
    Testing:
    * Install a package built with this patch onto a system with instances
      created by an older Koha version.
    * Check that the files in /etc/koha/sites/*/zebra-*.cfg have the new
      modulePath: directive rather than the old one.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit b119dfcc0f6a7e676685e62193da0e1c138f0831
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu May 21 15:48:06 2015 +1200

    Bug 14106: fill up the zebra config with a list of modulePaths
    
    This adds the full list of paths that debian might use for zebra to the
    search path for modules.
    
    It also means we can say we support s390x architecture. Whatever that is.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 7ad39b6fc950a0cfd68f1ea77caeab36630bd445
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Sat May 9 01:31:37 2015 -0400

    Bug 14145: Noisy warns in admin/preferences.pl
    
    The problem with the odd number of hashes happens when not everything is selected.
    The grep returns undef, because it isn't found in @values.
    By turning the grep into a ternary-operator truth value, we can set a value (1 or 0) expressly.
    
    The next problem is when nothing is selected in these multiple lists, $value is
    undefined, so you can't split it. By splitting the definition of @values from
    the actual splitting, we can split only if $value is defined, thus eliminating the
    warning message.
    
    TEST PLAN
    ---------
    1) back up your koha error log file
    2) blank your koha error log file
    3) log in to the staff client
    4) Home -> Koha administration -> Global system preferences
    5) Click on every tab, EXCEPT local use.
    6) notice the koha error log file has warnings.
    7) blank the koha error log file again
    8) apply this patch
    9) Click on every tab, EXCEPT local use, again.
    10) notice the koha error log file has no warnings.
    11) koha qa test tools.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    I like more this version
    Works as described
    No koha-qa errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    To reproduce: go on the OPAC tab, OpacAdvSearchMoreOptions  or
    OpacAdvSearchOptions should not have all options selected.
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit b9a063f1718acb25b71d9a1df8b8db7d0717139a
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Wed May 6 14:04:29 2015 -0300

    Bug 14124: Add 'Unimarc only' note to IdRef system preference
    
    This patch adds a note to the IdRef service syspref making it
    clear that the feature is only available for UNIMARC setups.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Added a missing 'is'
    No errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 36385e2373a286f94b2fbd06d8568e2b6f3c829f
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Thu May 21 20:25:41 2015 -0300

    Bug 14254 - Unclosed <option> element in unimarc_field_116.tt
    
    Unclosed <option>
    
    To test:
    1) Unimarc install
    2) Edit a record
    3) Edit 116 field, 10 position, Technique (prints) 3
    4) Select litography, save
    5) Run plugin again, will see litography/option>
    6) Apply the patch
    7) Check again, now is right (clean cache)
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit cdcba6846c76e19e09a503f9b9cda9905b13a6a4
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri May 1 22:14:21 2015 -0400

    Bug 14118: Silence warnings t/DataTables/Members.t
    
    After cleaning 'prove t' up. 'prove -r t' was attempted next.
    A couple uninitialized variable warning were triggered.
    
    TEST PLAN
    ----------
    1) prove t/DataTables/Members.t
       -- warnings.
    2) apply patch
    3) prove t/DataTables/Members.t
       -- no warnings.
    4) koha qa test tools.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Cleaned. No errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 5d8aa7b70b51ed0d2dd480391c7a9fcb23f5a3bd
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri May 1 17:09:58 2015 -0400

    Bug 14114: Silence warns and cleanup t/Debug.t
    
    TEST PLAN
    ---------
    1) $ prove t/Debug.t
       -- What's with this BEFORE and AFTER stuff?!
    2) apply patch
    3) $ prove t/Debug.t
       -- cleaner, and you only get fuller output with -v.
    4) koha qa test tools
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Cleaner, no koha-qa errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 16d7ba09f3705e56ae03beda1dd15111f2583de9
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Thu Feb 5 14:31:55 2015 -0300

    Bug 13486: Apache version empty in about page if Apache 2.4
    
    This patch makes about.pl query the running Apache version using
    the apache2ctl command. I tested it on Apache 2.2 and is backwards
    compatible (it is present in both).
    
    To test:
    ( On an Apache 2.4 setup )
    - Go to the about page
    => FAIL: "Apache version:" is empty
    - Apply the patch
    - Reload the page
    => SUCCESS: "Apache version:" shows the correct version.
    - Sign off :-D
    
    If you have an Apache 2.2 setup to try it, verify that there are no regressions
    (trivial because you can run apache2ctl manually and verify the first result is the expecte).
    
    Regards
    
    PS. I even changed the order in which Apache version is tested because
    most people is using Debian/Ubuntu and it was the last option.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Tested with apache 2.2/2.4, no errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Only tested with 2.4
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Utils/DataTables/Members.pm                     |    6 +++---
 about.pl                                           |    7 ++++---
 admin/preferences.pl                               |    5 +++--
 debian/koha-common.postinst                        |    7 +++++++
 debian/templates/zebra-authorities-dom-site.cfg.in |    2 +-
 debian/templates/zebra-authorities-site.cfg.in     |    2 +-
 debian/templates/zebra-biblios-dom-site.cfg.in     |    2 +-
 debian/templates/zebra-biblios-site.cfg.in         |    2 +-
 .../en/modules/admin/preferences/web_services.pref |    1 +
 .../cataloguing/value_builder/unimarc_field_116.tt |    2 +-
 t/Debug.t                                          |   20 +++++++-------------
 11 files changed, 30 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list