[koha-commits] main Koha release repository branch 3.12.x updated. v3.12.04-76-g2d80d67

Git repo owner gitmaster at git.koha-community.org
Fri Sep 13 20:34:07 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  2d80d67e75ac37016f982afcbc643159ccde1e1e (commit)
       via  4afc06d76a39cff5471ae3e364357019334259f4 (commit)
       via  9a8d1a9b534a076087cb3463adeb83a60fe01d52 (commit)
       via  f01248ae55beffae61f7fed36cbe046b65b96116 (commit)
       via  84873c2a6b62fce594bdd8c954ed2d6880903dfb (commit)
      from  bf84bf5b55c8d378f8abc4fa0f82a804c2d933df (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 2d80d67e75ac37016f982afcbc643159ccde1e1e
Author: David Cook <dcook at prosentient.com.au>
Date:   Wed Aug 21 12:12:36 2013 +1000

    Bug 9603 - Fix layout of Patron Card Creator Layout screen for display in IE
    
    Currently, the layout for the Edit/Add Layout screen of the Patron
    Card Creator is in complete disarray, when viewed in Internet Explorer
    (of any version).
    
    The nav bar is pushed to the bottom of the page, every fieldset is
    empty (as their contents have been pushed out into different parts
    of the page), and the checkboxes don't work.
    
    The cause appears to be some extraneous mark-up (a few extra fieldset
    and li elements)and some missing mark-up (ol elements to wrap the list
    elements, especially when nesting lists within each other and within
    div elements).
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    I didn't test this in IE, but changes are fixing general
    problems with HTML validity.
    
    Checking the page with the W3C validator:
    Before: 27 Errors, 7 warning(s)
    After:  6 Errors, 7 warning(s)
    
    All tests and QA script pass, page looks alright.
    Would be nice to see the remaining problems fixed in
    a follow-up.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 76a1a00977657132180f0715d96db5702565f1bf)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 4afc06d76a39cff5471ae3e364357019334259f4
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Mon Jul 15 12:14:53 2013 +0200

    Bug 10588: improve selection of default branch for OPAC popular items pag
    
    In OPAC most popular items page:
    With user is logged-in his branch should be selected by default.
    When a branch is manually selected and form is submitted, this branch
    should be selected in results page.
    When looking at HTML, you see that all options are selected in combobox.
    
    This patch corrects by using the hidden input 'do_it' to distinguish
    form display and no branch filter selected.
    
    Test plan :
    - Make sure there are issues on records created in the past 3 month
    - Go to OPAC not logged-in
    - Click on "Most popular"
    => You get to page with results, "All libraries" is selected
    - Select a branch and submit
    => You get to page with results, the branch is selected [testing opac-topissues.inc from]
    - Select a branch and perform a search that does not have results (for example an item type never issued)
    => You get to page without results, the branch is selected [testing opac-topissues.tt form]
    - Log-in with a user
    - Click on "Most popular"
    => You get to page with results, user's branch is selected
    - Select "All libraries" and submit
    => You get to page with results, "All libraries" is selected [testing opac-topissues.inc from]
    - Select "All libraries" and perform a search that does not have results (for example an item type never issued)
    => You get to page without results, "All libraries" is selected [testing opac-topissues.tt form]
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works nicely and passes all tests.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 600e953dff44c29fe7a2996fbacbd8e57cd7eb35)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9a8d1a9b534a076087cb3463adeb83a60fe01d52
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Tue Aug 27 12:04:14 2013 +0200

    Bug 10786: fix Javascript error on the parcel page
    
    The include of the yui json file generates a js error: YAHOO is not
    defined.
    
    This file seems not to be in use (patches for bug 8382 remove the use).
    
    To test:
    - go on acqui/parcel.pl?invoiceid=XXX
    - verify the error occurs (with firebug)
    - apply this patch
    - refresh the page
    - verify this error does not appear anymore
    - Verify there is no regression on this page
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Patch fixes the javascript error pointed out by Firebug.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit d1f8d8811b1d2d96f1b087edf42f395c89c8df0f)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit f01248ae55beffae61f7fed36cbe046b65b96116
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Jun 27 15:33:46 2013 +0200

    Bug 5904: make patron search autocompletion respect IndependentBranches
    
    Test plan:
    - Add a staff user foo in a library A
    - Add a staff user bar in a library B
    - log in as foo and try to search 'bar'
    - Switch on (Prevent) the syspref IndependentBranches
    - the search returns no result
    - log in as a superlibrarian
    - Check that you are allowed to search all patrons.
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.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 6b72f249082fc6be8811c3dacec15648f7c5ccd9)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 84873c2a6b62fce594bdd8c954ed2d6880903dfb
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Wed Aug 28 16:27:43 2013 +0000

    Bug 7143: history.txt and about page updates
    
    - two new developers
    - releases
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Reads all ok.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit dd367efddf887e3197492f11996a36c0d6c5e4c4)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 circ/ysearch.pl                                    |   26 +++++++---
 docs/history.txt                                   |   48 ++++++++++++-------
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |    4 +-
 .../intranet-tmpl/prog/en/modules/acqui/parcel.tt  |    1 -
 .../prog/en/modules/patroncards/edit-layout.tt     |   32 +++++++++++--
 .../opac-tmpl/prog/en/includes/opac-topissues.inc  |    2 +-
 opac/opac-topissues.pl                             |    6 ++-
 7 files changed, 85 insertions(+), 34 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list