[koha-commits] main Koha release repository branch 3.16.x updated. v3.16.01-22-gdac2629

Git repo owner gitmaster at git.koha-community.org
Wed Jul 23 23:02:38 CEST 2014


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.16.x has been updated
       via  dac26290b0feb08277a7d4bb7929559dfe7b36c4 (commit)
       via  2dcbe15819b81ec7eedf029869be025df28a1670 (commit)
       via  5058dc05d7558025d68b194e510d72029f0a005a (commit)
       via  93a53cdded37a0807891b5375fd4513897bb874b (commit)
       via  6b7a110be72ffc92e14cbce8dfe84166d68fea6a (commit)
       via  e3faf398ec400760e9f9dca19eb1fd861cf1ad79 (commit)
       via  7b55727fbd220d0efd7e663a9d13791e81aacd17 (commit)
       via  212280a3d06226ba1041adaae991944d2bb1109a (commit)
       via  dd50146dc8014cd718a514216be8a0f318682cdf (commit)
       via  cc88e638a1efb991196a77efad3ba6d25eb8f6c0 (commit)
       via  28b467f5538fcc9d860571fc7f9a7fab56e64967 (commit)
       via  4b316bf85681fca76b45463b7152f2e34a018c55 (commit)
       via  7c72c38ce8700e1db1542c71ecb5f746913795b2 (commit)
       via  c3919c6dd9e7fd0e83cd4ca500f2abed7bab97c0 (commit)
       via  e277944b501c212a5cb85e3113bae5d6d397751f (commit)
       via  88475abe90aa102e637740215227d2cac77d7371 (commit)
       via  f302a5eed5c6283cdb22a330fd607d4f17383dd0 (commit)
       via  0de0fc074ba1841336212547fc4e92ed08e17def (commit)
       via  5f73a07da578344d949992161ae607b0ecc5c469 (commit)
       via  a001e705eff71b661ddb54066ec9b479731f35d1 (commit)
       via  77b23d9396a9baccbfee29dfed80ed7d73186764 (commit)
       via  e151a93fabb2e5f624ac80ab2bb9fb9bbb33a004 (commit)
      from  0a70b299f73611d92b1dabaf2c21a6a4fbbd0e7d (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 dac26290b0feb08277a7d4bb7929559dfe7b36c4
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Jul 9 09:49:19 2014 +0200

    Bug 11226: subscription frequencies and numbering patterns should be editable with serials permissions
    
     Bug 7688 does now allow patrons with serials permissions to edit
     subscription frequencies/numbering patterns.
    
     Test plan:
     Try to access to serials/subscription-frequencies.pl and
     serials/subscription-numberpatterns.pl with the "serials" permissions.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    With patch and only serial permissions can now access
    frequences and patterns.
    No koha-qa errors
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 2dcbe15819b81ec7eedf029869be025df28a1670
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Jul 14 08:56:22 2014 -0300

    Bug 12470: (followup) License statement missing
    
    Adds the license statement to the new files.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 5058dc05d7558025d68b194e510d72029f0a005a
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Tue Jun 24 14:27:21 2014 +0200

    Bug 12470: adding unit tests for the routines CheckValidBarCode and CheckIfIssuedToPatron of the module C4::Circulation.pm
    
    The routines CheckValidBarcode and CheckIfIssuedToPatron were not tested
    
    Test plan:
    1/ Apply the patch
    2/ Execute : prove t/db_dependent/Circulation/CheckValidBarcode.t t/db_dependent/Circulation/CheckIfIssuedToPatron.t
    3/ The result of the command has to be a success without error or warning :
    t/db_dependent/Circulation/CheckValidBarcode.t ...... ok
    t/db_dependent/Circulation/CheckIfIssuedToPatron.t .. ok
    All tests successful.
    Files=2, Tests=32,  3 wallclock secs ( 0.04 usr  0.01 sys +  2.88 cusr  0.17 csys =  3.10 CPU)
    Result: PASS
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Patches squashed
    Tests pass, no koha-qa errors
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Tests pass using sample data provided with Koha
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 93a53cdded37a0807891b5375fd4513897bb874b
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Mon Jun 16 13:46:24 2014 +0200

    Bug 12417: adding the units tests of the module Koha::Borrower::Files.pm
    
    The module Koha::Borrower::Files.pm was not tested
    
    To test:
    1/ Execute the command: prove t/db_dependent/Borrower_Files.t
    2/ The command has to print:
    t/db_dependent/Borrower_Files.t .. ok
    All tests successful.
    Files=1, Tests=23,  2 wallclock secs ( 0.04 usr  0.01 sys +  1.47 cusr  0.08 csys =  1.60 CPU)
    Result: PASS
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Squashed patches.
    Now test pass
    No koha-qa errors
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 6b7a110be72ffc92e14cbce8dfe84166d68fea6a
Author: Viktor Sarge <viktor.sarge at regionhalland.se>
Date:   Mon Jun 16 12:21:06 2014 +0100

    Bug 9245: Fixes visual bug with fines tab not highlighting
    
    This patch makes shure that mancredit.pl, maninvoice.pl and pay.pl passes the value "finesview=1" that makes the tab active.
    
    Test plan:
    1) Go to a library user and the fines tab. Note that the "Fines" tab loses it's highlight when you click "Pay fines", "Create manual invoice" and "Create manual credit".
    2) Install the patch.
    3) Redo the first step and make shure that the left menu tab "Fines" is now highlighted all the time.
    
    Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Works as advertised, no regression found on the rest of the tabs.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit e3faf398ec400760e9f9dca19eb1fd861cf1ad79
Author: Gaetan Boisson <gaetan.boisson at biblibre.com>
Date:   Tue Jul 1 17:32:10 2014 +0200

    Bug 11030 - Add 359, 947 and 969 fields in french unimarc_complete framework - followup
    
    Signed-off-by: Gaetan Boisson <gaetan.boisson at biblibre.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 7b55727fbd220d0efd7e663a9d13791e81aacd17
Author: Mathieu Saby <mathieu.saby at univ-rennes2.fr>
Date:   Wed Oct 9 20:28:27 2013 +0200

    Bug 11030 : add fields 947,969,359 in unimarc_complete french framework
    
    This patch must be tested on top of bug 11021
    
    This patch adds 3 fields to unimarc_complete french framework
    - 359 (2-a-b-c-d-e-f-g-h-i-p-u-v) used by Sudoc network, to be displayed in tab 3
    - 947 (c) used by Electre
    - 969 (a-h) used by Electre
    I don't know the difference between 969a and 969h so I gave them quite the same name
    
    To test :
    1) take a fresh Koha with unimarc marcflavor
    2) in web installer, select french language, unimarc marflavor and "Grilles de catalogage complètes".
    3) check default framework in Administration > MARC Frameworks : it should contains 359/947/969 fields
    
    Signed-off-by: Gaetan Boisson <gaetan.boisson at biblibre.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 212280a3d06226ba1041adaae991944d2bb1109a
Author: Mathieu Saby <mathieu.saby at univ-rennes2.fr>
Date:   Wed Oct 9 20:28:09 2013 +0200

    Bug 11021: Suppress unneeded fields in unimarc_complet default Framework
    
    First patch, for "complete" framework, used by academic libray
    900, 901, 910, 918, 920,950,960,970,980,987 fields were useless. I removed them.
    I kept only the fields mentionned in Sudoc documentation http://documentation.abes.fr/sudoc/formats/loc/index.htm
    916 field is not cited in that page, but it belongs to Sudoc format.
    
    I kept also 2 fields specific to Electre in 2013 :
    902 niveau de lecture (Electre)
    903  indexation (Electre)
    
    I also added to the name of the 9XX fields I kept the mention (Sudoc) / (Electre) / (Koha), so it could be easier for librarians to know what is the purpose and the origin of each field
    
    I don't make an updatedatabase, because some libraries could still be using these fields for good or bad reasons.
    
    To test :
    1) take a fresh Koha with unimarc marcflavor
    2) in web installer, select french language, unimarc marflavor and "Grilles de catalogage complètes".
    3) check default framework in Administration > MARC Frameworks : it should be without 900,901,910,918,920,950,970,980,987
    
    Signed-off-by: Gaetan Boisson <gaetan.boisson at biblibre.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit dd50146dc8014cd718a514216be8a0f318682cdf
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Jul 1 11:29:56 2014 -0400

    Bug 12511 - Novelist Select not using https in bootstrap
    
    In prog we have:
    [% IF ( NovelistSelectProfile ) %]
    <script type="text/javascript"
    src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
    [% END %]
    
    but in bootstrap we have
    [% IF ( NovelistSelectProfile ) %]
    <script type="text/javascript"
    src="http://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
    [% END %]
    
    Because bootstrap isn't using https, we get an error like this:
    [blocked] The page at
    'https://koha.mylibrary.com/cgi-bin/koha/opac-detail.pl?biblionumber=105315&query_desc=kw%2Cwrdl%3A%20home'
    was loaded over HTTPS, but ran insecure content from
    'http://imageserver.ebscohost.com/novelistselect/ns2init.js': this
    content should also be loaded over HTTPS.
    
    Test plan would require having a subscription to Novelist Select.
    I think this is trivial enough to go without.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Very small change, trusting Kyle and the sign-off here.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit cc88e638a1efb991196a77efad3ba6d25eb8f6c0
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Jul 6 21:00:40 2014 +0200

    Bug 12409: Follow up - Reflect from hash to array in comments
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 28b467f5538fcc9d860571fc7f9a7fab56e64967
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Jun 12 11:06:58 2014 +0200

    Bug 12409: Fix fields order on exporting to bibtex
    
    The C4::Record::marc2bibtex subroutine supposes hashref keys are sorted
    which is wrong with perl 5.18
    
    Note that the t/db_dependent/Record.t fails without this patch.
    
    Test plan (for perl >= 5.18 only):
    1/ prove t/db_dependent/Record.t should return green
    2/ Try to export a record to bibtex and verify the order is correct
    (should be author, title, year, published, etc.).
    
    http://bugs.koha-community.org/show_bug.cgi?id=12409
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    Wrong Bug number on heading.
    Work as described, test pass, no koha-qa errors.
    
    The problem is to think that a hash returns
    keys in a particular order, that's not true
    and no matter which perl version.
    
    Code as was left is... misleading.
    Comments talks about a hash, which is no more.
    On array asignment "a => b" is equivalent to "a, b",
    but the former is usually used on hashes, so a
    replacement of '=>' by ',' could clarify what are we storing.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Fixing the comments in a follow-up patch.
    Tests pass now without problems and records export ok.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 4b316bf85681fca76b45463b7152f2e34a018c55
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Jun 19 10:17:53 2014 +0200

    Bug 12451 - circulation rule cant be edited if itemtype contains a space character
    
    When an itemtype description contains a space character like " Book"
    (often used to set this itemtype as first in sorted lists), the edition
    of an existing circulation rule does not work, it selects the default
    itemtype. Same for patron category.
    
    It's because the JavaScript code performs a trim on value existing in
    table itm = itm.replace(/^\s*|\s*$/g,''); This patch adds trim on select
    options in editing line.
    
    Test plan :
    - Create an itemtype with a leading or trailling space in description :
      ie " Book"
    - Go to cgi-bin/koha/admin/smart-rules.pl
    - Create a rule with this itemtype, Unit=hours and Hard due date=Exactly
      on 31/12/2015 (any date)
    - Click on Edit on this rule line
      => Without this patch, the default itemtype is selected in edition
         line
      => With this patch, the correct itemtype is selected in edition line
    
    Check others selects are ok :
      - Create a rule with Unit=hours and Hard due date=Exactly on
        31/12/2015 (any date)
      - Click on Edit on this rule line
        => The correct options are selected
    Same tests with a patron category containing a leading or trailling space in description
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 7c72c38ce8700e1db1542c71ecb5f746913795b2
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jun 25 13:07:52 2014 -0400

    Bug 12220 - bootstrap not responsive on all devices
    
    The bootstrap theme includes a meta tag attribute which disables zooming
    on some devices. This was unintentional and not desirable. This patch
    removes the problematic attribute.
    
    See:
    http://blog.javierusobiaga.com/stop-using-the-viewport-tag-until-you-know-ho
    
    To test: Apply the patch and view the OPAC on a device with a touch
    interface. Attempt to zoom in on any OPAC page. Zooming should work.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Reproduced using a smartphone.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit c3919c6dd9e7fd0e83cd4ca500f2abed7bab97c0
Author: David Cook <dcook at prosentient.com.au>
Date:   Mon Jul 29 13:02:26 2013 +1000

    Bug 10652 - Ajaxfileupload.js failing in IE9 for local image upload
    
    This patch adds a try/catch to the Javascript for adding the iframe
    element. The try will work for IE8 and older versions, while newer
    versions and other browsers will be covered by the check.
    
    Test Plan:
    
    1) Try uploading a local cover image in IE9
    2) Notice that your page is reloaded with no result (except the
    pop-up of a Javascript error, if you have error reporting on in
    your browser).
    
    3) Apply the patch
    
    4) Trying uploading a local cover image again
    5) Notice that it uploads correctly
    
    6) Repeat steps 4 and 5 for IE8, IE7, and/or other modern browsers.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Tested in IE10 in IE10 "browser mode" and IE9 mode as well as in
    Firefox. Uploads work correctly with book cover images and in MARC
    uploads.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Also verified as working in Chrome.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Doesn't break functionality and fixes a known problem. I'll push this for
    stable branches to use it, but will fill a new bug for updating AjaxFileUpload.js
    from upstream.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit e277944b501c212a5cb85e3113bae5d6d397751f
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Jun 5 17:21:28 2014 +0200

    Bug 11857 - Number of patrons on a patron list not accurate
    
    When creating a patron list with only 1 patron, the patron
    lists page says that the list contains 3 patrons.
    When creating a patron list with only 1 patron, it works fine.
    
    This is caused by the fact that access on "patron_list_patrons"
    Koha::Schema::Result::PatronList object returns an hash if one
    result and an array if more results.
    See similar problem at
    http://permalink.gmane.org/gmane.comp.lang.perl.modules.template-toolkit/7250
    
    This patch replaces by the call on resultset and then the use of
    "count" method.
    
    Test plan :
    - Go to patron lists : /cgi-bin/koha/patron_lists/lists.pl
    - Create a new patron list LIO
    - Add one patron
    - Create a new patron list LIM
    - Add 2 patrons
    - Go to patron lists : /cgi-bin/koha/patron_lists/lists.pl
    => Without this patch you see :
      Name  Patrons in list
      LIO   3
      LIM   2
    => With this patch you see :
      Name  Patrons in list
      LIO   1
      LIM   2
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Work as described, no koha-qa errors.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes all tests and QA script. Confirmed the problem and that
    the patch fixes it.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 88475abe90aa102e637740215227d2cac77d7371
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Wed May 21 14:18:14 2014 +0000

    BUG 12304: LDAP auto-provisioning set default messaging preferences
    
    LDAP auto-provisioning should set default messaging preferences upon
    creation of a user.
    
    Signed-off-by: Ulrich Kleiber <ulrich.kleiber at bsz-bw.de>
    Manually applied to 3.12.9 and it works beautifully in test and production.
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit f302a5eed5c6283cdb22a330fd607d4f17383dd0
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Fri Jun 20 11:22:31 2014 +0200

    Bug 12456: The file C4/Maintainance.pm, and by extension the file t/Maintainance.t, has been removed
    
    The file C4/Maintainance.pm is not used anywhere, it can be removed, and by extension, the file t/Maintainance.t too.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    A relic from the past :)
    No references to this file or it's subs
    No errors
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 0de0fc074ba1841336212547fc4e92ed08e17def
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Jun 30 12:27:45 2014 -0300

    Bug 12455: (QA followup) license text missing
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 5f73a07da578344d949992161ae607b0ecc5c469
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Fri Jun 20 10:42:13 2014 +0200

    Bug 12455: adding unit tests for the module C4/SMS.pm
    
    The module C4/SMS.pm was not tested
    
    Test plan:
    1/ Execute the command : prove t/SMS.t
    2/ The result has to be a success without error or warning :
    t/SMS.t .. ok
    All tests successful.
    Files=1, Tests=7,  1 wallclock secs ( 0.03 usr  0.01 sys +  0.17 cusr  0.02 csys =  0.23 CPU)
    Result: PASS
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Replace stub test, all test pass.
    Removed "use strict/warnings", no need for that with "use Modern::Perl"
    No koha-qa errors
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit a001e705eff71b661ddb54066ec9b479731f35d1
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Jun 5 09:28:29 2014 +0200

    Bug 12361 - No default value for opaccolorstylesheet syspref
    
    After install, the syspref opaccolorstylesheet will by default contain colors.css.
    This file exist in OPAC prog theme but not in bootstrap theme.
    
    This patch set the syspref empty by default in installer/data/mysql/sysprefs.sql.
    
    Test plan :
    - Create a fresh install
    - Look at opaccolorstylesheet content
    => without this patch : is contains colors.css
    => with this patch : it is empty
    - Enable opac bootstrap theme
    - Go to opac main page
    - Look at HTTP errors (with firebug for example)
    => without this patch : there is a 404 error because colors.css does not exist
    => with this patch : no such error
    
    Signed-off-by: David Cook <dcook at prosentient.com.au>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 77b23d9396a9baccbfee29dfed80ed7d73186764
Author: Chris Cormack <chrisc at catalyst.net.nz>
Date:   Tue Jun 24 08:15:47 2014 +1200

    Bug 7143: Updating new developers
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    No errors
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Edit: Switched from spaces to tabs in history.txt.
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit e151a93fabb2e5f624ac80ab2bb9fb9bbb33a004
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Jun 26 14:13:40 2014 -0400

    Bug 12464 - Bootstrap XSLT view no longer displaying 505 correctly formatted
    
    505 contents notes are not displayed correctly in the Bootstrap theme
    because the relevant CSS was not included in the transfer from prog.
    This patch adds it.
    
    To test, apply the patch and view a record in the OPAC which contains a
    505 note with contents details. Clear your browser cache if
    necessary. The contents should appear correctly, with a line break for
    each entry.
    
    I tested with the same biblio as shown in attachment #1 (imported from Library of Congress)
    After applying patch the record displays the same as in prog theme
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    CSS change only. Works as expected, no problems found.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    
    Conflicts:
    	koha-tmpl/opac-tmpl/bootstrap/css/opac.css
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/Auth_with_ldap.pm                               |    2 +
 C4/Maintainance.pm                                 |  215 --------------------
 C4/Record.pm                                       |   91 +++++----
 docs/history.txt                                   |   10 +-
 .../Obligatoire/framework_DEFAULT.sql              |  170 ++++------------
 installer/data/mysql/sysprefs.sql                  |    2 +-
 .../lib/jquery/plugins/ajaxfileupload.js           |    4 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |    6 +
 .../prog/en/modules/admin/smart-rules.tt           |    4 +-
 .../prog/en/modules/patron_lists/lists.tt          |    2 +-
 koha-tmpl/opac-tmpl/bootstrap/css/opac.css         |    2 +-
 .../bootstrap/en/includes/doc-head-close.inc       |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-detail.tt  |    2 +-
 koha-tmpl/opac-tmpl/bootstrap/less/opac.less       |   29 +++
 members/mancredit.pl                               |    1 +
 members/maninvoice.pl                              |    1 +
 members/pay.pl                                     |    1 +
 serials/subscription-frequencies.pl                |    2 +-
 serials/subscription-numberpatterns.pl             |    2 +-
 t/Maintainance.t                                   |   14 --
 t/SMS.t                                            |   59 +++++-
 t/db_dependent/Borrower_Files.t                    |  122 +++++++++++
 t/db_dependent/Circulation/CheckIfIssuedToPatron.t |  124 +++++++++++
 t/db_dependent/Circulation/CheckValidBarcode.t     |   87 ++++++++
 24 files changed, 533 insertions(+), 421 deletions(-)
 delete mode 100644 C4/Maintainance.pm
 delete mode 100755 t/Maintainance.t
 create mode 100644 t/db_dependent/Borrower_Files.t
 create mode 100644 t/db_dependent/Circulation/CheckIfIssuedToPatron.t
 create mode 100644 t/db_dependent/Circulation/CheckValidBarcode.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list