[koha-commits] main Koha release repository branch 3.12.x updated. v3.12.01-38-g54135a4

Git repo owner gitmaster at git.koha-community.org
Sun Jul 7 01:56:17 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  54135a4b22242ba306e496f6f7ba154e4e1289ab (commit)
       via  76a126ee3d169912a92a54d5982bb345679c795c (commit)
       via  3446a86f80313316c5f939e10b983c8703095030 (commit)
       via  32de75b948944debe41380293c58cfe02bcbcc2d (commit)
       via  f35ab0a9c1702c4d7bb62362341a1f83d2d22f92 (commit)
       via  becd60e9c3305efb216c8cc559cf8adac4ed0a1b (commit)
       via  6643a41c97b3a9b4129f0dd7d1fa854f2f93fb14 (commit)
       via  cc9b3522b192b8510a4846cd7a4b3aca3e8a0a07 (commit)
       via  98132b8e5c295d99a5d4550398f6b7ae1e804ed6 (commit)
       via  518a0186f3622aa5a0e9714d3f8c71bc82dd3411 (commit)
       via  69a8048eeecacff99b64fa722fa8850891476031 (commit)
       via  f680ae1d4a5af747e2dc410cb4cc97dd06ba0693 (commit)
       via  ce3c8eeb47e6ba052c09cfd590c0e9b83209881f (commit)
       via  d525d414538709ddf8feb4da6db3dee6c9ae9ff0 (commit)
      from  a2e89edf43b2946da0986a5c83b04a60dea04061 (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 54135a4b22242ba306e496f6f7ba154e4e1289ab
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Mon Jul 1 13:37:39 2013 +0200

    Bug 10488: Followup replacing DELETEs by more restricted INSERTs
    
    Instead of inserting followed by deleting, this patch combines the two where
    clauses of both sql statements, meanwhile leaving the separation intact.
    
    As suggested by Galen, removed all 162's from the non-default types.
    The 162 calls for a new authority type. We can add that later on.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Ran this .sql script after deleting all auth records.
    The former version had 9 types, 1148 tags and 11621 subfields.
    This one has 9 types, 1140 tags and 11597 subfields.
    That is expected: 8 tags 162 less and 8x3 subfields less.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 14babcecf681874e4a75eff0a5ba2d869f1966bf)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 76a126ee3d169912a92a54d5982bb345679c795c
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Wed Jun 26 22:27:14 2013 -0300

    Bug 10488 - New MARC21 authority tags and subfields should be propagated to non-default frameworks
    
    As proposed by the report creator, this patch
    rewites authorities_normal_marc21.sql
    using default authority framework to build all
    current authtypes, then deleting irrelevant tags.
    
    It also updates default authority framework
    to last update (April 2013) adding new or
    updated tags/subtags.
    
    All new tags/subtags from Bug 9826 and this
    one are included in all authtypes.
    
    Deleted tags reflect current situation except
    for 7XX tags thatl must be present for all authtypes.
    
    Only for new installs
    
    To test:
    1) Apply patch
    2) Delete all authtypes
    exec in database
        delete from auth_types;
        delete from auth_tag_structure;
        delete from auth_subfield_structure;
    3) Insert new auth framework
    4) Verify absent tags. This can be done running
    
        select tagfield as from auth_tag_structure
        where authtypecode ='' and tagfield not in
        (select tagfield from auth_tag_structure
        where authtypecode = 'AUTH_TYPE')
    
    for each authtype ( UNIF_TITLE, TOPIC_TERM, etc.)
    The attached PDF could be used as a reference,
    all that is white or green for each authtype must be
    in the list (except for white 7XX tags)
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 61103a1f82dc0efd98a4629b0c650fa020ba73c8)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 3446a86f80313316c5f939e10b983c8703095030
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu May 23 16:42:38 2013 +0200

    Bug 10317: improve display when order receiving page is given an invalid invoiceid
    
    This patch fixes some things on the order receiving/parcel page.
    
    1/ Removes dead code
    2/ Displays an error message if invoiceid is unset or does not refer to an
    invoice
    3/ Fixes a bug in the note ("change note" and "add note" links)
    
    Test plan:
    1/ Try to call the invoice page with an existing invoiceid and check
    that order results are consistent.
    2/ Try without invoiceid or a bad invoiceid and check that an error
    message is displayed.
    3/ Add and change notes.
    
    Signed-off-by: Cedric Vita <cedric.vita at dracenie.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works nicely for all tests done.
    - parcel.pl with invalid invoicenumber gives a nice error message
    - parcel.pl with a valid invoicenumber looks normal
    - changing and editing order notes works well
    
    Passes QA script.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit d932f6ff250c3a50db379b23abfc40a77620e94b)
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 32de75b948944debe41380293c58cfe02bcbcc2d
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Jun 16 09:09:33 2013 +0200

    Bug 10474: Translate some English strings in German sample notices
    
    This translates 2 strings missed doing the initial translation in
    ISSUESLIP.
    
    To test:
    - Run the web installer in German.
    Altnernatively:
    - Truncate your letters table and run the SQL against the database.
    
    Check that the notices were added correctly, especially ISSUESLIP.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit aecb163f69b238314bbd67215ce2d8950aeab060)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit f35ab0a9c1702c4d7bb62362341a1f83d2d22f92
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Jun 24 14:40:36 2013 -0300

    Bug 10431 - Redundant mappings removed
    
    There were 5 redundant mappings left in the file. They are removed.
    Its almost a QA followup as everything went fine anyway.
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 82e1b227943393c33dbec903a7287c49b593424c)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit becd60e9c3305efb216c8cc559cf8adac4ed0a1b
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Jun 11 10:46:36 2013 -0300

    Bug 10431 - Spanish Zebra character sorting file
    
    This patch provides a definition file for Spanish (es) character
    sorting in Zebra. It is based on the ideas from Hugo Agud <hagud at orex.es>
    and Pablo Bianchi <pablo.bianchi at gmail.com>.
    
    Makefile.PL is fixed to notice the existence of the 'es' language. The
    docs for koha-create are touched too.
    
    To test:
    Tarball
    =======
    - Go through the install process, choosing 'es' for the Zebra's language step
    - Koha should work as usual.
    - Running this should show the lang definition is properly set.
    $ grep -R "lang_defs/es" /etc/koha/*
    (stuff like zebradb/zebra-biblios-dom.cfg:profilePath:...etc/koha/zebra/lang_defs/es... should show)
    - This file should be present:
     /etc/koha/zebradb/lang_defs/es/sort-string-utf.chr
    
    Packages
    ========
    - Build your own package, it shouldn't break the packaging
    - Try the new package, using koha-create to set an instance using --lang 'es'
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 343c93ea4358d7b78dec25dfbcca525eabbfa6bf)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 6643a41c97b3a9b4129f0dd7d1fa854f2f93fb14
Author: Magnus Enger <magnus at enger.priv.no>
Date:   Tue Jun 25 08:39:23 2013 +0200

    Bug 10379 - Followup: add koha-rebuild-zebra -q to the man page
    
    The first patch on this bug forgot to add the new -q option to
    koha-rebuild-zebra to the man page for that command. This patch
    fixes it.
    
    To test, run something like these commands:
    
    $ xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl \
      debian/docs/koha-rebuild-zebra.xml
    $ man -l koha-rebuild-zebra.8
    This should display the man page. (Remember to remove koha-rebuild-zebra.8
    when you are done :-)
    
    $ prove xt/verify-debian-docbook.t
    All tests should pass.
    
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 114ad0015b209404b30289397646cb2f21d4aa54)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit cc9b3522b192b8510a4846cd7a4b3aca3e8a0a07
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu May 30 16:12:13 2013 +1200

    Bug 10379: silence zebra rebuild cron when no instances are enabled
    
    This adds a -q option to koha-rebuild-zebra that prevents it outputting
    help if no instances are provided on the command line. This means that
    if you've just installed the package, you won't get messages from cron
    telling you how to use the script.
    
    Test plan:
    * install koha-common 3.12 or master onto a system with no enabled
      instances.
    * note that you or the sysadmin will start getting emails every 5
      minutes.
    * replace /etc/cron.d/koha-common and /usr/sbin/koha-rebuild-zebra with
      the versions from this patch.
    * note that the emails stop flowing.
    
    Signed-off-by: Magnus Enger <magnus at enger.priv.no>
    "sudo koha-rebuild-zebra -q" gives no output, as expected.
    Followed the test plan, all looks good.
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit c31e553a72d40bf0b1c099284ecbb4b95833e186)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 98132b8e5c295d99a5d4550398f6b7ae1e804ed6
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon May 27 12:17:15 2013 -0300

    Bug 9890: fix plugin handling by koha-create and koha-create-dirs
    
    1) koha-create: fill in __PLUGINS_DIR__
    2) koha-create-dirs: create the directory, set permissions (writeable by the koha user)
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 061eb659267925388d1902987efaf275e536f953)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 518a0186f3622aa5a0e9714d3f8c71bc82dd3411
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Thu Mar 14 18:37:05 2013 -0300

    Bug 9826 - Missing fields in MARC21 authority framework
    
    This patch updates MARC21 authority framework adding
    missing tags/subtags up to Update No. 15 (September 2012)
    
    Missing tags and corresponding subtags only added to
    default authority framework.
    
    For present authtypes only missing subtags are added.
    
    Also updates a few legends to match those from LOC.
    
    No deletions except for a few not relevant tags in
    present authtypes without subfields.
    
    Only to new installs.
    
    To test:
    1) Delete present authority frameworks
    2) Load new frameworks. On default there are
    many new tags/subtags. On present authtypes
    only a few new/renamed subtags.
    
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 12874c4cf71c199cc2d383cf26bdcca89220b6bf)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 69a8048eeecacff99b64fa722fa8850891476031
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Feb 19 11:41:59 2013 -0500

    Bug 9541: make OPAC login page respect OPAC_CSS_OVERRIDE
    
    When clicking the login link for opac-user.pl in a multiple branch
    scenario the environment variable for OPAC_CSS_OVERRIDE was ignored from
    the koha-conf.xml file.  It seems like is is working on every page in
    the opac except for the login page.
    
    Test Plan:
    1) Set up a Koha server with 2 separate catalog configurations
       ( e.g. opac1.kohatest, opac2.kohatest )
    2) Set the OPAC_CSS_OVERRIDE directive for separate css files
       in each opac
    3) Browse to the opac login page, note the css is not applied
    4) Apply this patch
    5) Reload the page, note the css is now applied
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 71b79d59908cd85130afd8600eff0f93fc79b8a9)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit f680ae1d4a5af747e2dc410cb4cc97dd06ba0693
Author: Chris Cormack <chrisc at catalyst.net.nz>
Date:   Thu Jun 13 20:36:36 2013 +1200

    Bug 9665: QA follow up fixing tabs
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 0e0403372e608dc04d12ce5800a997dd3059e3df)

commit ce3c8eeb47e6ba052c09cfd590c0e9b83209881f
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri May 31 11:03:56 2013 -0400

    Bug 9665: add RIS and BIBTEXT bibliographic record export to staff interface
    
    The OPAC offers RIS and BIBTEX as choices for bibliographic downloads,
    but the staff client was missing these options. This patch adds them.
    
    To test, view a record in the staff client (detail.pl, MARCdetail.pl,
    etc.) and click the "Save..." toolbar button. BIBTEX and RIS should be
    available and functional.
    
    Signed-off-by: David Cook <dcook at prosentient.com.au>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit 4b9a6d803f7ad11a4e077140820bfeda0d4d196a)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Nice fix, works as expected.

commit d525d414538709ddf8feb4da6db3dee6c9ae9ff0
Author: Sophie Meynieux <sophie.meynieux at biblibre.com>
Date:   Mon Jun 10 15:32:57 2013 +0200

    Bug 10396: remove unnecessary date-picker widgets from Catalog statistics form
    
    In particular, removed it from the call number and publication year
    input fields.
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    (cherry picked from commit d7bfba8a106fbb00331e16dbc0943226bad24668)
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Works as expected, simple patch

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

Summary of changes:
 C4/Auth.pm                                         |    1 +
 Makefile.PL                                        |    2 +-
 acqui/parcel.pl                                    |   31 +-
 catalogue/export.pl                                |   72 +-
 debian/docs/koha-rebuild-zebra.xml                 |    8 +-
 debian/koha-common.cron.d                          |    2 +-
 debian/scripts/koha-create                         |    3 +-
 debian/scripts/koha-create-dirs                    |    1 +
 debian/scripts/koha-rebuild-zebra                  |   16 +-
 etc/zebradb/lang_defs/es/sort-string-utf.chr       |   42 +
 .../data/mysql/de-DE/mandatory/sample_notices.sql  |    4 +-
 .../marc21/mandatory/authorities_normal_marc21.sql | 8002 ++------------------
 .../intranet-tmpl/prog/en/includes/cat-toolbar.inc |    9 +-
 .../intranet-tmpl/prog/en/modules/acqui/parcel.tt  |   27 +-
 .../prog/en/modules/reports/catalogue_stats.tt     |    4 +-
 15 files changed, 767 insertions(+), 7457 deletions(-)
 create mode 100644 etc/zebradb/lang_defs/es/sort-string-utf.chr


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list