[koha-commits] main Koha release repository branch 3.10.x updated. v3.10.09-10-ge94b493

Git repo owner gitmaster at git.koha-community.org
Sat Aug 3 20:00:23 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.10.x has been updated
       via  e94b493fc7f6217a92d91f78ce6849d73fd8c6e8 (commit)
       via  d1844855efba1b4121dac160d130cdb7d7720c13 (commit)
       via  3390a6efc74714f6ebd577d06f344acbff001357 (commit)
       via  bd199ff98c8c34bd6587f12bc3a844827ed07aa9 (commit)
       via  7270732d320825288193e9514d50c67e913b7914 (commit)
      from  452d6eed5880eb40bbee79c9f0938fbbd1fb3d26 (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 e94b493fc7f6217a92d91f78ce6849d73fd8c6e8
Author: Marc Veron <veron at veron.ch>
Date:   Fri Jun 14 16:37:23 2013 +0200

    Bug 5894: Display all titles when confirming copy of items from cart to list
    
    Adds missing code that splits biblios before calling template.
    
    To test:
    - Add some items to cart
    - Open cart, select some or all items
    - Add to list; with patch, following window shold show something
      like "Add 3 items to a list:", followed by list of items
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Passes koha-qa.pl, works as advertised.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit bed99a851646fd0c7a4c906dd9dfe60c485b40c6)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 7c92496cf7f7ee1016b934a8e01e995b680f9761)
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    (cherry picked from commit 7c92496cf7f7ee1016b934a8e01e995b680f9761)

commit d1844855efba1b4121dac160d130cdb7d7720c13
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jun 5 14:03:51 2013 -0400

    Bug 10346 - "Add multiple copies" should be labelled "Add multiple items"
    
    The Koha interface standardizes on the term "item" instead of "copy," so
    the "Add multiple copies" button would be more correctly labeled "Add
    multiple items."
    
    To test, view the add item screen for an existing or new record. You
    should see a button labeled "Add multiple items."
    
    Signed-off-by: Cedric Vita <cedric.vita at dracenie.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 79df5211d6faff8ab31b46c815ed50c70093a057)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 7000aa561c7fb33c422f9b60c4f7590a6071ee08)
    
    Solved Conflicts:
    	koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    (cherry picked from commit 7000aa561c7fb33c422f9b60c4f7590a6071ee08)

commit 3390a6efc74714f6ebd577d06f344acbff001357
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Fri Jun 7 10:17:54 2013 +0200

    Bug 10428: undefined check in add additem.pl
    
    In additem.pl, in the code that generates item form you find:
    
    @values = $itemrecord->field($tag)->subfield($subtag) if ($itemrecord && defined($itemrecord->field($tag)->subfield($subtag)));
    
    This patch adds the check of $itemrecord->field($tag) undef.
    I did not found a way to test it because item tag is always defined
    when editing an item, but it would be safer/prettier to add this check.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Passed-QA-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit e31b158245f4eff36decebf30c8a87c8cfebe472)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 54d414ee2d16a2969c91e5a83cb8c66858fed03c)
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    (cherry picked from commit 54d414ee2d16a2969c91e5a83cb8c66858fed03c)

commit bd199ff98c8c34bd6587f12bc3a844827ed07aa9
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Thu Apr 11 16:46:23 2013 +0200

    Bug 10029 - CAS authentication fails in OPAC reserve
    
    If OPAC reserve page is accessed without being logged-in, login form is displayed as well as a CAS authentication link (if enabled). A click on this link will lead to CAS server but one comming back to Koha, page shows an error : "ERROR: No biblionumber received".
    This is because CAS link only contains the query path "/cgi-bin/koha/opac-reserve.pl", not the query parameters.
    
    This patch adds query parameters to URI sent to CAS.
    
    Test plan :
    - Enable CAS
    - Go to opac without been logged-in
    - Try to place hold on a record
    => You get to /cgi-bin/koha/opac-reserve.pl?biblionumber=XXX showing authentication page
    => Check that CAS link contains query param "biblionumber"
    - Click on CAS link and log in
    => Check you return well logged-in to reserve page with biblionumber param
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    I have followed the test plan as far as I could and the links
    contain the biblionumber now, which they didn't before.
    I couldn't check the CAS login, but my normal login worked
    as expected.
    All tests and the QA script pass.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 974ab561ef00e76e7329f61b016b5d6b3103dde7)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 2dff5177f2d7c542175b28adf1832e201c0ae864)
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    (cherry picked from commit 2dff5177f2d7c542175b28adf1832e201c0ae864)

commit 7270732d320825288193e9514d50c67e913b7914
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jun 26 12:54:15 2013 -0400

    Bug 10510 - OPAC's renew selected link has glitchy icon
    
    The "renew selected" link on the list of a user's checkouts looks bad
    because the next icon in the sprite shows through. This patch modifies
    the sprite to give it proper spacing and corrects the CSS to accommodate
    the change.
    
    To test, apply the patch, clear your browser cache, and view the
    following pages to confirm that the change works:
    
    - With TagsEnabled and TagsInputOnList enabled, view a search results
      page when logged in and when not logged in. Tag links should be
      styled correctly.
    
    - With OpacBrowseResults enabled, open the detail page for any record
      and click the "browse shelf" link. The "forward" and "back" arrows
      should be styled correctly.
    
    - With OpacRenewalAllowed enabled, log in to the OPAC and view your
      checked out items. The "renew selected" and "renew all" links should
      look correct.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Note: this will fix only the prog theme, but not the ccsr theme.
    And it works perfectly.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 1a1658f020e482abdd35fc8afc04cfcbce91e046)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit d3636aee9fe920106b8b9ea84d058c357e1e2fcc)
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    (cherry picked from commit d3636aee9fe920106b8b9ea84d058c357e1e2fcc)

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

Summary of changes:
 C4/Auth_with_cas.pm                                |    4 +---
 cataloguing/additem.pl                             |    2 +-
 .../prog/en/modules/cataloguing/additem.tt         |    8 ++++----
 koha-tmpl/opac-tmpl/prog/en/css/opac.css           |   13 ++++++-------
 koha-tmpl/opac-tmpl/prog/images/sprite.png         |  Bin 8381 -> 3348 bytes
 opac/opac-addbybiblionumber.pl                     |    4 ++++
 6 files changed, 16 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list