[koha-commits] main Koha release repository branch master updated. v3.20.00-840-g55127d5

Git repo owner gitmaster at git.koha-community.org
Thu Oct 22 15:47:03 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  55127d50fb0a00f70d5de06dee76ddfad54bd094 (commit)
       via  77082713b3a25d46698494a4548ae47af2ea1603 (commit)
       via  452196ebbc49d9c73667249d03eedcc96be3ccfe (commit)
       via  a0d4e84a9d9a2e0a0a8ac078d6d41557c777efa2 (commit)
       via  9f460747f2ce4e1be5c4bacfe47996b8a1a37081 (commit)
       via  05d4c0e69b13a4d3500300bf027144979af813cd (commit)
       via  b1b8eaa091828f75991a45740afc66d9b1ffcd50 (commit)
       via  ad9c1733f8c7c7c38e02dc71c78d60e02260779f (commit)
       via  27a6b8c5919230ecf845f9f23a19a433df83ddec (commit)
       via  95811a29993cd7718e90e4fcb37344a61e000fe4 (commit)
      from  0e9e51db94abdabe6e603d98a05bf315c8d3fa91 (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 55127d50fb0a00f70d5de06dee76ddfad54bd094
Author: Magnus Enger <magnus at libriotech.no>
Date:   Wed Oct 21 13:11:28 2015 +0200

    Bug 15042: Barcode hbyymmincr does not work when receiving serials
    
    To test:
    - Set autoBarcode = <branchcode>yymm0001
    - Make sure you have a serial that is set to "create an item record
      when receiving this serial"
    - Receive an issue
    - Click in the barcode field - nothing happens
    - Apply patch and reload page
    - Receive an issue
    - Click in the barcode field - a barcode conforming to the
      hbyymmincr setting appears
    
    Patch works as advertised.
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 77082713b3a25d46698494a4548ae47af2ea1603
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Oct 22 10:34:13 2015 -0300

    Bug 12194: (RM followup) DBIx update
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 452196ebbc49d9c73667249d03eedcc96be3ccfe
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Oct 22 10:24:15 2015 -0300

    Bug 12194: DBRev 3.21.00.039
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit a0d4e84a9d9a2e0a0a8ac078d6d41557c777efa2
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Oct 22 08:58:06 2015 +0100

    Bug 12194: fix label for oblique_title
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 9f460747f2ce4e1be5c4bacfe47996b8a1a37081
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Thu Oct 22 08:57:40 2015 +0100

    Bug 12194: Add change to kohastructure.sql
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 05d4c0e69b13a4d3500300bf027144979af813cd
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Fri Jun 26 16:13:52 2015 -0300

    Bug 12194: Add option 'Oblique title' in labels
    
    This patch adds a checkbox on Label creator
    to use or not an oblique variant of main font
    for title
    
    Also fix font selection for title in case an
    oblique variant is used.
    
    To test:
    Before patch
    1) Go to Tools > Label creator
    2) Create a new layout, default values but select
    any 'Oblique' variant for main font and
    'Biblio/Barcode' for layout type
    3) Go to Manage batches, create a batch, add items,
    export PDF, download
    4) Check logs, you must find a line with
    'ERROR in koha-conf.xml -- missing <font type="COO">'
    for example if main font Courier-Oblique
    
    5) Open PDF, title could be right but not using selected font
    
    After patch
    6) Apply the patch
    7) Run updatedatabase.pl
    8) Repeat 1-2, note new checkbox 'Oblique title',
    default checked
    9) Repeat export, no new warnings on log
    10) Create a new layout or edit an existent one,
    uncheck 'Oblique title', save, export again
    Check PDF has non slanted title
    
    Followed test plan, works as expected. (See comment #11).
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit b1b8eaa091828f75991a45740afc66d9b1ffcd50
Author: Dobrica Pavlinusic <dpavlin at rot13.org>
Date:   Mon Jul 28 17:38:00 2014 +0200

    Bug 12194: add more tests for pdf creation
    
    When run with KEEP_PDF enviroment variable it will keep
    test.pdf for manual inspection. This can be used to verify
    that ttf font configuration is complete like:
    
    KEEP_PDF=1 KOHA_CONF=/etc/koha/sites/srvgit/koha-conf.xml prove t/Creators.t
    
    sample of utf-8 text, font name and type will be on bottom of second page
    
    Followed test plan, works as expected. (See comment#11)
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit ad9c1733f8c7c7c38e02dc71c78d60e02260779f
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Mon Oct 19 09:26:11 2015 -0400

    Bug 15027: Correct Type in C4::Items perldoc
    
    As noted in the bug report, there is a typo.
    This corrects that typo in documentation.
    
    TEST PLAN
    ---------
    1) perldoc C4::Items
    2) Find GetItemsForInventory
       -- note that status is spelt incorrectly.
    3) Apply patch
    4) repeat steps 1-2
       -- note that status is spelt correctly now.
    5) git diff origin/master
       -- note only that line changed.
    6) run koha qa tools
    
    Signed-off-by: Frederic Demians <f.demians at tamil.fr>
      This typo patch could hit the highway to master at high speeds.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Amended patch: add a comma at the end of the line
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 27a6b8c5919230ecf845f9f23a19a433df83ddec
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue May 6 11:32:02 2014 -0400

    Bug 12197: enforce the maxreserves preference when staff members place hold requests
    
    This patch ensures that the global maxreserves preference is enforced
    when staff members place hold requests.
    
    For example:
    
    Create 3 items to place holds on. Set the circulation rule to allow 50
    holds for all items. Set maxreserves to 2. Place a hold on 3 different
    items. On the third item, it will give a warning, but you can still
    place the hold. Despite what the circulation rule is set for (which is
    only a specific case rule), maxreserves is a global rule and
    should stop this from happening, not just give a warning.
    
    Test Plan:
    1) Reproduce the bug by following the steps above
    2) Verify the bug exists
    3) Apply this patch
    4) Verify the librarian cannot place the hold now
    5) Enable AllowHoldPolicyOverride
    6) Verify the librarian can forcefully place the hold
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    
    Bug 12197: (follow-up) rename variable for greater clarity
    
    "maxreserves" was referring both to the system preference and to the
    condition of having exceeded the number of hold requests allowed.
    
    This patch renames a variable to remove the ambguity.
    
    Test plan:
    
    * Same as the main patch.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 95811a29993cd7718e90e4fcb37344a61e000fe4
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Jul 2 05:29:06 2015 -0400

    Bug 11250: "too many holds" message appears inappropriately
    
    This patch gives the various reasons precedence in this order:
    1) Already in possesion
    2) Already on hold
    3) Age restricted
    4) No items available
    5) Too many holds
    
    Test Plan:
    1) Attempt to place a hold where both "too many holds" and "no items available" messages display
    2) Apply this patch
    3) Refresh
    4) Note only the "no items available" message displays
    
    Signed-off-by: Heather Braum <hbraum at nekls.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

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

Summary of changes:
 C4/Barcodes/ValueBuilder.pm                        |    3 +
 C4/Creators/Layout.pm                              |    2 +
 C4/Items.pm                                        |    2 +-
 C4/Labels/Label.pm                                 |   16 ++++-
 Koha.pm                                            |    2 +-
 Koha/Schema/Result/CreatorLayout.pm                |   12 +++-
 installer/data/mysql/kohastructure.sql             |    1 +
 installer/data/mysql/updatedatabase.pl             |    9 +++
 .../prog/en/modules/labels/label-edit-layout.tt    |   19 +++++-
 .../prog/en/modules/reserve/request.tt             |   35 +++++-----
 labels/label-create-pdf.pl                         |    3 +
 labels/label-edit-layout.pl                        |    2 +
 reserve/request.pl                                 |   71 +++++++++++++-------
 t/Creators.t                                       |   25 +++++--
 14 files changed, 149 insertions(+), 53 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list