[koha-commits] main Koha release repository branch, 3.2.x, updated. v3.02.07-51-g8de471f

Git repo owner gitmaster at git.koha-community.org
Sat Apr 16 19:26:32 CEST 2011


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.2.x has been updated
       via  8de471fabfe56ccc4b63c2bf0c7d8909c874f883 (commit)
       via  ddbe3ac0eef9ea95d7b27661f3e1522aef619f28 (commit)
       via  5b268c7d8e9ccce89fb41fa737b7114decb67137 (commit)
       via  39ea4a86794c4ffb56870ee5d2a60335a563fbcb (commit)
       via  e9d0f2696e9a7d5b2e1ab86ffabe4af14450dfc4 (commit)
       via  1d9af3b9ed250cbd60df852eb90bf26ce5a3dd8b (commit)
       via  7ab229554b881feb5409137f8015aba30227cf4e (commit)
       via  033284b1a16fcc04a00844352e42c7e9b7e5a14e (commit)
       via  371435548660d115477dfe59497dd5ddf9c1d1b4 (commit)
       via  9e35f2c779881750464cf3f676fb6280a9a586bd (commit)
       via  6078357610cdad24725c54ad488656d95a57ef77 (commit)
       via  f98b76bfa84ce2f9d833a2f0fa5faa90cd5cd555 (commit)
       via  12d2b08413af33284d240ddc9d7425b0e7071d34 (commit)
       via  bd1c75cb03475e026d0246fa277fa6a110faafb6 (commit)
       via  f19e7bb5c99387a55516de8e29921df03200f1f9 (commit)
      from  e88a1ec4b8e00cde21935fa0378b9c5fb20f8bd9 (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 8de471fabfe56ccc4b63c2bf0c7d8909c874f883
Author: Chris Nighswonger <chris.nighswonger at gmail.com>
Date:   Sat Apr 16 13:23:52 2011 -0400

    Updating Version Number to 3.02.07.002

commit ddbe3ac0eef9ea95d7b27661f3e1522aef619f28
Author: Marcel de Rooy <M.de.Rooy at rijksmuseum.nl>
Date:   Wed Apr 6 11:35:37 2011 +0000

    5936: Remove some obsolete db columns from aqbooksellers and aqbudgets if needed
    
    Removes obsolete columns from aqbooksellers and aqbudgets if needed.
    aqbooksellers: deliverydays followupdays followupscancel invoicedisc nocalc
    specialty
    aqbudgets: budget_description
    
    These columns should not exist in a fresh install from kohastructure.sql, but
    originate from older 3.0 versions.
    One line in acqui/updatesupplier.pl referring to one of these columns is
    removed too.
    
    This patch therefore does not change functionality, but only keeps your db in
    shape.
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
    
    Rebased April 6.
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 5b268c7d8e9ccce89fb41fa737b7114decb67137
Author: Henri-Damien LAURENT <henridamien.laurent at biblibre.com>
Date:   Tue Apr 5 10:40:14 2011 +0200

    Bug 5923 : Authorities list :removing link on Summary
    
    removing the link to authority details on authority List directly from summary
    And adding a generic link to details
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 21404359d498865ea55beb745327763a819f81fe)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 39ea4a86794c4ffb56870ee5d2a60335a563fbcb
Author: Chris Cormack <chrisc at catalyst.net.nz>
Date:   Thu Apr 7 15:55:33 2011 +1200

    Removing conflict markers
    (cherry picked from commit c649ed9257d3c7f4d71f484d8ea6e2d5af2e48d7)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit e9d0f2696e9a7d5b2e1ab86ffabe4af14450dfc4
Author: Henri-Damien LAURENT <henridamien.laurent at biblibre.com>
Date:   Tue Apr 5 14:13:51 2011 +0200

    (Bug 4049) Searching itemtypes returning noise
    
    Fix the problem of searching on partial itemtypes strings
    for instance, itemtype="ARTICLE DE PERIODIQUE", itemtype="PERIODIQUE"
    searching on itemtype="PERIODIQUE" would also get "ARTICLE DE PERIODIQUE"
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 700de9664d0e9016845d12916905e458cab9dbd4)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 1d9af3b9ed250cbd60df852eb90bf26ce5a3dd8b
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Tue Apr 5 11:50:48 2011 +0200

    Bug 5213 - Suffix number sequence not resetting properly in hmyymmincr barcode autogen pattern
    
    Two things are happening.
    
    First, the SELECT does not account for a branchcode greater than 2 chars.
    
    This is fixed by just selecting the final four digits representing the
    incremental suffix from the barcode field.
    
    Second, the incremental suffix (4 digits) is not rolling back over to zero when
    reaching 9999.
    
    This pattern probably needs help. It should allow for cataloging of 10000 items
    per month as is. I would not recommend doing barcode numbering this way, but
    need to support it since it is in use in at least one library.
    
    This patch also impliments strict and warnings per Bug 2505
    
    Signed-off-by: Stéphane Delaune <stephane.delaune at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 8ca5d5ff85c429ee972b3f80f91f5b27a58cf5d5)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 7ab229554b881feb5409137f8015aba30227cf4e
Author: Paul Poulain <paul.poulain at biblibre.com>
Date:   Wed Apr 6 10:02:31 2011 +0200

    Bug 6077: qty not incremented for AcqCreateItem=recieve
    
    When you want to create items on order recieve, the qty was not incremented
    when the librarian adds an item with the +
    
    This was because the js was expecting the qty field to be id=quantity
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit d58092dd96383378f8abdce92d07c1795c617f97)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 033284b1a16fcc04a00844352e42c7e9b7e5a14e
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Apr 6 11:27:11 2011 +0200

    Fix for Bug 5156, JavaScript error when adding list
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 9bb36148fddd4cb249c83033c5d6c27bef0513a6)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 371435548660d115477dfe59497dd5ddf9c1d1b4
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Wed Apr 6 16:39:36 2011 +0200

    Bug 6028 : MT3815: Quickfix for CSV export (9999 rows limitation)
    
    Signed-off-by: Stéphane Delaune <stephane.delaune at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 3a8be8d8e0619e248ee02a851a0f21497d3490a7)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 9e35f2c779881750464cf3f676fb6280a9a586bd
Author: Koustubha Kale <kmkale at anantcorp.com>
Date:   Sat Apr 2 22:23:06 2011 +0530

    This patch fixes the broken pagination in members-search.pl
    
    Small patch to fix Error 404 which comes up when we click on pagination links after searching in Patron Card creator.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 332e701c258a126cbc90862c12249de7aaada710)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 6078357610cdad24725c54ad488656d95a57ef77
Author: Jared Camins-Esakov <jcamins at bywatersolutions.com>
Date:   Wed Apr 6 14:00:47 2011 -0400

    Bug 6100: request.pl should check maxreserves exists
    
    Adds a check to confirm that the maxreserves syspref actually has a value before
    using it. Also fixes an off-by-one error in the maxreserves calculation that
    would allow librarians to place maxreserves + 1 holds for patrons.
    
    Signed-off-by: Ian Walls <ian.walls at bywatersolutions.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 8b582d863debf1a60c69560b1cb797a9931bdcf8)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit f98b76bfa84ce2f9d833a2f0fa5faa90cd5cd555
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Apr 7 11:18:32 2011 +1200

    Bug 6032: Increase zebra biblio register stores
    
    This keeps the package versions of the zebra configuration in sync with
    the makefile-installed ones.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 0645f83c225c6b95e3b0c7b091b493481a35d3f2)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit 12d2b08413af33284d240ddc9d7425b0e7071d34
Author: Jared Camins-Esakov <jcamins at bywatersolutions.com>
Date:   Wed Apr 6 14:28:49 2011 -0400

    Bug 6032: Give biblio register and shadow sane default max sizes
    
    The out-of-the-box maximum size for the biblio register and shadow stores is
    4GB, which is much too small for even medium sized libraries. This makes the
    default maximum 20GB, which should be enough for even most large libraries.
    
    Signed-off-by: Ian Walls <ian.walls at bywatersolutions.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit 2b71959a88029d9b948e13ad2f1f863fad8c44d6)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit bd1c75cb03475e026d0246fa277fa6a110faafb6
Author: Frédéric Demians <f.demians at tamil.fr>
Date:   Wed Apr 6 10:14:29 2011 +0200

    Bug 4374 Improve biblio data entry form regarding hidden/mandatory fields
    
    Biblio framework has 3 entry points controlling if input box are
    displayed by default in data entry form:
    
      - 'mandatory' flag at field level
      - 'mandatory' flag at subfield level
      - 'hidden' flag at subfield level
    
    It doesn't work as it should (?):
    
      - All subfields are expanded (shown) if their field is mandatory
      - A subfield containing anything is always expanded whatever it contains
      - A mandatory subfield is always expanded
      - An hidden subfield isn't expanded.
    
    Default framework having 0 in all marc_subfield_structure.hidden, by default
    all subfields will be expanded.
    
    TO BE INTEGRATED IN RELEASE NOTES:
    
      Koha sysadmin should have to edit its frameworks to add hidden=1 in
      appropriate subfields.
    
    Signed-off-by: Stéphane Delaune <stephane.delaune at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    (cherry picked from commit cecdc193696c6c91560128da5954681aa7ce610f)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

commit f19e7bb5c99387a55516de8e29921df03200f1f9
Author: Chris Cormack <chrisc at catalyst.net.nz>
Date:   Thu Apr 7 13:16:26 2011 +1200

    Bug 6014 : Removing a leftover warn
    (cherry picked from commit 13ad14a7540dab8b27a21fb6cb00a6edc875040d)
    
    Signed-off-by: Chris Nighswonger <chris.nighswonger at gmail.com>

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

Summary of changes:
 C4/Log.pm                                          |    1 -
 C4/Reports/Guided.pm                               |    2 +-
 acqui/updatesupplier.pl                            |    2 +-
 catalogue/search.pl                                |    2 +-
 cataloguing/addbiblio.pl                           |   14 +++++++-------
 cataloguing/value_builder/barcode.pl               |   14 ++++++++------
 debian/templates/zebra-biblios-site.cfg.in         |    4 ++--
 etc/zebradb/marc_defs/marc21/biblios/record.abs    |    6 +++---
 etc/zebradb/marc_defs/unimarc/biblios/record.abs   |    7 ++++---
 etc/zebradb/zebra-biblios.cfg                      |    4 ++--
 installer/data/mysql/updatedatabase.pl             |   20 +++++++++++++++++++-
 .../prog/en/modules/acqui/orderreceive.tmpl        |   16 ++++++++--------
 .../en/modules/authorities/searchresultlist.tmpl   |    5 +++--
 .../prog/en/modules/virtualshelves/shelves.tmpl    |    2 +-
 .../opac-tmpl/prog/en/modules/opac-shelves.tmpl    |    2 +-
 kohaversion.pl                                     |    2 +-
 opac/opac-search.pl                                |    4 ++--
 patroncards/members-search.pl                      |    2 +-
 reserve/request.pl                                 |    2 +-
 19 files changed, 66 insertions(+), 45 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list