[koha-commits] main Koha release repository branch master updated. v17.11.00-722-gb7219cf

Git repo owner gitmaster at git.koha-community.org
Mon Feb 19 20:50:57 CET 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  b7219cf43c18f0690be84657b3cbc5dcd33ec6a4 (commit)
       via  e7d4c773be5cf1df275827270465f7f55b95ce02 (commit)
       via  c9a7b6742b970d1e605f84ff001f609ddda8eaa2 (commit)
      from  af1a8c5a78706a9d7d1cd8e4f75197189132d17c (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 b7219cf43c18f0690be84657b3cbc5dcd33ec6a4
Author: Pongtawat C <pongtawat at punsarn.asia>
Date:   Sun Jul 9 23:34:17 2017 +0700

    Bug 18913: Allow symbolic link in /etc/koha/sites
    
    This patch makes the koha-* scripts follow symbolic links when querying for
    Koha instances. Without it, it is not possible to define instances outside the
    /etc/koha/sites directory,
    
    To test:
    - Create a symlink in /etc/koha/sites:
      $ sudo ln -s /tmp /etc/koha/sites/test
    - Test the original is_instance function:
      $ . /usr/share/koha/bin/koha-functions.sh
      $ is_instance test && echo success || echo failure
    => FAIL: symlinks are not considered instance names (i.e. failure is printed)
    - Apply this patch
    - Update the koha-functions.sh file:
      $ perl misc4dev/cp_debian_files.pl
    - Test is_instance again:
      $ . /usr/share/koha/bin/koha-functions.sh
      $ is_instance test && echo success || echo failure
    => SUCCESS: symlinks are considered instance names (i.e. success is printed)
    - Sign off :-D
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit e7d4c773be5cf1df275827270465f7f55b95ce02
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Feb 19 16:16:57 2018 -0300

    Bug 19290: DBRev 17.12.00.018
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit c9a7b6742b970d1e605f84ff001f609ddda8eaa2
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Oct 11 19:06:17 2017 -0300

    Bug 19290: Browse selected bibliographic records - Staff interface
    
    This patch adds the same feature as bug 10858 for the OPAC interface:
    after a search, librarians will be able to browse selected results.
    The results can be selected from several pages.
    By extension it is possible to add results from several pages to a list
    or the cart.
    
    When at least one result is selected, a new "Browse selected records" button
    becomes usable and change the behaviour of the existing browser.
    
    The whole feature can be turned off with the pref BrowseResultSelection.
    
    Test plan:
    - Launch a search (on the staff interface)
    - Check some biblios
    - Go on another page
    - Check some biblios
    - Come back to a page you already check results and confirm that they are
    still checked
    - Click on the "Browse selected records" button
    - Check that you are able to browse results you had checked.
    
    You can also:
    - add them to the cart
    - add them to a list
    
    QA note: the browsers at the OPAC and the one at the staff interface are completely different
    That's why the code is not mimicking what has been done on bug 10858.
    The behaviour must stay the same anyway.
    
    Signed-off-by: Séverine QUEUNE <severine.queune at bulac.fr>
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

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

Summary of changes:
 Koha.pm                                            |    2 +-
 debian/scripts/koha-functions.sh                   |    4 +-
 installer/data/mysql/sysprefs.sql                  |    1 +
 installer/data/mysql/updatedatabase.pl             |   12 +++-
 koha-tmpl/intranet-tmpl/js/browser.js              |    2 +-
 .../intranet-tmpl/prog/en/includes/js_includes.inc |    1 +
 .../prog/en/includes/page-numbers.inc              |   10 +--
 .../en/modules/admin/preferences/searching.pref    |    7 ++
 .../prog/en/modules/catalogue/detail.tt            |    3 +-
 .../prog/en/modules/catalogue/results.tt           |   62 +++++++++++++++--
 koha-tmpl/intranet-tmpl/prog/js/basket.js          |   48 +++++++++----
 koha-tmpl/intranet-tmpl/prog/js/cart.js            |    2 +
 koha-tmpl/intranet-tmpl/prog/js/commons.js         |   73 ++++++++++++++++++++
 13 files changed, 195 insertions(+), 32 deletions(-)
 create mode 100644 koha-tmpl/intranet-tmpl/prog/js/commons.js


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list