[koha-commits] main Koha release repository branch master updated. v3.14.00-756-gafc9549

Git repo owner gitmaster at git.koha-community.org
Fri Apr 18 17:26:59 CEST 2014


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  afc9549a6f58ddf36cf6d9a5399239385c377c90 (commit)
       via  064d5478d31b05442e19b7d57f0af94d3422731e (commit)
       via  79660377470e8d6ba9057eb59645886410852c92 (commit)
       via  0eff486041de1b37db73f21a4771593c4993990e (commit)
       via  fcc43dfd250bcdfd4343250ed29900d5ba0843a7 (commit)
      from  b1e09cb0fa900964200f224cad771d95062bc48d (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 afc9549a6f58ddf36cf6d9a5399239385c377c90
Author: Frédérick <frederick.capovilla at libeo.com>
Date:   Tue Mar 18 16:11:44 2014 -0400

    Bug 11955: Remove spaces in empty indicators when linking an authority to a biblio record.
    
    This patch removes spaces in indicators which are imported when we link an
    authority to a biblio record. The spaces made the indicators harder to edit
    after the linking, because we had to delete the superfluous space character
    before a new value could be entered.
    
    To test:
    1. Open some authority on editor, save with empty indicators.
       They are saved as ind1=" " ind2=" " on auth_header tables, with spaces
    2. Edit some record, link some tag with previous auth,
       indicators now have a space on it (or ind1 at last)
    3. Apply the patch
    4. repeat 2, space is gone
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Work as described. No koha-qa errors.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 064d5478d31b05442e19b7d57f0af94d3422731e
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Apr 11 10:54:57 2014 +0200

    Bug 12071: improve generation of Z39.50 search links
    
    This patch fixes two problems with the generation of
    links to execute a Z39.50 search from the staff client
    catalog and cataloguing search results page.
    
    First, if using URI::Escape 3.30 or earlier, performing a simple search
    with a double quote (e.g., "histoire algerie"), the Javascript is broken
    in results page because of :
    
    function GetZ3950Terms(){
      var strQuery="&frameworkcode=";
      strQuery += "&" + "title" + "=" + ""histoire%20algerie"";
    
    Second, the encoding of non-ASCII characters in the search
    term was broken.
    
    This patch moves URI escaping from Perl to template with uri TT filter.
    
    Test plan :
    - To reproduce the issue with double quotes, the server
      must be running URI::Escape 3.30 or earlier; the current
      version of URI::Escape properly escapes double quote.
    - In staff interface, perform a search with double quotes
      that will return no result, ie "aaa xxx"
    => Without patch, javascript is broken
    => With patch, javascript is not broken
    - Click on Z3950 button on results page
    => Without patch, the Title input is empty
    => With patch, the Title input contains the search terms
    
    Additional test:
    Do a search with something like äöü and then click Z3950
    button on results page.
    Without patch, encoding is broken in Z3950 form
    With patch, encoding is correct.
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Fixed a few tabs. Passes tests and QA script.
    I can't reproduce the Javascript problem, but I can reproduce
    the Z39.50 encoding problem and can detect no regression.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 79660377470e8d6ba9057eb59645886410852c92
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Nov 15 08:29:23 2013 -0800

    Bug 11258: fix another case where holds queue made transfer requests that contradict the library holds policy
    
    This patch fixes a problem where the holds queue generator
    was making requests where the pickup library is the
    same as the item's library but not the patron's branch,
    even if there is a "Default holds policy by item type" rule that states
    this item can only fill holds for patrons of the same library as the
    item.
    
    Test Plan:
    1) Create a test record with 2 items with different itemtypes
    2) Set the Default holds policy by item type for the first
       item to "From any library"
    3) Set the Default holds policy by item type for the second
       item to "From home library"
    4) Place a record level hold for a patron from another library,
       but for pickup at the same library as the item is from
    5) Rebuild the holds queue
    6) View the holds queue, note the item is listed, though this
       patron cannot place a hold on this item
    7) Apply this patch
    8) Repeat step 5, note the hold is no longer in the queue
    
    Signed-off-by: Liz Rea <liz at catalyst.net.nz>
    automated tests pass, functional tests pass. Bug replicated, eradicated by patch.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    I finally managed to reproduce this, patch works as described.
    Passes tests and QA script, provided tests fail without patch, but
    succeed with the patch.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 0eff486041de1b37db73f21a4771593c4993990e
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Fri Apr 18 14:48:30 2014 +0000

    Bug 11869: (follow-up) only display active fines
    
    This patch modifies the patron summary printout so that
    only fines with an outstanding balance (either positive
    or negative) are displayed.  Also, the entire fines section
    is displayed only if there is a non-zero balance.
    
    This is consistent with the logic for displaying the loans
    and hold requests tables, and avoids cluttering the summary
    with historical fines.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit fcc43dfd250bcdfd4343250ed29900d5ba0843a7
Author: Frédérick <frederick.capovilla at libeo.com>
Date:   Thu Feb 27 15:54:01 2014 -0500

    Bug 11869: Add more informations to the patron account printing page
    
    This patch adds additional informations to the "Print summary"
    and the "Print receipt" templates.
    
    Additional information in "Print summary":
    * Registration date
    * Expiration date
    * Library
    * Category
    * Fines and payments
    
    TEST PLAN
    ---------
    1) Go to a patron.
    2) Make sure they have something checked out.
    3) Manually add a fine.
    4) Under the 'Print' button click 'Print summary'
       -- the resulting preview should:
       a) have the first for things listed above, and
       b) have a new fines and payments section.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    NOTE: The due date of the check out is not part of this patch,
          and so I signed off. Similarly, anything required for
          slips is configurable elsewhere now and thus comment 1
          does not accurately reflect the intent of this patch.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    This works as described and passes all tests and the QA script.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/HoldsQueue.pm                                   |    4 +--
 C4/Search.pm                                       |    8 ++---
 authorities/blinddetail-biblio-search.pl           |    4 +++
 .../intranet-tmpl/prog/en/includes/cat-toolbar.inc |    2 +-
 .../prog/en/modules/catalogue/results.tt           |    2 +-
 .../prog/en/modules/cataloguing/addbooks.tt        |    2 +-
 .../prog/en/modules/members/moremember-print.tt    |   36 ++++++++++++++++++++
 members/moremember.pl                              |   13 +++++++
 t/db_dependent/HoldsQueue.t                        |    7 ++--
 9 files changed, 66 insertions(+), 12 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list