[koha-commits] main Koha release repository branch master updated. v17.11.00-1471-g831e6fa

Git repo owner gitmaster at git.koha-community.org
Mon May 14 16:29:07 CEST 2018


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  831e6fac4d84cf5cbc63354dcd1baa5100cfaba7 (commit)
       via  71eba3a74a65b49aeb5c24ddd5118df882cef14b (commit)
       via  a88e052ae5e420eb2f8ffa7555756b0581b72652 (commit)
       via  fdb5d0ca1ac16563c4b34c47dd32d61f96913d8a (commit)
       via  8ffaa7b8a32b9ee2d9d430c097322708f090f8f7 (commit)
       via  da2886132e8445dd472b8b9ccd67e07365657c3a (commit)
       via  2b0c27beafae072087d1e63bb00cc5b193ed9917 (commit)
       via  d90d8c9b272061986c101763d7c8f73ed7a9b0a2 (commit)
       via  624870631ce374e90db2035545150eca95c72677 (commit)
       via  c65526f4904d6070cd88b3e7cb56a7beaed18e20 (commit)
      from  52e93b7121321b1e4b5c0872dd2c49f1cfaa80fc (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 831e6fac4d84cf5cbc63354dcd1baa5100cfaba7
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Mon May 14 14:46:20 2018 +0200

    Bug 20764: Koha_Template_Plugin_KohaPlugins.t is db dependent
    
    t/Koha_Template_Plugin_KohaPlugins.t is DB dependent.
    This patch moves it to t/db_dependent/
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 71eba3a74a65b49aeb5c24ddd5118df882cef14b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon May 14 11:11:34 2018 -0300

    Bug 20428: Display warning if the entry is empty
    
    And not only if the entry is missing. We should do the same for other
    entries.
    Also, use Koha::UploadedFile->temporary_directory to know the fallback
    value.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit a88e052ae5e420eb2f8ffa7555756b0581b72652
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Mon May 14 09:05:21 2018 +0200

    Bug 20428: (QA follow-up) Remove redundant directory level
    
    Upload creates its own upload folder in the temp folder, so there is no
    need to add another level in temporary_directory.
    Removing the creation of this folder in koha-create-dirs too.
    
    Also removing the use Koha::UploadedFiles in about.pl. No longer needed.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit fdb5d0ca1ac16563c4b34c47dd32d61f96913d8a
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri May 11 14:24:32 2018 -0300

    Bug 20428: Make upload_tmp a more general tmp directory
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 8ffaa7b8a32b9ee2d9d430c097322708f090f8f7
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Tue May 8 16:14:48 2018 +0000

    Bug 20428: Added missing parameter --upload-tmp-path
    
    Line 463 lists valid parameters, but it was missing
    upload-tmp-path: which resulted in the koha-create
    saying it is an invalid parameter.
    
    TEST PLAN
    ---------
    1) apply all patches but this.
    2) sudo perl ~/misc4dev/cp_debian_files.pl
    3) restart_all
    4) sudo koha-create --create-db --upload-tmp-path unique-path
    awesome-test-name
       -- Fails to run.
    5) apply this patch
    6) repeat 2-4
    7) sudo vi /etc/koha/sites/awesome-test-name/koha-conf.xml
       -- the upload_tmp_path entry should have unique-path
          in it.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit da2886132e8445dd472b8b9ccd67e07365657c3a
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Mar 29 10:45:30 2018 -0300

    Bug 20428: Make about.pl inform about missing upload_tmp_path entry
    
    This patch makes about.pl warn about a missing upload_tmp_path entry in
    koha-conf.xml. It also mentions the effectively used tmp dir.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 2b0c27beafae072087d1e63bb00cc5b193ed9917
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Mar 29 10:44:59 2018 -0300

    Bug 20428: Make Koha::UploadedFile use the new config entry for tmp files
    
    This patch makes Koha::UploadedFile->temporary_directory try to use the
    new configuration entry. It will fallback to File::Spec->tmpdir
    otherwise.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit d90d8c9b272061986c101763d7c8f73ed7a9b0a2
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Mar 29 10:25:43 2018 -0300

    Bug 20428: Add the option to specify a tmp uploads dir
    
    This patch adds an option to the koha-conf.xml file for specifying
    a temporary uploaded files directory.
    
    The koha-create script is adjusted to handle it and a convenient option
    switch is added. If ommited, it will default to
    /var/lib/koha/<instance>/uploads_tmp.
    
    koha-create-dirs is patched to create the required directory with the
    right permissions.
    
    The docs get the new parameter documented.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 624870631ce374e90db2035545150eca95c72677
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Thu May 10 21:05:07 2018 +0200

    Bug 20404: Turn on ExtendedPatronAttributes by default for new installations
    
    Extended patron attributes are a very useful feature that should be
    more obvious. We should activate them by default for new installations.
    
    For testing:
    - Run the web isntaller on an empty database
    - Check that after installation ExtendedPatronAttributes is turned on
    
    Signed-off-by: Charles Farmer <charles.farmer at inLibro.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit c65526f4904d6070cd88b3e7cb56a7beaed18e20
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri May 11 16:25:13 2018 -0300

    Bug 19181: Do not screenshot
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

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

Summary of changes:
 Koha/UploadedFile.pm                               |    2 +-
 about.pl                                           |   10 +++++++
 debian/docs/koha-create.xml                        |    9 ++++++
 debian/scripts/koha-create                         |   29 +++++++++++++++++---
 debian/scripts/koha-create-dirs                    |    1 +
 debian/templates/koha-conf-site.xml.in             |    1 +
 etc/koha-conf.xml                                  |    1 +
 installer/data/mysql/sysprefs.sql                  |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |    8 ++++++
 .../Koha_Template_Plugin_KohaPlugins.t             |    0
 t/db_dependent/selenium/authentication.t           |    1 -
 11 files changed, 57 insertions(+), 7 deletions(-)
 rename t/{ => db_dependent}/Koha_Template_Plugin_KohaPlugins.t (100%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list