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

Git repo owner gitmaster at git.koha-community.org
Wed Dec 26 20:54:31 CET 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.10.x has been updated
       via  c3825279d90147f801b435824ddab587f6378162 (commit)
       via  e8716f764786232491732361e15fc4b8871569d8 (commit)
       via  bd71ffa54e597125bb67123f839778697f89f18b (commit)
       via  a7177a1613227396e60e2d2fffecdc08890ef5f2 (commit)
       via  7e426b00d25063f72107239c9c093d7f368a1366 (commit)
       via  0729f8d18c305cc5ed740c3d187b50f3bece404f (commit)
       via  9dab59dfb97ab0ba37d1d4d23acfd41e24142514 (commit)
      from  fde0fb58df129498aec306847c02ecc7c04a3013 (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 c3825279d90147f801b435824ddab587f6378162
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Nov 29 11:32:52 2012 -0500

    Bug 9169 - Wrap relator code in <span> to allow for CSS customization
    
    This patch adds <span class="relatorcode"> around the display of
    relator codes in the OPAC and the staff client, and adds a space
    before the bracket (" [relatorcode]") for readability.
    
    To test, add custom CSS to OPACUserCSS and IntranetUserCSS and
    view a record which includes relator code data. Suggested:
    
    .relatorcode {
        background-color: rgb(230, 240, 242);
        border-radius: 3px 3px 3px 3px;
        color: rgb(51, 51, 51);
        display: inline-block;
        font-size: 75%;
        font-weight: normal;
        margin-left: 0.4em;
        padding: 0.1em 0.4em;
    }
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.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 <chrisc at catalyst.net.nz>

commit e8716f764786232491732361e15fc4b8871569d8
Author: Chris Hall <chrish at catalyst.net.nz>
Date:   Wed Nov 28 12:41:28 2012 +1300

    Bug 9158: correcting whitespace in series (440) display
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Patch changes 'first; second; third.' to 'first ; second ; third.'
    
    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 <chrisc at catalyst.net.nz>

commit bd71ffa54e597125bb67123f839778697f89f18b
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Dec 12 15:47:55 2012 -0500

    Bug 9278 - Remove unused OPAC CSS file sanop.css
    
    This patch removes an unused CSS file, sanop.css, included in both OPAC
    themes even though it is referenced by neither.
    
    To test, apply the patch and listen for the unhappy protestations of
    libraries whose OPACs now look different. If there are none, the
    patch works.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    According to Paul's answer (on the mailing list), I sign off this
    patch.
    
    Signed-off-by: Elliott Davis <elliott at bywatersolutions.com>
    Seems to work as advertised
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit a7177a1613227396e60e2d2fffecdc08890ef5f2
Author: Zeno Tajoli <z.tajoli at cineca.it>
Date:   Tue Nov 20 14:56:11 2012 +0100

    Bug 9112 : update of Italian SQL files
    
    This patch is only for Italian SQL setup, it updates files auth_val.sql
    and userpermissions.sql. For circulation permissions and REPORT_GROUP
    example.
    
    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>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 7e426b00d25063f72107239c9c093d7f368a1366
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Tue Dec 4 16:56:54 2012 +0100

    Bug 9140: Followup removes the useless variable $message
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.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 <chrisc at catalyst.net.nz>

commit 0729f8d18c305cc5ed740c3d187b50f3bece404f
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Nov 26 09:24:28 2012 -0500

    Bug 9140 - Untranslatable strings in item circulation history
    
    This patch removes the text of a message from the script
    to the template. The lastmove sub now returns either the date
    or 0, and the template displays the "no transfers" message
    if the date doesn't exist.
    
    To test, view the circulation history for items which
    do and do not have a transfer history. A date should be displayed
    for items which have a transfer history. A messages should
    be displayed for those which do not.
    
    This patch also adds a <span> around the text "Never" which
    was not getting picked up by the translation script. To test
    this change, run "perl translate update <lang>" from misc/translator,
    then check if the string shows up in the po file. (Thanks kf!)
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 9dab59dfb97ab0ba37d1d4d23acfd41e24142514
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Fri Nov 23 14:14:16 2012 -0500

    Bug 9136: C4::Tags not Plack-compatible
    
    The three module-scoped variables $ext_dict, @fields, and $select_all
    were preventing tagging code from working under Plack. I fixed this
    by changing the latter two to compile-time constants, and declared the
    first with "our $ext_dict;"
    
    To test (under Plack):
    1) Try to create a tag before the patch is applied. Note that you get a
       500 error in the AJAX request.
    2) Apply patch.
    3) Repeat step (1), noticing that this time the tag is created and there
       is no error.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

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

Summary of changes:
 C4/Tags.pm                                         |   12 +-
 circ/bookcount.pl                                  |   16 +-
 installer/data/mysql/it-IT/necessari/auth_val.sql  |    7 +
 .../data/mysql/it-IT/necessari/userpermissions.sql |   14 +-
 .../prog/en/modules/circ/bookcount.tt              |    5 +-
 .../prog/en/xslt/MARC21slim2intranetDetail.xsl     |   10 +-
 koha-tmpl/opac-tmpl/ccsr/en/css/sanop.css          | 2013 --------------------
 koha-tmpl/opac-tmpl/prog/en/css/sanop.css          | 2013 --------------------
 .../prog/en/xslt/MARC21slim2OPACDetail.xsl         |   10 +-
 9 files changed, 41 insertions(+), 4059 deletions(-)
 delete mode 100644 koha-tmpl/opac-tmpl/ccsr/en/css/sanop.css
 delete mode 100644 koha-tmpl/opac-tmpl/prog/en/css/sanop.css


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list