[koha-commits] main Koha release repository branch 3.10.x updated. v3.10.04-7-g13fc140

Git repo owner gitmaster at git.koha-community.org
Fri Mar 29 07:34:49 CET 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  13fc140b83915791d53abab5a871423c54d24125 (commit)
       via  c23c392af27458bd48700efa6926e7cce4321a5a (commit)
       via  f5094791ac1681b8f0eaf6a5d138ce342d691c31 (commit)
       via  40776537453e27b6b99940c7b71b94cec9292bfe (commit)
       via  06286cb8ddfbddd17009a33313f453d1f58aa61d (commit)
       via  01a122dbdcf17bf7847c998757461afba5ea45d2 (commit)
      from  4427a17ffd4f90df484abe213120bd710468ed92 (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 13fc140b83915791d53abab5a871423c54d24125
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Fri Jan 18 14:32:06 2013 +0100

    Bug 9423: Add notforloan value to issue confirmation or blocking message
    
    When trying to checkout an item that is not for loan (due to
    items.notforloan value or because itemtype is not for loan), you get a
    confirmation or blocking message (depending on AllowNotForLoanOverride
    syspref).
    
    This message tells "Item is normally not for loan".
    
    This patch adds some informations :
    if itemtype is not for loan, tells "Item type is normally not for loan".
    if item is not for loan due to items.notforloan value, adds notforloan
    description to message.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Works as advertised: Not for loan authorized value is correctly shown.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit c23c392af27458bd48700efa6926e7cce4321a5a
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Thu Jan 17 11:42:53 2013 +0100

    Bug 9415: XML catalog export is missing root node
    
    When exporting some biblio or authorities records with tools/export.pl (via web client or command-line) :
    If choosing XML format, you get a concatenation of full XML records.
    
    This patch uses MARC::File::XML to create a well formated file.
    See http://search.cpan.org/~gmcharlt/MARC-XML-0.93/lib/MARC/File/XML.pm#close%28%29
    
    Test plan:
    - Go to Tools/Export data
    - Enter numbers in from and to biblio number
      (make sure that at least two records will
       be exported).
    - Select xml in file format
    - Click "Export bibliographic records"
    - Save file somewhere
    - Look at downloaded file
    => File should look like :
       <?xml version="1.0" encoding="UTF-8"?>
       <collection
       ...
    
       <record>
       ...
       </record>
    
       <record>
       ...
       </record>
    
       </collection>
    => "collection" is the root node and XML declaration exists only once
    - Do the same for authorities export and command-line use of tools/export.pl
    
    Second test plan:
    
    - From the command line, run tools/export.pl, e.g.,
    
      tools/export.pl  --format=xml --filename=bibs.xml
    
    - Verify that the output is valid XML, e.g.,
    
      xmllint --noout bibs.xml # if the file is valid, no error messages will be displayed
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit f5094791ac1681b8f0eaf6a5d138ce342d691c31
Author: Magnus Enger <magnus at enger.priv.no>
Date:   Tue Mar 19 10:45:33 2013 +0100

    Bug 9841 - Improve the link from the "logged in as mysql-user"-warning
    
    Currently, the link from the "logged in as mysql-user"-warning goes to
    add a patron in a seemingly random category code. This patch changes
    the link to point to Home > Patrons, where a category for the new
    patron can be chosen.
    
    A small typo in the warning message is also corrected.
    
    To test:
    - Apply the patch
    - Login as the MySQL user
    - Check that the warning appears on the intranet home page
    - Check that the typo in the first line is fixed: "This *is* a bad idea"
    - Check that the link in the warning leads to Home > Patrons
    
    Signed-off-by: Brendan <brendan at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    All happy with this.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 40776537453e27b6b99940c7b71b94cec9292bfe
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Wed Feb 27 17:52:02 2013 +0000

    Bug 9727: Fix typo in variable name
    
    Variable is passed as recordtype not record_type
    correct name
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    before applying the patch
    $ perl -wc Koha/SearchEngine/Solr/Index.pm
    Global symbol "$record_type" requires explicit package name at Koha/SearchEngine/Solr/Index.pm line 43.
    Koha/SearchEngine/Solr/Index.pm had compilation errors.
    
    after
    Koha/SearchEngine/Solr/Index.pm syntax OK
    
    Signed-off-by: Dobrica Pavlinusic <dpavlin at rot13.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    I can't really test this with solr, but as various people
    at the hackfest have confirmed this to be fixing the problem
    I feel save to pass QA. All tests and QA script pass too.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 06286cb8ddfbddd17009a33313f453d1f58aa61d
Author: Chris Cormack <chris at bigballofwax.co.nz>
Date:   Fri Mar 29 19:08:43 2013 +1300

    Bumping the version number

commit 01a122dbdcf17bf7847c998757461afba5ea45d2
Author: Vitor FERNANDES <vfernandes at keep.pt>
Date:   Mon Feb 18 10:42:10 2013 +0000

    Bug 9341: Problem with UNIMARC authors facets
    
    In UNIMARC installations the authors have a double comma separating the subfield a and the subfield b.
    
    Test plan:
    
    - After applying the patch do a search and check the double comma in authors facets.
    - Apply the patch
    - Do a new search
    - Check if authors facets as a double comma
    
    Sponsored-by: KEEP SOLUTIONS
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Conflicts:
    	installer/data/mysql/sysprefs.sql
    	installer/data/mysql/updatedatabase.pl
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

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

Summary of changes:
 C4/Circulation.pm                                  |   12 ++++++++-
 C4/Koha.pm                                         |    2 +-
 Koha/SearchEngine/Solr/Index.pm                    |    2 +-
 circ/circulation.pl                                |    6 ++++
 installer/data/mysql/sysprefs.sql                  |    2 +-
 installer/data/mysql/updatedatabase.pl             |    7 +++++
 .../en/modules/admin/preferences/searching.pref    |    4 +++
 .../prog/en/modules/circ/circulation.tt            |   20 ++++++++++++++-
 .../intranet-tmpl/prog/en/modules/intranet-main.tt |    4 +-
 kohaversion.pl                                     |    2 +-
 tools/export.pl                                    |   25 +++++++++++++++----
 11 files changed, 71 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list