[koha-commits] main Koha release repository branch 3.6.x-maint/testing updated. v3.06.04-141-gc8fba5d

Git repo owner gitmaster at git.koha-community.org
Fri May 25 16:19:02 CEST 2012


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.6.x-maint/testing has been updated
       via  c8fba5d1e59175e6fe2ced03485bbd023f7be22a (commit)
       via  2f43dce2e07f82b97aeb8ff7f35fc934907f8eae (commit)
       via  bab932c8f01688daeaaadee38d08aaa12dc5eddc (commit)
       via  62739421430069bcf8c40328772092b02554fe6d (commit)
       via  b924d9c80f1847db70122faad606ad2067544afe (commit)
       via  358d6e51eb0a5b1a4741781cfa10ef70f283bae1 (commit)
       via  e860c93505c9a0270b8363ac7d1a6efa01e6f510 (commit)
       via  308ae63537a20bcca7a3b83de61fa4485f1edeee (commit)
       via  eb4b7b6a8807e6c89e196d33a397a60b3e90313d (commit)
       via  378b47ad10264b2c687862679d937c8f0c0e904c (commit)
       via  3d8ec43c329010d904d733d2ad8ee02a7a322760 (commit)
       via  678a38ed409f7e7875acabd419578c18f4882607 (commit)
       via  d9a3e992cee6d97ed614d881da6a0340fa1b6320 (commit)
       via  eab3871650e1e01fa841419a4aaee93b5849b2af (commit)
       via  8c1c2e81de04fdcdc9674b366c9d6cb5e68dda68 (commit)
       via  ccc2fe6d14c3f2f1f99a9f96f5a1d500b514b2e0 (commit)
       via  103c54b7fcdcfa6a43438c355c68456e2b06eba2 (commit)
       via  b0d8a39e6898a96eba23a5f5df7c4cb406184b88 (commit)
       via  ebaf505cbd2a397d92d89eafd8cba7f27fc42b9a (commit)
       via  aba25db7615d0c46fa33930022ad37c775f7a572 (commit)
       via  fbe3e4dc43920b45f277550b0448da948bc043cf (commit)
       via  2f5c121563387ccc0221f5e25e67beaf3d7ef265 (commit)
       via  5722f6a8ab8d5baee537032c0536fcfc071866cd (commit)
       via  4e7118f0166d2fd7eae50c7060e97965d6ffecd8 (commit)
       via  49e173a76d36f5f9365925aae17ee68805d4fb1d (commit)
       via  2369b7d5f95d6549af4dc0ae05df750814d3b148 (commit)
      from  2ec79fed03e3e8e9b46665d7419866e3866d1e03 (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 c8fba5d1e59175e6fe2ced03485bbd023f7be22a
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Thu May 24 08:55:29 2012 -0400

    Release Notes for 3.06.05.000 24 May 2012 12:55:26 Z

commit 2f43dce2e07f82b97aeb8ff7f35fc934907f8eae
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Thu Apr 12 07:53:32 2012 +0200

    Bug 7371: Add 'cardnumber' as option for AutoEmailPrimaryAddress
    
    The systempref.sql file had one more option 'cardnumber' that was not
    visible from the system preference editor. This patch adds the setting.
    
    To test:
    - Check new setting cardnumber is available for AutoEmailPrimaryAddress
    - Use setting with a patron that has an email address as cardnumber and
    verify email is sent out correctly.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit bab932c8f01688daeaaadee38d08aaa12dc5eddc
Author: Paul Poulain <paul.poulain at biblibre.com>
Date:   Tue Apr 10 11:53:15 2012 +0200

    Bug 7886 follow-up DBRev number
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 62739421430069bcf8c40328772092b02554fe6d
Author: Dobrica Pavlinusic <dpavlin at rot13.org>
Date:   Thu Apr 5 01:03:30 2012 +0200

    Bug 7886 - C4/ShelfBrowser slow SQL performance
    
    ShelfBrowser uses two SQL queries with syntax
    
    WHERE ((cn_sort = ? AND itemnumber < ?) OR cn_sort < ?)
    AND homebranch = ? AND location = ? AND ccode = ?
    
    homebranch already has index, and adding indexes on ccode and location
    improves performance by 30% for each query since MySQL is able to use
    index_merge intersect(items_ccode,homebranch,items_location)
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit b924d9c80f1847db70122faad606ad2067544afe
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Mon Apr 2 15:06:28 2012 +0100

    Stop unnecessary warnings in get_language
    
    Refactor code to be more idiomatic and clarify its intention was testing
    undef against languages causing log warn was creating and assigning to
    unnecessary variables calling accept_language with an undef is an
    expensive way to get undef returned to the caller test we are asking it
    a meabingful question use any rather than first ( we dont care about
    firstness it should be unique anyway but it obscures the meaning of the
    test ) split takes a pattern not a string
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    
    Having put my hands recently in this part of Koha code, I can confirm
    that this patch fix log warnings, and add clarity and conciseness.
    
    http://bugs.koha-community.org/show_bug.cgi?id=7874
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 358d6e51eb0a5b1a4741781cfa10ef70f283bae1
Author: Dobrica Pavlinusic <dpavlin at rot13.org>
Date:   Wed Mar 21 09:26:22 2012 +0100

    Bug 7766 - C4/Auth.pm: emit DEBUG output to STDERR
    
    writing to STDOUT breaks plack when running with DEBUG=1
    
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit e860c93505c9a0270b8363ac7d1a6efa01e6f510
Author: Magnus Enger <magnus at enger.priv.no>
Date:   Wed Apr 4 08:49:56 2012 +0200

    Bug 7885 - Change filename of TransferLog suggested by packages to fit with logrotate
    
    The apache accesslogs suggested by the default config files are called
    *_log, which results in them not getting picked up by logrotate, which
    looks for *.log. This patch changes the suggested filenames to *.log.
    
    To test:
    Not much to test here, just apply the patch and check that all
    occurences of TransferLog and CustomLog are now on the form *.log
    
    All the lines where these occur are commented out, so this will
    not actually change any behaviour.
    
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 308ae63537a20bcca7a3b83de61fa4485f1edeee
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sat Mar 24 11:40:16 2012 +0100

    Bug 7823: [SIGNED-OFF] Ergonomy improvements: Rename button to "New patron"
    
    "New" for adding new patrons is hard to translate and is not consistent
    with the naming of similar buttons in other parts of Koha.
    
    Patch changes "New" to "New patron".
    
    Signed-off-by: Magnus Enger <magnus at enger.priv.no>
    Patch does what it says and ii makes sense to change the wording.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>

commit eb4b7b6a8807e6c89e196d33a397a60b3e90313d
Author: Adrien Saurat <adrien.saurat at biblibre.com>
Date:   Wed Mar 21 11:15:18 2012 +0100

    Bug 7771: "Notices" changed to "Notices & Slips"
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 378b47ad10264b2c687862679d937c8f0c0e904c
Author: Chris Nighswonger <cnighswonger at foundations.edu>
Date:   Thu Feb 23 10:25:13 2012 -0500

    Bug 7585 - Correct MARC 008 Value Builder Char 06 Default
    
    This patch changes the default value of the 06 char in 008
    from 't' to 'b.' This change allows for a valid 008 field
    if no dates are entered in 07-14.
    
    To test:
    
    1. Create a new MARC record (prior to patch application).
    2. Click on the 008 field to auto-populate.
    3. Note that the 06 char is 't'.
    4. Apply patch.
    5. Create a new MARC record.
    6. Click on the 008 field to auto-populate.
    7. Note that the 06 char is now 'b'.
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Confirm fix works per test plan.
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 3d8ec43c329010d904d733d2ad8ee02a7a322760
Author: Chris Hall <chrish at catalyst.net.nz>
Date:   Wed Feb 22 16:47:47 2012 +1300

    Bug 7575 Opac search results print alignment
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 678a38ed409f7e7875acabd419578c18f4882607
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Feb 22 10:08:24 2012 -0500

    Bug 7579 - Icons for authorized values/item types not showing in OPAC
    
    The functions getitemtypeimagedir and getitemtypeimagesrc
    in Koha.pm were using the system preference 'template'
    when they should be using 'opacthemes' instead.
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit d9a3e992cee6d97ed614d881da6a0340fa1b6320
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Thu Feb 23 09:46:32 2012 +0100

    7453 Followup for borrower without expiry date
    
    While it should be impossible now to have a patron without expiry date, I still had one. It does not hurt to add a simple check on expiry date defined before calling delta days on null values and breaking the opac login.
    Trivial change.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Tested by deleting the expirydate from my own patron record.
    Missing expiry date now no longer breaks the summary page
    in the patron account on OPAC.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit eab3871650e1e01fa841419a4aaee93b5849b2af
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Feb 19 18:01:04 2012 +0100

    Bug 7558: Serial issue note doubled up in full history
    
    Removes the note behind the status, because there is a separate column.
    
    To test:
    - Add a subscription
    - Receive an issue, add a note for it
    - Search record in OPAC and check the full history tab for the note
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 8c1c2e81de04fdcdc9674b366c9d6cb5e68dda68
Author: Sophie Meynieux <sophie.meynieux at biblibre.com>
Date:   Tue Feb 14 14:38:25 2012 +0100

    Bug 3916 [follow-up] : Adding a default choice in every dropdown list, not only branches, to let the corresponding value unchanged
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Patch works as advertised
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit ccc2fe6d14c3f2f1f99a9f96f5a1d500b514b2e0
Author: Stéphane Delaune <stephane.delaune at biblibre.com>
Date:   Thu Feb 9 11:01:33 2012 +0100

    Bug 7460: followup : Add template toolkit's FILTER html_line_break on staff details description's tab
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 103c54b7fcdcfa6a43438c355c68456e2b06eba2
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Tue Jan 17 14:46:09 2012 +0000

    Bug 7454 Initialize return arrays in ILS/Transaction/RenewAll
    
    Explicitly clear these arrays and update them directly.
    In practice item numbers were already in them when called
    so that more items were being returned than were actually
    renewed (or failed)
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Functionally sound patch, and tested in production
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit b0d8a39e6898a96eba23a5f5df7c4cb406184b88
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Nov 24 13:35:27 2011 +1300

    Bug 5373 - allow 'cardnumber' to appear on the patron import field list
    
    For some reason, it was explicitly removed, however you need it if you
    want to match up on cardnumber.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Easy to test and works nicely.
    Before patch cardnumber is not shown in the list of fields on the
    patron import page. After applying the patch it is.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit ebaf505cbd2a397d92d89eafd8cba7f27fc42b9a
Author: BibLibre <dev_patches at biblibre.com>
Date:   Thu Feb 9 10:11:36 2012 +0100

    Bug 7513 Marc Import Hangs
    
    On some record, the commit_biblio_file is creating wide
    character
    because as_xml is not used with correct parameter.
    This patch fixes that.
    To test on a UNIMARC Koha, stage attachment 7510 and
    then import.
    It hangs before the patch, it passes after.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit aba25db7615d0c46fa33930022ad37c775f7a572
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Fri Feb 17 10:52:31 2012 -0500

    Bug 7496 - Personally identifying information sent in opac user TITLE
    
    Removing patron name from OPAC page <title> tags. Making
    some other minor changes to improve <title> clarity and consistency.
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    titles appear to be consistent
    passes prove xt
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit fbe3e4dc43920b45f277550b0448da948bc043cf
Author: Srdjan Jankovic <srdjan at catalyst.net.nz>
Date:   Fri Jan 27 15:19:25 2012 +1300

    bug_7231: Call GetMarcPrice() in acqui/neworderempty.pl for staged imports
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry-picked from commit 39def35275c3f2fa8eb4468e97b4c445e1f605fb)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 2f5c121563387ccc0221f5e25e67beaf3d7ef265
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Feb 2 18:21:44 2012 +1300

    Bug 6496 - correct the order of the author display in the OPAC
    
    This sets the order the fields are displayed in to be as it is in the
    MARC (typically numerical order), rather than 100,700,110,710,... like
    it was.
    
    Basically, it's a port of the way it's done in the staff client. As
    such, it should be able to handle a lot more than it could previously,
    including relator codes.
    
    (replaces the previous commit, just removing an erronious comment and
    making the commit message more accurate)
    
    Conflicts:
    
    	koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 5722f6a8ab8d5baee537032c0536fcfc071866cd
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Aug 31 19:59:44 2011 +1200

    Bug 6496 - tidy the display of 710 fields on XSLT
    
    This puts '--' between 710$b fields, and replaces the '.' with a '; ' if
    there are additional authors.
    
    Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 4e7118f0166d2fd7eae50c7060e97965d6ffecd8
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Feb 15 12:34:30 2012 +1300

    Bug 7540 [3.6.x] - add id values to the legends in the patron entry form
    
    This adds the following IDs to the legends in the patron entry form:
     main_address_lgd contact_lgd alt_address_lgd alt_contact_lgd
     library_management_lgd library_setup_lgd opac_staff_login_lgd
     patron_messaging_prefs_lgd
    
    With these in place, then jquery like:
    $(document).ready(function(){
            $('#main_address_lgd').text('Postal Address');
            $('#alt_address_lgd').text('Residential Address');
    });
    in intranetuserjs can be used to rename things to taste.
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 49e173a76d36f5f9365925aae17ee68805d4fb1d
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Dec 7 12:18:53 2011 -0500

    Bug 5543 - Date ISO format wrong separator
    
    This patch converts the changes in Fridolyn SOMERS patch
    to T:T and adds an update to the database to correct
    the description there.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 2369b7d5f95d6549af4dc0ae05df750814d3b148
Author: Paul Poulain <paul.poulain at biblibre.com>
Date:   Wed Nov 30 14:53:48 2011 +0100

    Bug 7272 setting NULL to debarred field, to avoid having 0000-00-00
    
    0000-00-00 can come only from a problem in the 3.06.00.001 update
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

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

Summary of changes:
 C4/Auth.pm                                         |    2 +-
 C4/ImportBatch.pm                                  |    2 +-
 C4/Koha.pm                                         |    4 +-
 C4/SIP/ILS/Transaction/RenewAll.pm                 |    6 +-
 C4/Templates.pm                                    |   24 +-
 acqui/neworderempty.pl                             |   27 +--
 cataloguing/value_builder/marc21_field_008.pl      |    5 +-
 debian/templates/apache-site.conf.in               |    4 +-
 etc/koha-httpd.conf                                |    6 +-
 installer/data/mysql/kohastructure.sql             |    3 +
 installer/data/mysql/sysprefs.sql                  |    2 +-
 installer/data/mysql/updatedatabase.pl             |   15 ++
 .../intranet-tmpl/prog/en/includes/date-format.inc |    2 +-
 .../prog/en/includes/patron-toolbar.inc            |    2 +-
 .../intranet-tmpl/prog/en/includes/tools-menu.inc  |    2 +-
 .../en/modules/admin/preferences/i18n_l10n.pref    |    2 +-
 .../prog/en/modules/admin/preferences/patrons.pref |    1 +
 .../prog/en/modules/catalogue/detail.tt            |    2 +-
 .../prog/en/modules/members/memberentrygen.tt      |   18 +-
 .../prog/en/xslt/MARC21slim2intranetDetail.xsl     |    7 +-
 koha-tmpl/opac-tmpl/prog/en/css/print.css          |    9 +-
 .../opac-tmpl/prog/en/modules/opac-account.tt      |    2 +-
 .../prog/en/modules/opac-full-serial-issues.tt     |    1 -
 .../opac-tmpl/prog/en/modules/opac-messaging.tt    |    2 +-
 koha-tmpl/opac-tmpl/prog/en/modules/opac-passwd.tt |    2 +-
 .../opac-tmpl/prog/en/modules/opac-privacy.tt      |    2 +-
 .../prog/en/modules/opac-readingrecord.tt          |    2 +-
 .../opac-tmpl/prog/en/modules/opac-reserve.tt      |    2 +-
 .../prog/en/modules/opac-search-history.tt         |    2 +-
 .../opac-tmpl/prog/en/modules/opac-shelves.tt      |    2 +-
 koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt   |    5 +-
 .../opac-tmpl/prog/en/modules/opac-userdetails.tt  |    2 +-
 .../opac-tmpl/prog/en/modules/opac-userupdate.tt   |    5 +-
 .../prog/en/xslt/MARC21slim2OPACDetail.xsl         |  112 +++++-----
 kohaversion.pl                                     |    2 +-
 misc/release_notes/release_notes_3_6_5.txt         |  259 ++++++++++++++++++++
 opac/opac-user.pl                                  |    2 +-
 tools/batchMod.pl                                  |    3 +-
 tools/import_borrowers.pl                          |    2 +-
 39 files changed, 409 insertions(+), 145 deletions(-)
 create mode 100644 misc/release_notes/release_notes_3_6_5.txt


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list