[koha-commits] main Koha release repository branch 3.12.x updated. v3.12.00-beta3-8-gcb9af9d

Git repo owner gitmaster at git.koha-community.org
Mon May 6 14:47:03 CEST 2013


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, 3.12.x has been updated
       via  cb9af9d0e667dcdebfdc89e77bdb8fdc2598493d (commit)
       via  e5d5129541625ce5cdb16a14089895b245ebe57d (commit)
       via  12b5aa1b6ff9c5b1b8e00b40cd54d7128782bcc4 (commit)
       via  ec4fb01127809af2eae4850e3d2da99b34e2b0cd (commit)
       via  e243f5e9e351d9b0621b59dc19ab4afc794a6e39 (commit)
       via  ff7dc4ec4a7e7034ccab5f31e3a7de7f686475ba (commit)
      from  7d37655afb3c22884eb3139940e2e7261c23da4d (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 cb9af9d0e667dcdebfdc89e77bdb8fdc2598493d
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Apr 11 12:48:26 2013 +0200

    Bug 8896 QA Followup for regex
    
    Making sure that the regex does not kill more than it should.
    Amended: does now only look at separating colons(;) not commas(,).
    Amended: two index expressions in direct context replaced by same regex for
    consistency.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit e5b467e81f494857a0831fe0d4f9ad94127a91bb)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit e5d5129541625ce5cdb16a14089895b245ebe57d
Author: Lyon3 Team <koha at univ-lyon3.fr>
Date:   Mon Apr 8 11:14:09 2013 +0200

    Bug 8896: Delete serials no more missing from missinglist
    
    When manual history is disabled in subscription history section
    if a serial has been previously set as missing and is received
    or set as expected, late or claimed, it will be deleted from missinglist
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Regex needs a followup. More comments on Bugzilla.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit ccc7f535cb585352b2e933c1e5694e1d6e06d38b)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 12b5aa1b6ff9c5b1b8e00b40cd54d7128782bcc4
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Mon May 6 08:35:00 2013 -0400

    Bug 10166: Increment holdable counter
    
    The $anyholdable variable was set to 0 or 1. However, as it is set in
    a loop, and future changes to the opac-reserve.pl script may require
    knowing how many items the patron is going to place a hold on, it makes
    more sense to treat $anyholdable as a counter. This follow up turns it
    into one.
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 5c9522382c83f078692051fa572c56b21b54fa77)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit ec4fb01127809af2eae4850e3d2da99b34e2b0cd
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed May 1 14:22:50 2013 -0400

    Bug 10166 - Can't place holds on multiple titles if one or more are un-holdable
    
    opac-reserve.pl tries to check whether all selected titles in a
    multiple-hold batch are unavailable to be placed on hold. However, the
    logic is flawed in such a way that if the last item in the batch cannot
    be placed on hold the script assumes none can be placed on hold.
    
    This patch modifies the way the script tracks the "no titles available
    for holds" variable in order to correct the error.
    
    To test, place multiple holds by selecting titles from a list of search
    results. Test three conditions:
    
    - All titles are available to be placed on hold
    
      You should see no onscreen warnings, and all titles should be
      selectable on the place hold screen. A "Place hold" button should
      appear at the bottom.
    
    - Some titles can be placed on hold, some cannot
    
      The titles which can be placed on hold should be selectable.
      Titles which cannot be placed on hold should show a warning
      message. A "Place hold" button should appear at the bottom.
    
    - No titles can be placed on hold
    
      "Sorry, none of these items can be placed on hold." should appear at
      the top of the page. All titles should appear with warning messages.
      There should be no "Place hold" button.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    All tests and QA script pass.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 8016d2bd0d2d45ee0777469d28d988f2794575fb)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit e243f5e9e351d9b0621b59dc19ab4afc794a6e39
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Fri May 3 14:37:46 2013 +0200

    Bug 10183: Remove single pixel on the serials collection page
    
    Test plan:
    Go on the serials collection page
    Check that the single pixels before and after the table have
    disappeared.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Pixels are removed, table functions work as before.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit d485dbe275a209816b82029924a4143a1d166949)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit ff7dc4ec4a7e7034ccab5f31e3a7de7f686475ba
Author: Karam Qubsi <karamqubsi at gmail.com>
Date:   Sat May 4 23:44:57 2013 +0300

    Bug 10176: Solve the Invalid URLs in 'Refine Search Results' when it uses UNICODE symbols
    
    I just add use utf8; to the Search.pm and the problem
    was solved .
    
    Test plan :
    1- Add bib records with non-latin characters
    2- search for some of these records
    3- try to refine your search using Subject / Author
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    Comment: Work fixing URLs in facets. Now they work correctly.
    No errors.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes all tests and QA script.
    
    I tested facets with the 22 Arabic records provided on
    bug 9579 successfully. Before the patch the links are not
    correct, after applying the patch the links work as
    expected.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 2d29440c5ade462bf6939f2ab32b5ec9c2c1b377)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

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

Summary of changes:
 C4/Search.pm                                       |    2 +-
 C4/Serials.pm                                      |   16 ++++++++--------
 .../prog/en/modules/serials/serials-collection.tt  |    1 +
 opac/opac-reserve.pl                               |   10 ++++------
 4 files changed, 14 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list